@charset "utf-8";
/* CSS Document */

/*
TABLE OF CONTENTS

ZERO OUT - Sets most everything to ZERO, so there's a clean slate to start with - set any defaults here (Lists especially)
BODY - sets the base font
POSITIONING - generic tags for positioning
LINKS - default and other link styling
#HEADER - Ontario logo, #arc, #search, #navbar (main menu/navigation), #banner
#
 - Main content area (Many layouts - see style guide)
#left_column - .left_nav (left hand navigation group), .menu (menu list)
#FOOTER - #full_footer, Copyright, Site Map, Contact Us, Privacy Notices

*/


/* -ZERO OUT EVERYTHING - * ---------------------------------------------------------------- */
/* -this css sets all padding, margins, defaults to 0 - * ---------------------------------- */
/* tables still need 'cellspacing="0"' in the markup */


/* removed img from this list, images were ignoring my hspace vspace values */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font,  ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend
{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	/*vertical-align: baseline;*/
	background: transparent;
}/*table, caption, tbody, tfoot, thead, tr, th, td */
body {
	line-height: 1;
}

blockquote, q {
	quotes: none;
}

/* this is the behaviour for form fields when they are selected */
:focus {
	outline: 1px solid #000000;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}


del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
tbody {border:inherit}

/* table .contact {cellspacing:4px;} */
/* table.admin { cellspacing:4px;cellpadding:4px;} */

/* -ZERO OUT EVERYTHING - END * ---------------------------------------------------------------- */

/* ----------- ZERO OUT LISTS - set your default list styles here ---------------- */
ol, ul { /* this is the default style - change at will - */
	list-style: none; /* no bullets */
	margin-left: 20px; /* indented from side */
	margin-bottom: 20px; /* space after */
}

ol {list-style-type:decimal;}

/* BASELINE ** ADDITION ** REMOVES Margins from LISTS - nested lists have no top/bottom margins - remove to use default margins*/
/*ul ul, ul ol, ul dir, ul menu, ul dl, ol ul, ol ol, ol dir, ol menu, ol dl, dir ul, dir ol, dir dir, dir menu, dir dl, menu ul, menu ol, menu dir, menu menu, menu dl, dl ul, dl ol, dl dir, dl menu, dl dl {
	margin-top: 0;
	margin-bottom: 0;
}*/
/* --------------------------------------------------------------- */



/* sets the base font to approx 10pt */
body {
	background-color: #ffffff;
	color: #000;
	font: 62.5% Verdana, Helvetica, Arial, sans-serif;
	text-align: center;
	line-height: 1.5em;
}


/* default sizing for standard elements -------------------------- */   /* SET text attributes here */
a {
	text-decoration: none;
	color:#003399;
}
a:visited {
	color: #666;
	text-decoration:none;

}
p {
	margin: 0.5em 0 1.5em 0; /* sets default margins for all paragraphs */
}

/* -------- HEADERS --------- */

h1, h2, h3 { font-weight: bold; } 	/* must set explicitly, it is zeroed out above */

h1 {
	color: #000000; /* COLOUR CHANGE */ /* replace h tags colour with your own */
	font-size: 1.4em;
	margin: 0.5em 0 1em 0; /* default margins for h tags: in this order: top, right, bottom, left */
}
h2 {
	color: #674423;/* COLOUR CHANGE */
	font-size: 1.2em;
	padding-bottom: 6px; /* no margins for h2 these are used for menu items - TO OVERRIDE THIS STYLE, add a new class  */
}
h3 {
	color: #674423; /* COLOUR CHANGE */
	font-size: 1.1em;
	margin: 0.5em 0; /* default margins for h tags: in this order: top/bottom, right/left */
}
h4 {
	color: #674423; /* COLOUR CHANGE */
	font-size: 1.1em;
}

img {
	border: 0;
}

dt {
	font-weight: bold;
}
/* --------------------------------------------------------------- */



/* common/generic styles ------------------------------------------------- */

/* positioning */
.right { /* aligns - floats right */
	float: right;
	margin-left: 20px;
	text-align: right;
}
.left { /* aligns - floats left */
	float: left;
	margin-right: 20px;
}
.top { /* removes top margin */
	margin-top: 0;
}
.bottom { /* removes bottom margin */
	margin-bottom: 0;
}

.center { /* centers */
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.clear { /* to clear floats */
	clear: both;
}

/* other */
.small { /* smaller text */
	font-size: 0.85em;
	line-height: 140%;
}
.large { /* larger text */
	font-size: 1.4em;
	margin-top: 20px;
	display: block;
}
.indent { /* use to indent text in a pragraph */
	margin-left: 2em;
}

.label {
	display: block;
	width: 5em;
	float: left;
}

.submit { /* styles the submit / GO button -- */
	background-color: #aa3d12; /* COLOUR CHANGE */
	color: #fff;
	font-weight: bold;
	border: none;
	float: left;
	width: 100%;
	height:2em;
	border: 1px solid #000; /* when BGimages are turned off there is no search box visible - adding a border will make it visible - could also add a bgcolor instead */
}

hr { height: 1px; color: #bfbfbf; background-color: #bfbfbf; border: none; float: left; clear: both; width: 100%; margin: 1em 0; }
hr.thick { height: 3px; color: #666; background-color: #666; } /* thicker separator line - change colour if desired for greater emphasis */
/* --------------------------------------------------------------- */



/* tables still need 'cellspacing="0"' in the markup - CSS2 does not yet have proper table support */





/* ---- LINKS ---------------------------------------------------- */

/* default link style */

 #language a,  a:link,  a:visited,  a:active {
	text-decoration: none;
	font-weight: normal;
	color:#000;/* COLOUR CHANGE */
}
a:hover {
	text-decoration: underline;
	color: #000000; /* COLOUR CHANGE */
}
/* default link style */

/* PAGE LAYOUT STYLES --------------------------------------------- */

#wrapper { /* wraps the whole page and centers it */
	width: 980px;
	margin: 0 auto 0 auto;
	text-align: left;
	border-left:0px solid #DDD;
	border-right:0px solid #DDD;
	background-color:#FFFFFF;
}

#header { /* holds the header area Ontario logo, div>arc, div>search, div>navbar (main menu/navigation), #banner */
	width: 980px;
	position: relative;
}

#left_column { /* holds menu - side nav */
	width: 250px;
	float: left;
	font-size: 1.2em;
	line-height: 160%;
}

