@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, #arcf, #search, #navbar (main menu/navigation), #banner
#right_column - 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 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, 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,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

/* remember to define focus styles! */
:focus {
	outline: 1px /*solid*/dotted #000000 !important;
}

/* 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;
}



/* -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 */
}

/*li a { zoom: 1 }*/ /* fix for IE list bug - which wil sometimes interpret a new li as a line break - raises flag since it's IE specific */

/* 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;
}*/
/* --------------------------------------------------------------- */ 

/* DEFAULT focus styles - for accessibility */
:focus {
	/*outline: 0;*/
}


/* sets the base font to approx 10pt */
body { 
	background-color: #FFF; 
	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: #000000;*//* modified 15 Dec 2015 */
}
/*a:visited {
	color: #666;
}*//* modified 15 Dec 2015 */
a:hover {
	text-decoration: underline;
}
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; /* replace h tags colour with your own */
	font-size: 1.4em;
	margin: 0.8em 0 0.5em 0; /* default margins for h tags: in this order: top, right, bottom, left */ 
}
h2 {
	color: #028259;
	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: #1b4e44;
	font-size: 1.1em;
	margin: 0.5em 0; /* default margins for h tags: in this order: top/bottom, right/left */
}
h4 {
	color: #016746;
	font-size: 1.1em;
	margin: 0.5em 0;
}
h5 {
	margin: 1em 0em 0em 0em;
}

img {
	border: 0;
}
/* --------------------------------------------------------------- */ 



/* 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;
}

img.noshow  { 
	display: none; float:right; 
}

.submit { /* styles the submit / GO button -- */
	background-color: #aa3d12;
	color: #fff;
	font-weight: bold;
	border: none;
	float: left;
	width: 100%;
	border: 1px solid #000; /* when BGimages are turned off there is no search box visible - adding a border will make it visible - coloud 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 */


/* ---- AD BANNER ----------------------------- */

#ad_banner {
	display:none;
}


/* ---- LINKS ---------------------------------------------------- */

/* default link style */

 #language a,  a:link,  a:visited,  a:active {
	text-decoration: none;
	font-weight: bold;
	color: #257158;
}
a:hover {
	text-decoration: underline;
	color: #257158;
}
/* default link style */

/* PAGE LAYOUT STYLES --------------------------------------------- */

#wrapper { /* wraps the whole page and centers it */
	width: 980px;
	margin: 13px auto 0 auto;
	text-align: left;
}

#header1 { /* holds the header area Ontario logo, div>arc, div>search, div>navbar (main menu/navigation), #banner */
	width: 100%;
	position: relative;
}

#header { /* holds the header area Ontario logo, div>arc, div>search, div>navbar (main menu/navigation), #banner */
	width: 980px;
}

#left_column { /* holds menu - side nav */
	width: 250px;
	float: left;
	font-size: 1.2em !important;
	line-height: 160%;
}

#left_navigation { /* holds menu - side nav */
	width: 250px;
	vertical-align:top;
	float:left; /* added 15 Dec 2015 */
}

#content_area {  
	width:728px !important/* modified 01 Dec 2015 from 730px */;
	vertical-align:top;
}

#findhelp_area { 
	width:100%;
	vertical-align:top;
	font-size: 1.3em;
	line-height: 160%;
}

#right_column { /* content area */
	width: 710px;
	float: right;
	font-size: 1.2em;
	line-height: 160%;
}

#footer {
	clear: both;
	width: 980px;
	padding-top: 20px;
}

#trapper, #trap {
	display:none;
}

/* 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: 1px solid #999;
	color:#333;
	font-weight:bold;
}
/* added 15 Dec 2015 */
#skipNav {
	position:absolute;
	left:-10000px;
	top:41px;
	width:1px;
	height:1px;
	overflow:hidden;
}
#skipNav:focus {
	position:static;
	width:auto;
	height:auto;
}
/* end add */
a#skipNav:link, a#skipNav:visited, a#skipNav:hover { /*color: #FFF;*//*modified 15 Dec 2015*/ border: none; }
a#skipNav:active, a#skipNav:focus { color: #17397d; border-right: 1px solid #999;  }

