/* RLO stylesheet */

/* 
	The CSS positioning techniques used in this stylesheet are adopted from 
	the article "Taming Lists" on the A List Apart website - see:
	http://alistapart.com/articles/taminglists/
*/
  

/* Last updated 23/6/05 by Fred Riley */

/* HTML styles */

body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	background: #fff;
	color: #000;
}
		
h1	
{
	font-size: 1.1em;
}

h2	
{
	font-size: 1em;
}
	
h3	
{
	font-size: 0.9em;
}

/* Prevent underlining of hyperlinks in normal display... */
a
{
	text-decoration: none;
}

/* Make acronyms and abbreviation stand out to encourage users to hover over them for a tooltip explanation.
   IE doesn't recognise <abbr> at all. */

acronym, abbr	
{	
	font-weight: bold;
	color: navy;
}

/* CUSTOM STYLES */
	
/* ...but set to display underlines when mouse moves over link */
a:hover	
{
	text-decoration: underline; 
}

/* Smaller text for Prev, Next, etc */
.navtext
{
	font-size: 90%; 
}
	
/* Only used for notes for developers in RLO templates */
.devnotes
{
	font-weight: bold;
	color: red;
}	


/* Notes prefixed with NB: to display as centred text in a light yellow box for added emphasis. */
.notabene
{
	border: 2px solid #000;
	text-align: center;
	padding: 3px;
	background-color: #ffff66;
}

/* Movie layer */
.mediabox
{
	width:420px;
	padding: 2px;
	margin-left: 5px;
	float: right;
	background-color: #fff;
	border: 1px solid #000;
	text-align: center;
}

.imageLeft
{
	float:left;
}

/* ------------ */
/* CSS-P styles */
/* ------------ */

/* Whole page container, sets up page border and margins */
#container
{
	border: 1px solid gray;
	margin: 5px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}

/* Page banner */
#pageheader p
{
	text-align: right;
	vertical-align: bottom;
	font-size: large;
	margin: 0px;
	padding: 0px;
}

/* Dividing lines above footer and below page header*/			
#divider
{
	width: 100%;
	height: 0px;
	padding: 0px;
	margin: 0px;
	border-bottom: 2px solid #cccccc; 
	border-top: 6px solid #0099cc;
	clear: both;
}
			
#divider p	
{
	line-height: 0;
}


/* RLO title with blue background image */				
#barheader 
{
	padding: 0 0 0 18px;
	background:  url(images/left.png) no-repeat left center;
}

#barheader h1 
{
	padding: 0 18px 0 0; /* the rounded edge is 18px wide */
	background:  url(images/right.png) no-repeat right center;
	font-family: Arial, Helvetica, sans-serif;
	/* Height to accommodate background image. Any smaller than 2em
	and the top and bottom of the image are truncated. */
	line-height: 2em;
}

/* Movie layer - full page width. Used on pages with movies larger than the 420x230 UCEL standard, which
   can't fit into the right-hand textbox layer.*/
#mediabox_large 
{
	padding: 5px;
	background-color: #d9ecff;
	text-align: center;
}

/* RLO text */
#textbox 
{
	width: 100%;
	padding: 5px;
	background-color: #ffffff;
}
		


/* Page number navigation buttons */			
#pagenav p	
{
	margin-left: 15px;
	padding: 5px;
	/* force layer beneath textbox */
	clear: both;
}


#footer 
{
	padding: 5px;
	margin-top: 5px;
}
		
#footer p	
{
	padding: 0px;
	margin: 0px;
	font-size: smaller;
}
		
#footerlogo	
{ 
	float: right;
	text-align: right;
}
			

/* PAGE TABS */

/* The tabbed appearance is based closely on the article "Sliding doors of CSS" on the A List Apart website:
   http://www.alistapart.com/articles/slidingdoors/
*/

/* Set up tab block with bottom border */
#tabs
{
    float:left;
    width:100%;
    font-size:93%;
    line-height:normal;
	margin-bottom: 10px;  
}
	
#tabs ul 
{
    margin:0;
	padding:10px 10px 0;
    list-style:none;
}
	
#tabs li 
{
    float:left;
    background:url(images/norm_right.gif) no-repeat right top;
    margin:0;
    padding:0;
	border-bottom: 1px solid #000;
}	
	
#tabs a 
{
    display:block;
    background:url(images/norm_left.gif) no-repeat left top;
    padding:5px 15px 4px;
}	
	
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a
{
	float:none;
}
  /* End IE5-Mac hack */	
	
#tabs .current 
{
    background-image:url(images/norm_right_on.gif);
	border-bottom: 1px solid #fff;	
}
#tabs .current a 
{
    background-image:url(images/norm_left_on.gif);
    padding-bottom:5px;	
}
	