#right_column { /* content area */
	width: 710px;
	float: right;
	font-size: 1.3em;
	line-height: 160%;
}


#footer {
	clear: both;
	width: 980px;
	padding-top: 20px;
}

/* HEADER LAYOUT STYLES --------------------------------------------- */

#textlinks a.last, #navbar p a.last { border: none; padding-right: 0; }

#textlinks {
	position: absolute;
	right: 0px;
	top: 5px;
	text-align: right;
}

#textlinks a {
	padding: 0 1em 0 0.75em;
	border-right: 0px solid #999;
}

a#skipNav:link, a#skipNav:visited, a#skipNav:hover { color: #FFF; border: none; }
a#skipNav:active, a#skipNav:focus { color: #17397d;border-right: 1px solid #999;}

#arc {
	width: 100%;
	height: 92px;
	float: left;
	background-image: url('/images/template/header_arc2.gif');
}

#arc form { /* search form */
	float: right;
	margin: 40px 0 0 0;
	padding-right: 20px;
}

#search { /* search box */
	width:300px;
	height:18px;
	padding:3px;
	border:1px solid #000;
	background-color:#fff; /* COLOUR CHANGE */
	font-size:14px;
}

#submit { /* submit (go) button */
	width:50px;
	height:24px;
	padding:3px;
	border:1px solid #000;
	background-color:#b4df6f;
	color:#000; /* COLOUR CHANGE */
}