#arc, #arcf {
	width: 100%;
	height: 92px;
	float: left;
	background-image: url('/graphics/edu/header_arc.gif');
	/*border-bottom:1px solid #FFF;*/
}

#arc form, #arcf form { /* search form */
	float: right;
	margin: 40px 0 0 0;
	padding-right: 20px;
}

#mainsearch { /* search box */
	width: /*260px*/19.7em; /* modified 15 Dec 2015 */
	height: 1.5em;
	padding: 3px;
	border: 1px solid #394247;
	background-color: #fff;
	vertical-align:bottom;
}

#submit { /* submit (go) button */
	width: /*30px*/2.1em;/* modified 15 Dec 2015 */
	height: /*30px*/2.1em;/* modified 15 Dec 2015 */
	padding: 3px 0;
	border: 0;
	background-color: #394247;
	color: #fff;
	vertical-align:bottom;
}

#nav { 
	width:980px;
	background: #1c413a /*#3c1922*/ url('/graphics/edu/navbar.jpg') no-repeat left center;
	text-align:center !important;
	border-bottom:4px solid #fff !important; /* modified 16 Dec 2015 from 8px to 4px */
	overflow:hidden !important;
}


#navbar { /* the main nav bar */
	width: 100%;
	height: auto/*2.75em*/;
	display:block;
	float: center;
	border-bottom: 4px solid #FFF; /* modified 16 Dec 2015 from 8px to 4px */
	background: #1c413a /*#3c1922*/ url('/graphics/edu/navbar.jpg') no-repeat left center;  /* CHANGE Background colour with your colour that matches the graphic */
}

#navbar p { /* text in navbar */
	font-size: 1.1em;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin-top:10px;
	margin-bottom:12px;
}

#navbar p a { /* links in navbar */
	color: #FFF;
	padding: 0 10px 0 8px;
	border-right: 2px solid #FFF;
}

#navbar p a:hover { /* links in navbar 11/23/2015 *//* added 23 Nov 2015 */
	color:#fff !important;
}

#banner { /* holds flash banner or static banner */
	width: 980px;
	height: 185px;
    overflow: hidden; /* Necessary for IE6 */
	clear:both;
	margin-bottom: 10px;
	border-bottom: 4px solid #1c413a;
}

#rssbanner {	
	vertical-align:middle;
	margin-bottom:1em;
	background:#fcfdf4;
}

#rssbanner p { 
	font-size:70%;
	text-transform:uppercase;
	color:#666;
	font-weight:bold;
	margin:0px auto 0px auto;
}

#getstarted {
	background: url('/eng/news/rss_image.gif') no-repeat left;
	height:24px;
	line-height:24px;
	margin-right:2em;
	padding:5px 0px 5px 53px;
	font-size:80%;
}

#flashcontainer {
	padding:0;
}

/* LEFT NAV STYLES --------------------------------------------- */

#left_column ul { margin: 0; padding: 0; }

.leftnav, .minister-box /* added 27 Nov 2015 */ {
	width: 100%;
	/*float: left;*/
	margin-bottom: 10px;
	overflow:hidden;
}

/* -- First colour of Header bar for Menu titles -- */

.leftnav .header { 
	width: 100%;
	/*height: 1.5em;*/
	border-bottom: 1px solid #bfbfbf;
	float: left;
	position: relative;
	background: #dfe7be url('/graphics/edu/arc_left.gif') no-repeat; /* header BG image CHANGE #colour to bottom half of arc graphic */  
}

.leftnav .headergovt { 
	width: 100%;
	/*height: 1.5em;*/
	border-bottom: 1px solid #bfbfbf;
	float: left;
	position: relative;
	background: #4a1910 url('/graphics/arc_govt_red.gif') no-repeat; /* header BG image CHANGE #colour to bottom half of arc graphic */  
	
}

