/************************************************************************************************/
/* Description des sélecteurs de classes utilisés par le parser de http://rssxpress.ukoln.ac.uk */                                                                                            
/*                                                                                              */
/* We are looking at ways of making the look and feel of included channels easy to control by   */
/* the end-user. At the moment this is done through the use of user defined stylesheets.        */ 
/* RSSxpressLite places a number of stylesheet classes into the channel output. You may define  */
/* these classes to make adjustments to the way the channel looks in your site.                 */
/*                                                                                              */
/* Currently, these classes are:                                                                */
/*                                                                                              */
/* rssxpresschannel - the RSS channel is wrapped in a single <div> with this class.             */ 
/*                    Changes to this will effect all of the channel                            */
/* rssxpresstable   - the RSS channel is formatted (rightly or wrongly :-) ) using a table of   */
/*                    this class. Changes here could effect text alignment, etc.                */ 
/* rssxpresschtitle - the RSS channel title                                                     */ 
/* rssxpresschdesc  - the RSS channel description                                               */
/* rssxpressittitle - each of the item titles have this class. Note that because each of these  */
/*                    are links, there are limitations to their control. If you wanted a        */
/*                    specific colour for example you would need to define an A:link colour     */
/*                    that would effect all the links on the page, not just the RSS channel     */
/* rssxpressitdesc  - the RSS item description                                                  */ 
/* rssxpressdivider - the items from the channel are separated from the main description at     */
/*                    the top, and other things at the end, but a single pixel, single column,  */
/*                    row in the RSS channel layout table. To change the colour of this alter   */
/*                    the background colour attribute in the stylesheet                         */
/*                                                                                              */
/************************************************************************************************/

@charset "iso-8859-1";


/* Pour modifier la Largeur de la table dans laquelle est affiché le canal RSS, il faut changer */
/* la valeur de la propriété width du sélecteur de classe .rssxpresschannel ci-dessous.           */	

	   
.rssxpresschannel {
	font-size: 9pt;
	margin: 0px;
	font-weight: bold;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;		
	background-color: #0033CC;
	text-align: center;
	color: #ffffff;
   width : 500px;
	
    }

.rssxpresschtitle {
  	color: #ffffff;
	font-size: 8px;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;		
	font-weight: bold;
	text-decoration : none;
	text-align : center;
 
    }
.rssxpresschdesc {
	font-size: 12px;
	margin: 2px;
	font-weight: bold;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;		
	background-color: #0066FF;
	text-align: center;
	color: #ffffff;
    }

.rssxpressittitle {
	font-size: 11px;
	color: #000000;
	font-weight: bold;	
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;		
	BACKGROUND-COLOR: #FFFFFF;
    } 

.rssxpresstable {
      text-align : center;
	}

