/* 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 02/08/07 by Ugly Studios Ltd www.uglystudios.com */

/* 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;
	}

p	{ margin-left: 15px; }
	
/* 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; }
	
/* 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;
			}

/* ------------ */
/* 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;
				margin-bottom: 0;

}

#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;
	}
	
/* 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 sub navigation */
  #tabs {
    width:100%;
    font-size:93%;
    line-height:normal;
	padding-top: 0;
    }
	
  #tabs ul {
    margin:0;
	padding:0 0 10px 0;
    list-style:none;
	display: block;
    }
	
  #tabs li {
    float:left;
    margin:0;
    padding:0;
   	margin-bottom: 10px;
    }	
	
  #tabs a {
    display:block;
    background:url(../images/norm_left.gif) no-repeat left top;
    padding:5px 5px 4px 25px;
	color: #000;
    }	
	
 #tabs a:hover {
    background:url(../images/arrow3.gif) no-repeat left top;
    }
	
  /* 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);
	background-repeat:no-repeat;
	margin-right: 4px;

    }
  #tabs .current a {
    background-image:url(../images/arrow2.gif);
    padding-bottom:none;
	color: white;
	font-weight:bold;
	padding-left: 27px;
	text-decoration:none;
    }
	
  #tabs .current a:hover {
      background-image:url(../images/arrow2.gif);
  }
	
	
	
		

/* Movie layer */
#mediabox {
	padding: 20px 5px;
	margin: 10px 0 10px 32%;
	background-color: #d9ecff;
	text-align: center;
	vertical-align:top;
	height: 380px;
}


/* Prev, Next, buttons */
.navtext	{ 
	font-size: 90%; 
	height: 40px;
	vertical-align:top;
	text-align: centre;
	display: block;
	float: left;
	width: 100%;
	background-color: #d9ecff;
	clear: both;
	}

.navtext ul {
	margin-left:0;
	list-style:none;
	width:120px;
	height: 40px;
	margin-left:auto;
	margin-right:auto;
	display: block;
	clear: both;
	}
	
.navtext ul li {
    float:left;
	displey: block;
	width: 60px;
	text-align:center;
    margin:0;
    padding:0;
	height:34px;

    background: url(../images/next.gif) no-repeat right top;
	}
	
.navtext ul li a {
    float:left;
	displey: block;
	width: 60px;
	text-align:center;
    background: url(../images/next.gif) no-repeat right top;
    margin:0;
    padding:0;
	height:40px;
	}		
	
.navtext ul li a:hover {
   background: url(../images/next2.gif) no-repeat right top;
   }
   
  .navtext .prev {
    background: url(../images/prev.gif) no-repeat left top;
	}

.navtext .prev a{
    background: url(../images/prev.gif) no-repeat left top;
	}
	
.navtext .prev a:hover{
    background: url(../images/prev2.gif) no-repeat left top;
	}

/* RLO text */
#textbox {
	float: left;
	width: 30%;
	/*\width: 30%;
	w\idth: 30%;*/
	padding: 5px;
	background-color: #ffffff;
}
		
#textbox p	{
			margin-left: 15px;
			}

/* 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;
			}
			
/* feedback */

#feedbackTextbox {
	padding: 10px;

}
		
#feedbackTextbox h3	{
			color:#336699;
			font-size:14px;
			margin-left: 15px;
			}