.leftnav .header a { 
	color: #333;
	font-weight: bold;
	display: block;
	/*padding: 3px 5px 0px 5px;*/
	margin-right:10px; 
	padding: 3px 5px 5px 5px; /* modified 24 Nov 2015*/
}

.leftnav .headergovt a { 
	color: #333;
	font-weight: bold;
	display: block;
	/*padding: 3px 5px 0px 5px;*/
	padding: 3px 5px 5px 5px; /* modified 24 Nov 2015*/ 
}

.leftnav .header img, .leftnav .headergovt img, .downarrow {
	position: absolute;
	left: 230px;
	top: 6px;
}

/* -- Second colour of Header bar for Menu titles -- */

.leftnav .mycolour .headergovt {
	border-bottom: 1px solid #000000;
	background: #4a1910 url('/graphics/arc_govt_red.gif') top left no-repeat; /* header BG image CHANGE #colour to bottom half of arc graphic */
	/*height: 1.5em;*/
}

.leftnav .mycolour .headergovt a { 
	color:#fff; /* update font to contrast w BG color (above in .leftnav .mycolour .header) */ 
	font-weight: bold;
	display: block;
	/*padding: 3px 5px;*/
	padding: 3px 5px 5px 5px; /* modified 24 Nov 2015 */ 
}
.leftnav .mycolour .header {
	border-bottom: 1px solid #000000;
	background: #1c413a url('/graphics/edu/arc_left_mycolour.gif') top left no-repeat; /* header BG image CHANGE #colour to bottom half of arc graphic */
	/*height: 1.5em;*/
}

.leftnav .mycolour .header a { 
	color:#fff; /* update font to contrast w BG color (above in .leftnav .mycolour .header) */ 
	font-weight: bold;
	display: block;
	/*padding: 3px 5px;*/
	padding: 3px 5px 5px 5px; /* modified 24 Nov 2015 */ 
}

.leftnav h2 { font-size: 0.96em !important; line-height:1.4em; }

.leftnav_button {  margin-top:3em; }
.leftnav_button img {  margin-bottom:1em; }

/* EXPANDING MENU STYLES --------------------------------------------- */

.menu {
	width: 100%;
	float: left;
	overflow:hidden;
	font-size:94%;
}

.menu li {
	display: inline;
	line-height:1.3em;	
}

.menu a:link, .menu a:visited, .menu a:active {	
color: #444;
}

.menu #subheading { 	
	color: #444; 
	font-weight: bold;
	display: block;
	padding: 6px 4px 8px 24px; 
	border-bottom: 1px dotted #666; 
	background:#f5f9ed; }
			
.subarrow { 	
	position:absolute;
	margin:10px;
	background:#f5f9ed;
	}

.menu #subheading2 { 	
	color: #444; 
	font-weight: bold;
	display: block;
	padding: 6px 4px 8px 36px; 
	border-bottom: 1px dotted #666; 
	background:#fdfefb; }
		
.subarrow2 { 	
	position:absolute;
	margin:10px 10px 10px 20px;
	background:#fdfefb;
	}
		
.menu a {	
	color: #444; 
	font-weight: bold;
	display: block;
	padding: 6px 4px 6px 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: #f5f9ed url('/graphics/edu/triangle_right.gif') no-repeat 12px 10px;
}

ul.menu li a {	
color: #444;
}

.list {list-style: decimal; margin-left:30px; }

#current { background-color: #f8f6d7; } /* not in use */

.menu li li a {
	/*font-size: 0.9em;*/
	padding: 6px 4px 6px 36px;
	background: #fdfefb url('/graphics/edu/triangle_right.gif') no-repeat 23px 10px; /* sub menu styling - positions the arrow graphic in a bit more */
}

.menu li li li a {
	/*font-size: 0.9em;*/
	padding: 6px 4px 6px 48px;
	background: #fdfefb url('/graphics/edu/triangle_right.gif') no-repeat 34px 10px; /* sub menu styling - positions the arrow graphic in a bit more */
}

