/* --------------------------------------------------------------   
                    INI CSS Framework
-------------------------------------------------------------- */

/* --------------------------------------------------------------   
 = Eric Meyer's Reset for cross-browser presentation
-------------------------------------------------------------- */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 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-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
	cursor: default;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* --------------------------------------------------------------   
 = Basic Styles
-------------------------------------------------------------- */
body {
	font: 100% arial, helvetica, sans-serif;
	background: #f8f4e9;
	text-align: center; /* this centers the container in ie 5* browsers. the text is then set to the left aligned default in the #container selector */
}
p {
	margin: 0.3em 0 0.5em 0;
	font-size: 1em;
	line-height: 1.3em;
}
h1 {
	font-size: 1.5em;
	font-weight: normal;
}
h2 {
	font-size: 1.25em;
	font-weight: normal;
}
h3 {
	font-size: 1em;
	font-weight: bold;
	line-height: 2em;
}
h4 {
	font-size: 0.75em;
	font-weight: bold;
}
hr {
	color: #ffe188;
	background-color: #ffe188;
	height: 2px;
	border: none;
}
.hide, .noncss {
	position: absolute;
	left: -1000em;
	width: 20em;
}
/* -------------------------------------------------------------- 
 = Universal Classes 
-------------------------------------------------------------- */
strong, .bold {
	font-weight:700
}
em, .italic {
	font-style:italic;
	font-weight:normal;
}
small, .small {
	font-size:0.8em;
	margin:0
}
img {
	display: block
}
.left {
	text-align:left
}
.right {
	text-align:right
}
.justify {
	text-align:justify
}
.margin-zero {
	margin:0
}
.centre {
	width:auto;
	margin:0 auto;
	padding:0;
	text-align:center;
}
.center {
	width:auto;
	margin:0 auto;
	padding:0;
	text-align:center;
}
.float-left {
	width:auto;
	margin:0;
	padding:0;
	float:left
}
.float-right {
	width:auto;
	float:right
}
/* this class can be used to float an element right in your page. the floated element must precede the element it should be next to on the page. */

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
ul.bullet {
	margin:1em;
	padding-left:1em;
	list-style:disc
}
ul.bullet li {
	padding:0.3em;
}

/* --------------------------------------------------------------   
 = Core Styles
-------------------------------------------------------------- */
/* Tips for mainContent:
1. The space between the content and sidebar is created with the left margin on the content div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this left margin if you want the content div's text to fill the #sidebar space when the content in #sidebar ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the content div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the content div. You should be aware of this limitation - especially if the client is adding content with Contribute.
*/

#two-col #container, #one-col #container {
	width: 96%;
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 41em;
	max-width: 60em; 
}
#two-col #header, #one-col #header {
	height:4.69em;
	background: #fff;
	border-bottom: 1px solid #ccc;
	padding: 0;
	position:relative;
	z-index:1;
}
#two-col #header img, #one-col #header img {
	height:4.69em;
	position:relative;
	z-index:2;
}
#two-col #header a, #one-col #header a {
	cursor: default;
}
#title {
	width: auto;
	margin: -6em 0 0 0;
	font-family: "Myriad Pro", Myriad, Arial, Helvetica, sans-serif;
	text-align:right;
	position:absolute;
	right:0em;
	z-index:9;
}
/* Tips for sidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar p" rule.
*/