#navbar { /* the main nav bar */
	width: 100%;
	height: 2.75em; /*2.75em*/
	float: left;
	border-bottom: 8px solid #FFF;
	overflow:hidden;
	/*background: #343434  url('/images/template/navbar.jpg') no-repeat left center; *//* COLOUR CHANGE - replace Background colour with your colour that matches the graphic */
}

#navbar ul { /* text in navbar */
	font-size: 1.1em;
	text-transform: uppercase;
	text-align: center;
	margin-top: 7px;
}

#navbar ul li a { /* links in navbar */
	color: #FFF; /* COLOUR CHANGE - MAKE SURE CONTRAST IS VERY HIGH */
	padding: 0 12px 0 12px;
	font-weight: bold;
}

#navbar ul li {
	position: relative;
	display: inline;
	border-right: 2px solid #FFF;
}

#navbar ul li.last {
	border-right: none;
}


/* NEW MEI :: second nav bar for home page */
#navbar2 {
height:28px;
background-color:#f5f5f5;
border-bottom:1px solid #ccc;
margin-bottom:10px;
text-align:center;
padding-top:12px;
}

#navbar2 ul li {
display:inline;
margin-right:4px;
font-size:14px;
}

#navbar2 ul li a:link {font-family:"Arial Rounded MT Bold", Verdana, Arial, sans-serif;font-size:16px;border:1px solid #ccc;padding:4px;}

#navbar2 ul li a:visited {font-family:"Arial Rounded MT Bold", Verdana, Arial, sans-serif;font-size:16px;border:1px solid #ccc;padding:4px;}

#navbar2 ul li a:hover {font-family:"Arial Rounded MT Bold", Verdana, Arial, sans-serif;font-size:16px;background-color:#FFF;text-decoration:none;}

#banner { /* holds flash banner or static banner */
	width: 980px;
	height: 185px;
	overflow: hidden; /* Necessary for IE6 */
	clear: left;
	margin-bottom: 2px;
	border-bottom: 4px solid #453617; /* COLOUR CHANGE - this is the colour stripe under the flash banner */
}

/* breadcrumbs */
#path{margin:0 0 6px 0;}


/* LEFT NAV STYLES --------------------------------------------- */

#left_column ul { margin: 0; padding: 0; }

.leftnav {
	width: 100%;
	float: left;
	margin-bottom: 10px;
}

/* -- First/Default colour of Header bar for Menu titles -- */

.leftnav .header {
	width: 100%;
	height: 1.6em;
	border-bottom: 1px solid #bfbfbf;
	float: left;
	position: relative;
	background: #e5e5e5 url('../images/template/arc_left.gif') no-repeat; /* COLOUR CHANGE header BG image match #colour to bottom half of arc graphic */
}

.leftnav .header a {
	color: #333;
	font-weight: bold;
	display: block;
	padding: 3px 5px;
}

.leftnav .header img, .downarrow {
	position: absolute;
	left: 230px;
	top: 6px;
}

/* -- Second/Optional colour of Header bar for Menu titles -- */

.leftnav .mycolour .header {
	border-bottom: 1px solid #000000;
	background: #000000 url('../images/template/arc_left_mycolour.gif') top left no-repeat; /* COLOUR CHANGE header BG image match #colour to bottom half of arc graphic */
	height:22px;
	overflow:hidden;
}

.leftnav .mycolour .header a {
	color:#fff; /* COLOUR CHANGE update font to contrast w BG color (above in .leftnav .mycolour .header) */
	font-weight: bold;
	display: block;
	padding: 3px 5px;
}

/* -- Standard MY GOVERNMENT colour of Header bar for Menu titles -- */

.leftnav .mygovt .header {
	background-color: #4a1910;
	background-image: url(../images/template/arc_left_red.gif);
		height:22px;
	background-repeat: no-repeat;
	overflow:hidden;
}

.leftnav .mygovt .header a {
	color:#fff; /* COLOUR CHANGE update font to contrast w BG color (above in .leftnav .mycolour .header) */
	font-weight: bold;
	display: block;
	padding: 3px 5px;
}