.nav25lang li { display:inline; list-style-type:none; }

#nav25 ul li a { color:#666; text-decoration:none; }


#contacts { display: none; } /* closes the menu by default */
#explore { 	display: none; } /* closes the menu by default */

#colleges, #univ, #subnav, #etsubnav { display: none; }
#nav25language { 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;
}

.feature {
	width: 100%;
	float: left;
	overflow:hidden;
	font-size:94%;
}

.feature li {
	/*display: inline;*/
	display:table-row;
	height:/*40px*/auto;
	border-bottom: 1px dotted #666; 
	background: #f5f9ed /*url('/graphics/edu/small_buttons_08.gif') no-repeat 5px 10px*/;
}

.feature li * {
	vertical-align:middle;
}

.feature a:link, .feature a:visited, .feature a:active {	
color: #444;
}
		
.feature a {	
	color: #444; 
	font-weight: bold;
	/*display: block;*/
	display:inline-block;
	line-height:1.3em;
	width:190px;
	padding: 6px 4px 6px 50px;  /*this creates the size of the menu item box - last value is the distance of the text from the side */
}
		
.feature img {	
	border:1px solid #666; 
	margin:6px -40px 6px 0px;
}
/* added 15 Dec 2015*/
#features li {
	display:block !important;
}
/* SPLASH STYLES */

/*#splash { 
	width: 710px;
	float: left;
	padding-bottom: 80px;
	font-size: 1.3em;
	text-align: left;
	background: url('/graphics/tcu/arc.gif') no-repeat bottom left;*/ /* this will re-use your front page arc - no need for a seperate image */
	/*border: 1px solid #660000;
	border-bottom: 2em solid #660000;
}*/

#splash .two_cols { 
	background: url('/graphics/edu/splash_line.gif') no-repeat top center;  /* adds the BG graphic to the splash page  thiese lines should match your site */
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 3em;
}

.button { margin: 20px auto; width: 210px; }

/*SUB-BANNERS*/

#bannerf { background: url("/graphics/edu/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#bannere { background: url("/graphics/edu/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#generic { background: url("/graphics/edu/generic/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#genericf { background: url("/graphics/edu/generic/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#parentmain { background: url("/graphics/edu/parents/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#parentmainMock { background: url("/graphics/edu/parents/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#parentmain1 { background: url("/graphics/edu/parents/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#parentf { background: url("/graphics/edu/parents/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#studentmain { background: url("/graphics/edu/students/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#studentf { background: url("/graphics/edu/students/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#earlylearningmain { background: url("/graphics/edu/earlylearning/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#fulldaykindergartenf { background: url("/fulldaykindergarten_questions/fre/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#fulldaykindergarten { background: url("/fulldaykindergarten_questions/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#curriculumreviewmain { background: url("/graphics/edu/curriculumreview/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#earlylearningf { background: url("/graphics/edu/earlylearning/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#e-learning { background: url("/graphics/edu/elearning/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#e-learningHomework { background: url("/graphics/edu/elearning/Homework_banner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#e-learningf { background: url("/graphics/edu/elearning/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#elementaryf { background: url("/graphics/edu/students/elementaryf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#elementary { background: url("/graphics/edu/students/elementary.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#secondaryf { background: url("/graphics/edu/students/secondaryf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#secondary { background: url("/graphics/edu/students/secondary.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#siftf { background: url("/graphics/edu/parents/siftf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#sift { background: url("/graphics/edu/parents/sift.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#abc123, #abc123f, #h1banner { margin-top:0px; padding-top:0px; }

