/*
Stylesheet for Critical Reflection RLO.
Updated: 10/7/09

*/

/* Element and text formatting */
/* --------------------------- */

body 
{
	background-color: #CCCCCC;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
}

/* Set all image borders to none. A picky WAI Priority 2 item 11.2 */

img	{ border: none; }

.citation
{
	font-size:small;
}

.quote
{
	color:#006600;
}

p.centred_text
{
	text-align: center;
}

p.large_text
{
	font-size:large;
	color: #000099;
}

#header
{
	text-align: center;
	clear: both;
	height: 5em; 
}

#header h1
{
	/* force text wrap for long headers */
    width: 80%;
	/* leave room for left image */
	margin-left: 5%;
	float: left; /* otherwise right image will be squashed down the page */
}

#footer
{
	position:relative;
	bottom: 0;
	height: 80px; /* images max 75px high */
	clear: both;
}


/* Positioning */
/* ----------- */

#container 
{
	border: thin solid;
	background:#ffffff;
	margin: 0 auto;
	padding: 1em;
	width: 90%;
	/* Setting overflow forces container to expand to fit containing elements, even if they're floated. 
		Another fix for this is to put a clearing <div> (<div style="clear:both"></div>) before the end container </div>. */
	overflow: hidden; 
}

/* Used for 'home' pages of subsections, eg 'Practical Skills'. */
#container_shaded 
{
	border: thin solid;
	background:#ffcc99;
	margin: 0 auto;
	padding: 2em;
	width: 90%;
	overflow: hidden; 
}

/* Used in all Examples docs */
#container_blue_circle
{

	border: thin solid;
	background:#ffffff;
	margin: 0 auto;
	padding: 1em;
	width: 90%;
	overflow: hidden; 
	background-image:url(../images/blue_circle_background.png); 
	background-repeat:no-repeat; 
	background-position:center;

}




/* Image placeholders */
/* ------------------ */
#left_img
{
	margin-left: 0;
	float: left;
	width: 5%;
}

#right_top_img
{
/*	margin-left: 85%; 
	width: 5%; */
	float: right;
	position: relative;
}

/* For images on the right bottom of the page. This must be inside a "footer" div, so that the position
   is absolute to the footer and not to the page as a whole. Absolute positioning is relative to the containing element. */
#right_bottom_img
{	
	position: absolute;
	right: 0;	
	top: 0;
	margin-right: 1em;
	margin-bottom: 0;
}

#leftcol
{
	width:33%;
	float:left;
	background:#fff;
	padding-bottom:10px;
}

#centrecol
{
	width:34%;
	float:left;
	background:#fff;
	padding-bottom:10px;
}

#rightcol
{
	width:33%;
	float:left;
	background:#fff;
	padding-bottom:10px;
}

/* Menus as text links, as alternatives to image maps, on the main menu and the examples home page. */
#textmenu
{
	font-size:small;
	text-align: center;
	/* leave room for an icon in the bottom right, which will be max 75px wide */
	margin-right: 80px;
}

.largeA
{
	font-size: large;
	font-weight: bold;
	text-decoration: underline;
	color: #000080; 		
}