.leftnav h2 { font-size: 1.1em; }

/* EXPANDING MENU STYLES --------------------------------------------- */

.menu {
	width: 100%;
	float: left;
}

.menu li {
	display: inline;
}

.menu a {
	color: #000;
	font-weight: bold;
	display: block;
	padding: 8px 4px 10px 24px; /* this creates the size of the menu item box - last value is the distance of the text from the side */
	border-bottom: 1px dotted #666;
	background: #f7f7ef url('../images/template/triangle_right.gif') no-repeat 12px 13px; /* COLOUR CHANGE  */
}

#current { background-color: #f8f6d7; }

.menu li li a {/* sub menu styling - positions the arrow graphic in a bit more */
	font-size: 0.9em;
	padding: 8px 4px 8px 36px;
	background: #FFF url('../images/template/triangle_right.gif') no-repeat 23px 13px;
}

/* additional styles for rhmenu are at bottom of page */


#contacts { display: none; } /* closes the menu by default */

#explore { 	display: none; } /* closes the menu by default */

.row { /* a style to contain other elements on the page - gives a dotted border at the bottom of the area */
	width: 100%;
	float: left;
	display: inline;
	margin-right: -3px; /* IE 6 duplicate text fix */
	margin-bottom: 10px;
	border-bottom: 1px dotted #666;
}

.button { margin: 20px auto; width: 210px; }

/* Renewables Menus 
---------------------------------------- */

#renewNavBox {width:197px; display:block; float:right; padding:5px; border:1px solid #000}

#renewNavBox  p {margin:0; padding:0}

#renewNavBox ul {list-style-type: none;
list-style:none; margin-left:.2em; padding-left:.2em; margin-top:0;
padding-bottom:0; margin-bottom:0;}

#renewNavBox ul li {
list-style-type: none;
list-style:none;
margin-left:.2em;
padding-left:.2em;
font-size:12px;
}

#renewNavBox h5 {font-size:12px; font-weight:normal; padding:0; margin:0;}
#renewNavBox a {text-decoration:underline;}

.disclaimerBox {border-top:1px solid #999999; padding-top:6px; color:#999999; font-size:11px; margin:8px 0 5px 0}
.disclaimerBox  p {line-height: normal;}

.refLinkBox {width:220px; display:block; float:left; margin-right:12px;}
.refLinkBox p {margin:0; padding:0}

.didYouKnow {
margin-top:5px;
float:right;
top:10px;
clear:left;
width:200px;
border:1px solid #aaa;
margin-left:20px;
margin-bottom:20px;
margin-right:4px;
background-color: #f7f7ef;
padding:5px;
}

.didYouKnow p {
	font-size:11px;
}

.didYouKnow h4 {
	text-align:center;
	font-size:13px;
}

.highlightTextBox {
background-color:#ededed; 
border:1px solid #000000; 
padding:5px; 
margin:8px 0 8px 0; 
text-align:center; 
font-size:12px;}

.highlightTextBox a {text-decoration:underline}

/*  HOME ENERGY ON STYLES -------*/

#homeenbox {
border:1px solid #B9D54D;
width:550px;
padding:8px;
margin:8px;
}

#homeenterbutton {
border:1px solid #B9D54D;
width: 150px;
padding:2px;
background-color:#B9D54D;
font:bold #FFFFFF;
text-align:center;
}

#homeenterbutton a:link 
{
font:bold #FFFFFF;
text-decoration:none;
color:#FFFFFF;
}

#homeenterbutton a:visited
{
font:bold #FFFFFF;
text-decoration:none;
color:#FFFFFF;
}

#homeenterbutton a:hover
{
font:bold #FFFFFF;
text-decoration:none;
color:#FFFFFF;
}

#ohespnavbox{
padding: 2px;
text-decoration:none;
font-weight: bold; 
display: inline;
}