#new { background: url("/graphics/edu/new/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#newf { background: url("/graphics/edu/new/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#aboutmain { background: url("/graphics/edu/about/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#aboutf { background: url("/graphics/edu/about/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#teachermain { background: url("/graphics/edu/teachers/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#teacherf { background: url("/graphics/edu/teachers/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#adminmain { background: url("/graphics/edu/administrators/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#admincc { background: url("/graphics/edu/administrators/subbannercc.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#adminccf { background: url("/graphics/edu/administrators/subbannerccf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#memo { background: url("/graphics/edu/administrators/memosummary.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#memof { background: url("/graphics/edu/administrators/memosummaryf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#elf { background: url("/graphics/edu/oelf/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#elff { background: url("/graphics/edu/oelf/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#adminf { background: url("/graphics/edu/administrators/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#adminccf { background: url("/graphics/edu/administrators/subbannerccf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#trilliumlist { background: url("/graphics/edu/trilliumlist/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#trilliumlistf { background: url("/graphics/edu/trilliumlist/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#slt { background: url("/graphics/edu/generic/SLTpaper.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#sltf { background: url("/graphics/edu/generic/SLTpaperf.jpg") no-repeat center right; height: 147px; cursor:pointer;}

#summit { background: url("/graphics/edu/summit/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;border-top:1px solid #666; }

#summitf { background: url("/graphics/edu/summit/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;border-top:1px solid #666; }

#passport { background: url("/graphics/edu/passport/subbanner.jpg") no-repeat center right; height: 147px; cursor:pointer;border-top:1px solid #666; }

#passportf { background: url("/graphics/edu/passport/subbannerf.jpg") no-repeat center right; height: 147px; cursor:pointer;border-top:1px solid #666; }
/* FOOTER STYLES */

#footer {
	clear: both;
	width: 980px;
	padding-top: 20px
}

#full_footer { /* changed from orginal 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;
	font-size: 0.9em;
}


#footer a, #footer a:link, #footer a:visited, #footer a:active { color: #666; }

/* --- 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 0.7em 0;
	} 

#footer ul li {
	margin-left: 0;
	margin-top: 0.7em;
	padding: 0 10px;
	border-left: 1px solid #666;
	list-style: none;
	display: inline;
	line-height:1.3em;
	}
#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 10px 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}




/* generic LAYOUT styles --------------------------------------------- */


#insidetable { 
	background:#f7f7f7;/*#f1f7d8 revised for AODA 02Feb2016 */ 
}

#insidetable td, #insidetable th { 
	border-bottom:1px solid #666666; 
}


.two_cols { background: url('/graphics/edu/two_cols.gif') repeat-y; }
.three_cols { background: url('/graphics/edu/three_cols.gif') repeat-y; }
.four_cols { background: url('/graphics/edu/four_cols.gif') repeat-y; }

.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;
}

.four_cols .column { /* when a .column is placed inside a three_cols row you get 3 equal columns of 236px that fill the right_column */
	width: 174px; 
	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;
}

.three_fourths .other { /* 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: 170px;
	float: left;
	position: relative;
}
.two_thirds .other { /* used to hold content other than text */
	width: 236px; 
	float: left;
	position: relative;
}

.content {
	padding: 10px 13px;
	float: left;
}	

.column li a { font-weight: bold; }
.column ul   { margin: 0; padding: 0; }

#right_column p a, #right_column a p  { text-decoration: underline; }

#right_column a  { color:#257158/*25604d*/; font-weight:normal; }

#right_column li a { text-decoration: underline; }

#right_column ul li {
	list-style-type:none;
	vertical-align:top;
	background: url("/graphics/bullet_new.gif") no-repeat;
	background-position:0px 3px;
	color:#000000;
	/*margin-left: 10px;*/
	padding-left: 20px;
	line-height: 155%;
	text-align:left;
	margin-bottom: 8px;
}

#right_column ol li {
	list-style-type:decimal;
	background:none;
	color:#000000;
	margin-left: 10px;
	padding-left: 0px;
	line-height: 155%;
	text-align:left;
	margin-bottom: 8px;
}

#right_column ol ol.lowerroman li {
	list-style-type:lower-roman;
	background:none;
}

