@charset "iso-8859-1";
/************************************************************************************************/
/* 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";
    /* A:link refers to all links on the page - not just the RSS content... */
A:link
{
    COLOR: black;
    TEXT-DECORATION: none
}
A:visited
{
    COLOR: black;
    TEXT-DECORATION: none
}

    /* these are the RSS classes - you can adapt them as you see fit
       values here override the defaults... */

/* Rss News */



/* 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: Tahoma,E Arial, serif;
	background-color: #FFFFFF;
	text-indent: 5pt;
	text-align: center;
	color: #BCBBEA;
	border: 1px solid #FFFFFF;
    width : 140px;
	
    }

.rssxpresschtitle {
  color: #BCBBEA;
	font-size: 8px;
	font-family: "Tahoma, Arial, serif";
	font-weight: bold;
	text-decoration : none;
	text-align : center;
 
    }
.rssxpresschdesc {
	font-size: 8pt;
	margin: 2px;
	font-weight: bold;
	font-family: Tahoma, Arial, serif;
	background-color: #FFFFFF;
	text-indent: 5pt;
	text-align: center;
	color: #000068;
    }

.rssxpressittitle {
	font-size: 7pt;
	color: black;
	font-family: Tahoma, Arial, serif;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 2px;
	padding-left: 2px;
	BACKGROUND-COLOR: #FFFFFF;
	text-align : center;
    } 

.rssxpressitdesc {
	  background-color : #FFFFFF;
      padding-bottom : 10pt;
    }

.rssxpresstable {
      text-align : center;
	}
.rssxpressdivider {
      background-color : black;
    }