#ohespnavbox ul{
text-decoration:none;
font-weight: bold; 
display: inline;
text-decoration:none;
}

#ohespnavbox ul li{
text-decoration:none;
font-weight: bold; 
display: inline;
text-decoration:none;
}

#ohespnavbox ul li a{
text-decoration:none;
font-weight: bold; 
text-decoration:none;
display: inline;
}

#ohespnavbox ul li a:visited{
text-decoration:none;
font-weight: bold; 
text-decoration:none;
}

#ohespnavbox ul li a:hover{
text-decoration:none;
font-weight: bold; 
text-decoration:none;
}

/* FOOTER STYLES ------------ */

#full_footer { /* changed in V2.3 to make the footer span the whole bottom area */
	border-top: 1px solid #7f7f7f;
	padding-bottom: 1em;
	width: 100%}

#footer p { 
	font-weight: bold;
	text-transform: uppercase;
	color: #666;
	margin-top: 0.7em;
	font-size: .9em
}
#footer a, #footer a:link, #footer a:visited, #footer a:active { color: #666; text-decoration: underline}

/* --- list of links footer - new nov2009 ---- */
#footer ul.right { width: 490px; margin-top: 0.7em; }
#footer ul.left { width: 470px; margin-left: 0; }

#footer ul {
	font-weight: bold;
	text-transform: uppercase;
	color: #666;
	font-size: .9em;
	margin-left: 0;
	padding-left: 0;
	display: inline;
	margin: 0 0 1.0em
	} 

#footer ul li {
	margin-left: 0;
	margin-top: 0.7em;
	padding: 0 10px;
	border-left: 1px solid #000;
	list-style: none;
	display: inline;
	}
#footer ul li.noborder { border: 0 none}
#footer ul.left li { float: left}
#footer p.last-mod { text-transform: none; clear: right; float: right; width: 490px; text-align: right; margin: 0 10px 0 0}
/* --- list of links footer - new nov2009 ---- */

/* --- ACCESSIBILITY ---- ncs EDITED nov4/09 (bug fix, add h2) use to hide h1s or h2s you don't want visible to the sighted, but would like to have read by screen readers */
h1.accessible,h2.accessible{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}


/* SPLASH STYLES ---------- */

#splash {
	width: 710px;
	float: left;
	margin: 2em 135px 0 135px;
	padding-bottom: 80px;
	font-size: 1.3em;
	text-align: left;
	background: url('../images/template/header_arc.gif') no-repeat bottom left; /* re-uses HEADER ARC image no need to change */
	border: 1px solid #606060; /* COLOUR CHANGE this is a colour that matches your site *** make sure to make a header ARC image to match if changing it */
	border-bottom: 2em solid #000000; /* COLOUR CHANGE this is a colour that matches the MAIN NAVIGATION BAR  */
}

#splash .two_cols {
	background: url('../images/template/splash_line.gif') no-repeat top center;  /* this line matches the outline of the border above - Graphic in file: Splash_Master.psd */
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 3em;
}

#splash .two_cols .column .button { margin: 20px auto; width: 210px; }
#splash .two_cols .column .arrow  { vertical-align: middle; }

#splash h2 a { font-size: 110%; font-weight: bold; color: #000000; /* COLOUR CHANGE - match if you like */}

/* generic LAYOUT styles --------------------------------------------- */

.two_cols {
	background: url('../images/template/two_cols.gif') repeat-y;	background-position: 20px;
}
.three_cols { background: url('../images/template/three_cols.gif') repeat-y; background-position: 20px;}


.two_cols .column { /* when a .column is placed inside a two_cols row you get 2 equal columns of 354px that fill the right_column */
	width: 354px;
	float: left;
	position: relative;
}

.three_cols .column, .box .column { /* when a .column is placed inside a three_cols row you get 3 equal columns of 236px that fill the right_column */
	width: 236px;
	float: left;
	position: relative;
}

.two_thirds .column { /* use in combination with a photo, or to create a layout that splits the screen into 2 sections one twice as big as the second */
	width: 450px;
	float: left;
	position: relative;
}