#right_column ol.loweralpha li {
	list-style-type:lower-alpha;
	background:none;
}

#right_column ol.loweri li {
	list-style-type:lower-roman;
	background:none;
}

#right_column ul.ToC li{ /*added March 29-16*/
	background:none; 
	margin-left:-20px;
}
/* SBINFO use only */
#sbinfonew #right_column { text-align:left; }
#sbinfonew .mainBody { font-size:1.2em; margin-left:12px;margin-top:20px;}
#sbinfonew .mainBody, #sbinfonew h1 { text-align:left; }
#sbinfonew .mainBody table { font-size:1.2em; width:80%; float:left; }
#sbinfonew .mainBody table td, #sbinfonew .mainBody table th { text-align:left; }
#sbinfonew { margin-left:auto; margin-right:auto; }
#sbinfonew #left_column { text-align:left; }
#sbinfonew .menu a { display:block; }
#sbinfonew .menu li a { display: block; }
#sbinfonew #subnavmenu ul.menu { display: block; overflow:hidden; }				
#sbinfonew .subarrow { position:absolute; margin:10px 10px 10px 12px; background:#f5f9ed; }			
#sbinfonew #subheading { padding: 6px 4px 8px 24px;  }
/* SBINFO use only */
#right_column div.sideBox {background:#f1f7d8; padding-bottom: 14px; width: 50%;}

#right_column ul.shortlist li { line-height:1.5em; margin-bottom:10px; }

#right_column table td { vertical-align:top; }

#right_column table td h3 { margin-top:0px; }

#right_column table td h3 a { color:#257158;font-weight:bold; text-decoration:underline; }

#right_column .content .large p a { text-decoration:none; }

#rtl li { text-align:right; margin-right: 2em; }

.date  { color: #000; font-weight:bold; } /* 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: #dfe7be url('/graphics/edu/arc_right_main.gif') no-repeat; /* 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: #dfe7be url('/graphics/edu/arc_right_half.gif') no-repeat; /* 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: auto;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #dfe7be url('/graphics/edu/arc_right_third.gif') no-repeat; /* CHANGE the background colour to your site's colour scheme */
	float: none;
	position: relative;
	margin: 0 3px;
}

.three_fourths {
	width:522px;
	float:left;
}

.three_fourths .header { /* 2 seperate headers - USE: class="row three_cols" nest .content div inside, then nest .header div inside that */
	height: 2.5em;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #dfe7be url('/graphics/edu/arc_right_main.gif') no-repeat; /* CHANGE the background colour to your site's colour scheme */
	float: none;
	position: relative;
	margin: 0 3px;
}

.four_cols .other .header { /* 2 seperate headers - USE: class="row three_cols" nest .content div inside, then nest .header div inside that */
	width: 174px;
	height: auto;
	border-top: 3px solid #666;
	border-bottom: 1px solid #999;
	background: #dfe7be url('/graphics/edu/arc_right_main.gif') no-repeat; /* 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;
	
}

.header h1 {
	color: #333;
	margin: 5px 10px 0px 10px;
	padding: 0px 0px 5px 0px;
	font-size: 1.2em;
	float: none;
}

.header h2, .header h4 {
	color: #333;
	margin: 5px 10px 0px 10px;
	padding: 0px 0px 5px 0px;
	font-size: 1.1em;
	float: none;
}

.leftnav .header a, .headergovt a {
	font-size:95% !important;
}
/* added 23 Nov 2015 */
.leftnav .header a:hover {
	color:#inherit !important;
}

.mycolour h2 a:hover {
	color:#fff !important;
}
/* added 23 Nov 2015 */
.mycolour div a:hover {
	color:#fff !important;
}

.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: #f5f9ed;
	border-bottom: 1px solid #666;
	margin: 10px 0 20px 0;
}