#two-col #sidebar {
	float: left;
	width: 11em; /* since this element is floated, a width must be given */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0.3em 0; /* top and bottom padding create visual space within this div */
}
#two-col #sidebar p {
	margin-left: 0.5em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0;
}
#two-col #content {
	margin: 0 1em 0 12em; /* the right margin can be given in percentages or pixels. it creates the space down the right side of the page. */
	padding: 1em 0; /* top and bottom padding create visual space within this div */
	position:relative;
	z-index:3;
}
#two-col #footer, #one-col #footer {
	min-height: 1em;
	padding: 0.5em 0.5em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff url(images/footer.jpg) no-repeat 100% 0;
	text-align:right;	border-top: 1px solid #e5e5e5;
}
#two-col #footer p, #one-col #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:0.7em;
}
#one-col #sidebar {
	display:none;
}
#one-col #content {
	margin: 0 1em;
	padding: 1em 0;
	position:relative;
	z-index:3;
}
#content {
	margin: 1em 0 0 0;
	border-top: 1px solid #e5e5e5;
	padding: 0;
}
#one-col #content, #two-col #content {
	padding: 0em 0;
}
/* -------------------------------------------------------------- 
 = LINKS
-------------------------------------------------------------- */
a:link {
	color: #0000ff;
	text-decoration: none;
}
a:active {
	color: #008000;
	text-decoration: underline;
}
a:visited {
	color: #2b31b3; 	/* #b51032; */
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: none;
}
.bak2top {
	font-size:0.7em;
	float:right;
}
p.copy {
	font-size:0.7em;
	color:#777;
	float:left;
}
/* -------------------------------------------------------------- 
 = Side Navigation
-------------------------------------------------------------- */
.sidenav {
	display:block;
	width:auto;
}
.sidenav ul {
	margin: 0 0 2em 0.3em;
	padding: 0;
	background: url(images/nav/bg-nav-primary.gif) no-repeat 100% 0;
}
.sidenav li {
	list-style-type: none;
}
.sidenav a {
	display:block;
	height:1.5em;
	border-top:1px solid #ddd;
	border-left:5px solid #eee;
	font-size:0.8em;
	text-decoration:none;
	padding:0.5em;
	padding-left:0.7em;
	color:#333;
}
.sidenav a:hover {
	color:#000;
	background-color:#f5f5f5;
	padding-left:0.7em;
	border-bottom: 0px; 
}
.sidenav a.selected {
	color:#000;
	background-color:#fff;
	border-color:#333;
}
.sidenav a.group1:hover {
	border-color:#fbc251;
	border-top:1px solid #fbc251;
}
.sidenav a.group1selected {
	color:#000;
	background-color:#fff;
	border-color:#fbc251;
	border-top:1px solid #fbc251;
}
.sidenav a.group2:hover {
	border-color:#249bf4;
	border-top:1px solid #249bf4;
}
.sidenav a.group2selected {
	color:#000;
	background-color:#fff;
	border-color:#249bf4;
	border-top:1px solid #249bf4;
}
.sidenav a.group3:hover {
	border-color:#b51032;
	border-top:1px solid #b51032;
}
.sidenav a.group3selected {
	color:#000;
	background-color:#fff;
	border-color:#b51032;
	border-top:1px solid #b51032;
}

/* ----- Colour Pallette 
Blue:#06f;
light blue:70baf2
Navy Blue:23407e
Original:#ffe188
selected red? : ED9F9F
border-top:1px solid #ddd;
*/

.section-nav {
	width:auto;
	float:right;
}
.section-nav li {
	margin:0 0 0 1em;
}
.section-nav a {
	border-top:0px solid #ddd;
	border-right:1px solid transparent;
	border-bottom:1px solid #ddd;
	border-left:5px solid #eee; 
}
.section-nav a:hover {
	border-top:0px solid #ddd;
	border-right:1px solid #bbb;
	border-bottom:1px solid #ddd;
	border-left:5px solid #ffef99;
}


/* -------------------------------------------------------------- 
 = Navigation (Breadcrumb)
-------------------------------------------------------------- */
#nav {
	margin:0 1.1em;
	font-size:0.8em;
}
/* -------------------------------------------------------------- 
 = Search
-------------------------------------------------------------- */
.SeminarSearchForm p {
	text-align:center;
}
.SeminarSearchForm label {
	font-size:0.8em;
}
.SeminarSearchForm input#SearchText {
	color:#4d4d4f;
	font: 0.9em "trebuchet ms", verdana, sans-serif;
}
/* -------------------------------------------------------------- 
 = Images
-------------------------------------------------------------- */
#banner {
	width: 100%;
	overflow: hidden;
	margin:0 0 0em 0;
}
div#content p img {
	float: right;
	border: 0.2em solid #e5e5e5;
	margin-left: 1.5em;
	margin-bottom: 1.125em;
	display: inline;
}
div#content p img.aleft {
	float: left;
	margin-top: 0.5em;
	margin-left: 0;
	margin-right: 1.5em;
	margin-bottom: 1.125em;
}
div#content p img.icon {
	margin:0 0.2em 0 0.6em;
	border:none;
	float:none;
	display: inline;
	vertical-align: middle;
}
/* -------------------------------------------------------------- 
 = Form TEST
-------------------------------------------------------------- */
form {
	width:auto
}
form fieldset {
	margin:0;
	border: 0px solid #333;
	padding:0 0 1em 0;
}
form fieldset legend {
	margin: 0em;
	padding: 0.5em 0;
	font-family: 'myriad pro', arial, sans-serif;
	text-align:left;
}
form fieldset ol {
	margin: 0 0 0 0.5em;
}
form fieldset ol li {
	margin: 0;
	padding: 0.5em 0 0 0;
	clear:left;
}
form fieldset label {
	margin: 0 1em 0 0;
	width:8em;
	float:left;
	text-align:right;
}
input, select, textarea {
	margin:0;
	padding:0;
	display:inline;
	font: normal 0.9em arial, sans-serif;
	overflow:auto;
}
form fieldset select {width:20em}
form fieldset.align-left label {width:auto;float:none;text-align:left;}
form fieldset.align-left input {clear:both;float:left}