.two_thirds .other { /* used to hold content other than text */
	width: 236px;
	float: left;
	position: relative;
}

.content {
	padding: 5px 13px;
	float: left;
}

.column li a { font-weight: bold; }
.column ul   { margin: 0; padding: 0; }

#right_column p a, #right_column a p, #right_column td a,#right_column li a   { text-decoration: underline; color:#003399; }
#right_column p a:visited, #right_column a:visited p,#right_column li a:visited  { color:#039; text-decoration: none; border-bottom:1px dashed #666;}


/* the noline class is for images, because underlined images look stupid */
#right_column p a.noline   { text-decoration: none; }
#right_column p a.noline:hover{color:#339900;text-decoration:underline;}
#right_column p a.noline:visited{color:#339900;text-decoration:none;border:none;}

#right_column ul li {
	list-style-type:disc;
	/*color:#566d1b;*/
	margin-left: 10px;
	padding-left: 5px;
	line-height: 200%;
}

#right_column .content .large p a { text-decoration:none; }

.date  { color: #aa3d12; } /* CHANGE COLOUR OF NEWS DATES here */
.promo { margin-bottom: 10px; float: left; }

.row .header { /* a full length header that spans all columns -USE: wrap .header in a .row */
	width: 100%;
	height: 100%;
	position: relative;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #e5e5e5 url('../images/template/arc_right_main.gif') no-repeat; /* COLOUR CHANGE the background colour to your site's colour scheme */
}


.two_cols .column .header { /* 2 seperate headers - USE: class="row two_cols" nest .content div inside, then nest .header div inside that */
	width: 350px;
	height: 100%;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #e5e5e5 url('../images/template/arc_right_half.gif') no-repeat; /* COLOUR CHANGE the background colour to your site's colour scheme */
	float: none;
	position: relative;
	margin: 0 2px;
}

.three_cols .column .header { /* 2 seperate headers - USE: class="row three_cols" nest .content div inside, then nest .header div inside that */
	width: 230px;
	height: 2.5em;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #8fa644 url('../images/template/arc_right_third_green.gif') no-repeat; /* COLOUR CHANGE the background colour to your site's colour scheme */
	float: none;
	position: relative;
	margin: 0 3px;
}

.two_thirds .column .header { /* use in combination with a photo, or to create a layout that splits the screen into 2 sections one twice as big as the second */
	width: 460px;
	height: 2.5em;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	float: none;
	position: relative;
	margin: 0;
}

.two_thirds .other .header {
	width: 236px;
	height: 2.5em;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	float: none;
	position: relative;
	margin: 0 0 0 3px;

}

.two_cols .split_lrg .content {
	padding: 0 0 0 2px;
}

.two_cols .split_lrg .content img {
	float: left;
}

.two_cols .split_lrg h3, .two_cols .split_lrg .content ul, .two_cols .split_lrg .content p {
	float: left;
	width: 156px;
	padding: 0.8em 5px 0 20px;
}

.two_cols .split_lrg .content p { padding-top: 0.5em; } /* overwrites prev statement to set the spacing back to default at the top */

.line_separator {
	overflow: hidden;
	width: 349px;
	height: 1px;
	border-bottom: 1px dotted #666;
	padding-top: 5px;
	padding-bottom: 5px;
}

.header h1 {
	color: #333;
	margin: 5px 10px 0px 10px;
	padding: 0px 0px 5px 0px;
	font-size: 1.2em;
	float: none;
}

.header h2 {
	color: #333;
	margin: 5px 10px 0px 10px;
	padding: 0px 0px 5px 0px;
	font-size: 1.1em;
	float: none;
}

.header .mycolour {

} /* in case you need it - not currently used */


.more { /* style for the more> links pulls the more out 30px from the right side of the block */
	right: 26px;
	float: right;
	position: relative;
	top: 5px;
	padding: 0px 0px 0px 30px;
	font-size: 0.8em;
	font-weight: bold;
	text-transform: uppercase;
}


.more img { /* positions the chevron/arrow after the MORE link */
	position: absolute;
	top: 5px;
	right: -15px;
}

.box {
	float: left;
	width: 100%;
	background-color: #f8f6d7;
	border-bottom: 1px solid #666;
	margin: 10px 0 20px 0;
}

.box h3, .box p, .box ul, .box table { margin-left: 20px; margin-right: 20px; }
.box table td { border-top: 1px dotted #666; }


/* PHOTO STYLES --------------------------------------------- */

.frame  { border: 1px solid #ccc; padding: 8px; }
.inline { vertical-align: middle; }

.photocap  { background-repeat: no-repeat; height: 6px; line-height: 1px; font-size: 0.1em; clear: left; } /* used for the left floated series of images - you can put a caption below - this style that caption */

div.photo  { width: 210px; height: 190px; float: left; margin: 0 13px; } /* this is for the gallery ONLY - note that it will make the div that holds the photo 190px tall! */

img.photo  { border-top: 1px solid #fff; border-bottom: 1px solid #fff; width: 100%; float: left; }

.photolink       { width: 100%; float: left; }
.photolink a     { font-weight: bold; }
.photolink .text {
	float: left;
	padding: 5px 0 0 5px;
	color: #FFFFFF; /* set colour of link text under photos here */
}
.row three_cols .column .content .large a {	text-decoration: none;}

.nav_top      { background-image: url('../images/template/corner_nav_top.gif'); background-position: top left; }
.nav_bottom   { background-image: url('../images/template/corner_nav_bottom.gif'); background-position: bottom left; }
.main_top     { background-image: url('../images/template/corner_main_top.gif'); background-position: top left; }
.photo_top    { width: 210px; background-image: url('../images/template/corner_photo_top.gif'); background-position: top left; }
.photo_top2    { background-image: url('../images/template/corner_photo_top.gif'); background-position: top left; }
.photo_bottom { width: 210px; background-image: url('../images/template/corner_photo_bottom.gif'); background-position: bottom left; }
.photo_bottom2 { background-image: url('../images/template/corner_photo_bottom.gif'); background-position: bottom left; }
.icon_top     { background-image: url('../images/template/corner_icon_top.gif'); background-position: top left; }
.icon_bottom  { background-image: url('../images/template/corner_icon_bottom.gif'); background-position: bottom left; }
.noborder	  { border: 0; }
.nomargin     { margin: 0; }

.photo_long { width: 426px; background-image: url('../images/template/corner_photo_long.gif'); background-position: top left; border-bottom: 1px solid #fff;}

.photo_logo {
	float: left;
	margin-right: 10px;
	padding: 3px;
	background-color: #FFFFFF;
	border: 1px solid #666666;} /*Photo Style for the logos on the Agencies Page*/

.red  { background-color: #660000; }
.grey { background-color: #868686; }
.mycolour { background-color: #000000; } /* COLOUR CHANGE this is a colour that matches your site *** make sure to make a header ARC image to match if changing it */

.icon { 	width: 125px; 	float: left; 	padding: 10px 0;}
.spacer { float: left; width: 40px; }
.half_spacer { float: left; width: 20px; }

/*(NOELLE - note to self) from TCU - is this standard? */.two_thirds .photo { height: 100px; /* specify image height here */ width: 210px; float: left; padding: 12px 20px 20px 20px; /* pulls image down same amount as the paragraph 16px and adds a pad under the image */}

.two_thirds .photo {
	height: 85px; /* specify image height here */
	width: 210px;
	float: left;
	padding: 0; /* puts padding all around the image */
}

/* NEWS STYLES - MAA specific - can be re-used --------------------------------------------- */

.news p {
	clear: left;
	float: left;
	width: 20%;
	height: 2em;
	margin: 0;
	padding: 2px 0 0 0;
	border-top: 1px dotted #ccc;
}

#right_column .news ul { margin: 0; padding: 0 0 1em 0; }

#right_column .news ul li {
	display: block;
	list-style-type: none;
	background: none;
	margin: 0;
	padding: 0;
	border-top: 1px dotted #ccc;
}

/* ------ overide styles ---- */

.nomargin { margin: 0; } /* removes all margins */
.noborder { border: 0; } /* removes all borders */
.content {
	clear: both;
}

#content a.noline {text-decoration:none;color:#FF0000;}
#content a.noline:link {text-decoration:none;}


/* NOELLE - note to self may not need - check */
h2 a.large {
margin-top: 20px;
display:block;
}

/*#rhmenu ul li {
display:block;
list-style:none;
list-style-type:none;
font-size:.85em;
margin-left:-10px;
border-bottom: 0px dashed #aaa;
}*/

#dashboard {text-align:center;
margin:4px;
padding:4px;
border:1px solid #ddd;
}

.dev {font-family:"Courier New", Courier, mono;font-size:12px;border:1px dashed red;padding:4px;}


#greenbox {
display:block;
border:1px solid #769643;
padding:6px;
}

.greenbox {
display:block;
border:1px solid #769643;
padding:6px;
}

.greybox {
display:block;
border:1px solid #ccc;
padding:6px;
}

#navlist {
margin-left: 0;
padding-left: 0;
list-style: none;
}

#navlist li {
padding-left: 10px;
background-image: url(/mei/images/content/arrow_right.gif);
background-repeat: no-repeat;
background-position: 0 .5em;
}

caption {font-weight:bold;background-color:#d6ddd3;}

ul li.pdf {list-style-image: url(/mei/images/content/iconpdf_vsmall.gif);}

ul li.ext {list-style-image: url(/mei/images/content/icon_external_sm.gif);}

ul li.nr {list-style-image: url(/mei/images/content/nr_icon_vsmall.gif);}

ul li.doc {list-style-image: url(/mei/images/content/icon_msword_sm.gif);}

ul li.xl {list-style-image: url(/mei/images/content/icon_msxl_sm.gif);}

ul li.pp {list-style-image: url(/mei/images/content/icon_pp.gif);}

ul li.jump {list-style-image: url(/mei/images/content/icon_jump.gif);}

#rhmenu ul li.nr {
list-style-image:url('../images/nr_icon_vsmall.gif');
margin-left:0;
}

#rhmenu ul li.bg {
list-style-image: url(../images/bg_icon_vsmall.gif);
margin-left:0;
}

/* admin menu */

#left_column h2 {
text-align:center;
background-color:#b4df6f;
color:#000;
padding-top:4px;
}

/* NEW MEI :: right side sub menus */

#rhmenu {
position:relative;
float:right;
top:10px;
clear:left;
width:200px;
border:1px solid #aaa;
margin-left:20px;
margin-bottom:20px;
margin-right:4px;
background-color: #f7f7ef;
}

#rhmenu p {
font-size:10px;
text-align:center;
}

#rhmenu h1 {
font-size:12px;
color:#FFF;
text-align:center;
margin-top:0px;
margin-bottom:0px;
border-bottom:1px solid #AAA;
background:  url('../images/template/arc_left_blue.gif') ;
}

#rhmenu h2 {
font-size:11px;
text-align:center;
margin-top:0px;
margin-bottom:0px;
}

#rhmenu ul {
list-style:none;list-style-type:none;
}

#rhmenu ul li {
font-weight:600;
font-size:.9em;
line-height:200%;
_margin-left:-40px;
margin-left:0px;
}

#rhmenu ul li.pdf {
list-style-type:circle;
list-style-image: url('../images/template/iconpdf_vsmall.gif');
}

#page_title {
	text-align:right;
	color: #99CC66;
	text-transform: uppercase;
	font-size: 1.80em;
	font-weight: 600;
	font-family: sans-serif;
	border-bottom-color: #A3A3A3;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	font-stretch: expanded;
	padding-bottom: 0%;
}