.2box {
	float: center;
	width: 100%;
	background-color: #f5f9ed;
	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 --------------------------------------------- */
.minister-box p { height:2.3em; padding:5px; }
.minister-box p a, .minister-box p a:link, .minister-box p a:active, .minister-box p a:visited { color:#000; font-weight:bold; font-size:90%;}
.minister-box p a:hover { text-decoration:underline; /* added 27 Nov 2015 color:#fff !important;*/ }
.frame  { border: 1px solid #ccc; padding: 8px; }
.inline { vertical-align: middle; } /* won't work for IE mac (not supported) */

.ministercap  { background-repeat: no-repeat; } /* used for the left floated series of images - you can put a caption below - this style that caption */

.photocap  { background-repeat: no-repeat; height: 6px; line-height: 6px; 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! */

div.portrait  { width: 125px; height:152px; } /* 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('/graphics/edu/corner_nav_top.gif'); background-position: top left; background-repeat:no-repeat; }
.nav_bottom   { background-image: url('/graphics/edu/corner_nav_bottom.gif'); background-position: bottom left; background-repeat:no-repeat; }
.main_top     { background-image: url('/graphics/edu/corner_main_top.gif'); background-position: top left; background-repeat:no-repeat; }
.photo_top    { width: 210px; background-image: url('/graphics/edu/corner_photo_top.gif'); background-position: top left; background-repeat:no-repeat; }
.photo_bottom { width: 210px; background-image: url('/graphics/edu/corner_photo_bottom.gif'); background-position: bottom left; background-repeat:no-repeat; }

.portrait_top    { width: 125px; background-image: url('/graphics/edu/corner_photo_top.gif'); background-position: top left; background-repeat:no-repeat; }
.portrait_bottom { width: 125px; background-image: url('/graphics/edu/corner_photo_bottom.gif'); background-position: bottom left; background-repeat:no-repeat; }


.icon .icon_top     { width:125px; background-image: url('/graphics/edu/corner_icon_top.gif'); background-position: top left; background-repeat:no-repeat; }
.icon .icon_bottom  { width:125px; background-image: url('/graphics/edu/corner_icon_bottom.gif'); background-position: bottom left; background-repeat:no-repeat; }
.icon .photolink, .icon .photocap { padding-right:0; margin-left:0}
.spacer { float: left; width: 40px}
.noborder	  { border: 0; }
.nomargin     { margin: 0; }

.photo_long { width: 426px; background-image: url('/graphics/edu/corner_photo_long.gif'); background-position: top left; border-bottom: 1px solid #fff;}

.red  { background-color: #50152d; }
.grey { background: /*url('/graphics/tcu/nav_top_grey.gif')*/ #868686;}
.green { background: #c9d4b2; }
.grey2 { background-color: #868686;}
.mycolour { background-color: #374559; } /* 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;}
.icon_fullday { 	width: 190px; 	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: after {
	clear: both;
}

/* NOELLE - note to self may not need - check */
h2 a.large {
margin-top: 20px;
display:block;
}

.box h3 .attention {
	background: url(images/chevron_pointingright.gif) no-repeat left top;
	padding: 0 0 0 30px;
}

/* Page Widgets */

#p_actions { width:100%; margin: 10px 0 0 0; }
.pageActions {margin: 0 !important; padding: 0; float: right; text-transform: uppercase;}
#left {float: left;}
#p_actions ul li { list-style-type:none; padding-left:6px; }
#right_column .pageActions a { text-decoration:none; }
#right_column .pageActions a:hover {text-decoration: underline;}
.pageActions {list-style-image:none; list-style-position:outside; list-style-type:none;}
.pageActions li {float:left; font-weight: bold;}
.pageActions li.email {background: url('/graphics/email.gif') no-repeat left !important; font-size: 0.8em; font-family: arial; margin: 0px 0px 0px 20px !important;}
#right_column .pageActions .email a {margin: 0px 0px 0px 0px; padding: 0px 0px 0px 10px; color:#333; }
.pageActions li.print {background: url('/graphics/printer.gif') no-repeat left !important; font-size: 0.8em; font-family: arial; margin: 0px 0px 0px 20px !important;}
#right_column .pageActions .print a {margin: 0px 0px 0px 0px; padding: 0px 0px 0px 10px; color:#333;}
.pageActions li.accessibility {background: url('/graphics/aA.gif') no-repeat left !important; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 20px !important; font-size: 0.8em; font-family: arial;}
#right_column .pageActions .accessibility a {margin: 0px 0px 0px 0px; padding: 0px 0px 0px 21px; color:#333;}
.accessibility { display:none; }
.line {clear: both; border-bottom: 1px solid #BFBFBF; padding: 6px 0px 0px 0px;}

.bookmarks {float: right; margin: 15px 0px 5px 0px;}
.share {float: left; color: #680302; font-size: 1em; text-transform: uppercase; padding: 0px 0px 0px 14px; display:none;}
.pageActions li.digg {background: url('/graphics/digg.gif') no-repeat left !important; text-transform: none; font-size: 1em; font-family: arial; margin: 0px 3px 0px 4px !important; display:none !important;}
#diggf { display:none; }
.pageActions li.digg a {padding: 0px 0px 0px 21px; color: #680302;}
.pageActions li.delicious {background: url('/graphics/delicious.gif') no-repeat left !important; text-transform: none; font-size: 1em; font-family: arial; margin: 0px 3px 0px 4px !important; display:none !important;}
.pageActions li.delicious a {padding: 0px 0px 0px 19px; color: #680302;}
.pageActions li.facebook {background: url('/graphics/facebook.gif') no-repeat left !important; text-transform:uppercase; font-size: 1em; font-family: arial; margin: 0px 3px 0px 4px !important;}
.pageActions li.facebook a {padding: 0px 0px 0px 19px; color: #680302;}
.pageActions li.twitter {background: url('/graphics/tweet.png') no-repeat left !important; text-transform: none; font-size: 1em; font-family: arial; margin: 0px 3px 0px 10px !important; line-height:10px !important;}
.pageActions li.twitter a {padding: 0px 0px 0px 22px; color: #680302;}
.pageActions li.twitterf {background: url('/graphics/tweet_fr.png') no-repeat bottom left !important; text-transform: none; font-size: 1em; font-family: arial; margin: 0px 3px 0px 10px !important; line-height:8px !important;}
.pageActions li.twitterf a {padding: 0px 0px 0px 22px; color: #680302;}

/*EDU recipe resource CSS*/ 
#nutri-info {width:160px; margin: 10px 0 10px 0; border: 1px solid #CCCCCC; color: #333333; font-family: Verdana, sans-serif; font-size: small; padding:10px;float:left; clear:none;} 
#nutri-info {font-size: 80%; margin:4px 0 4px 0;} 
#nutri-info ul {clear:right; border-top: 1px solid #000000;;border-bottom: 2px solid #000000;  margin: 10px 0 10px 0px; padding: 0; }
#nutri-info ul li {border-bottom: 1px solid #000000;  padding: 8px 0 8px 0; line-height: 100%; margin:0;background:none;} 
.dailyValueRight{float:right;}
#nutri-info #nutriiinfoUL .indentNuri{padding-left:10px;}
/* LEFTNAV OVERRIDES */

	#tabtitle {margin-right:11px;cursor:pointer;}
	.collapsed, .exploregov {background:url('/graphics/edu/arrowwhite_right.gif') right no-repeat;}
	.buttonarrow {background:url('/graphics/edu/arrow_right.gif') right no-repeat;}
	.bluearrow {background:url('/graphics/edu/arrow_right.gif') right no-repeat;}
	.expandblue {background:url('/graphics/edu/arrow_down.gif') right no-repeat !important;}
	.expanded {background:url('/graphics/edu/arrowwhite_down.gif') right no-repeat !important;}
	
/* BOOKMARK OVERRIDES */
.bookmarks {width:980px;float:left !important;}
.bookmarks ul {float:right !important;}