/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
/*Set initial font styles*/
@font-face {
	font-family: 'intern';
	src: url('/fonts/AvantGarde-BookTh.eot');
	src: local('AvantGarde-Book Th'), url('/fonts/AvantGarde-BookTh.woff') format('woff'), url('/fonts/AvantGarde-BookTh.ttf') format('truetype'), url('/fonts/AvantGarde-BookTh.svg') format('svg');

}

body {
	text-align: left;
	/*font-family: Geneva, Arial, Helvetica, sans-serif;*/
        font-family: 'intern', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.3;
        letter-spacing: 0.07em;
        font-weight: lighter;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 1em;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
a, a:link a:active {
/* set all links to have underline */
	text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
/* this is a bluish color, you change this for all default link colors */
	color: #ffff99;
}
a:visited {
/* keeps the underline */
	text-decoration: underline;
	/*background-color: inherit;*/
/* a different color is used for visited links */
	color: #ffff99;
}
a:hover {
/* remove underline on hover */
	text-decoration: underline;
	/*background-color: inherit;*/
/* using a different color makes the hover obvious */
	color: #ffff99;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
      background-color: #003334;
/* default text color for entire site*/
	color: #ffffff;
}
div#pagewrapper {
/* min max width, IE wont understand these, so we will use java script magic in the <head> */
	max-width: 930px;
	min-width: 930px;
/* now that width is set this centers wrapper */
	margin: 0 auto;
}

div#content {
/* some air above and under menu and content */
        margin-top: 1.5em;
	padding: 0px;
}
div#sidebar{
        float:left;
        width: 260px;
        padding: 0px;
        margin:0px;
        border:0;
}

div#main {
        float:right;
        padding-top: 0px;
        width: 660px;
        border:0;
}

/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted black;
	margin: 1em;
}


/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
 width:100%;
 margin: 0;
 margin-top:50px;
 padding: 0;
 color: #eacbb6;
 font-size:22px;
 border:0px;
}
div#header p{
 margin: 0px;
 padding:0px;
 line-height: 1.3;
}
div#header hr {
 clear: both;
 border-top: dotted 3px #eacbb6;
 border-width: 3px 0 0 0; 
 margin: 0px;
 padding 0px;
 height: 0px;
}


/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
div#maintitle{
        width:100%;
        height:40px;
        border:0;
}
div#content h2 {
	color: #ffffff;
/* font size for h2 the higher the h number the smaller the font size, most times */
        margin-top:8px;
	font-size: 18px;
	text-align: left;
        font-weight: lighter;
}
div#content h3 {
	color: #ffffff;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
	color: #ffffff;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
	color: #294B5F;
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
h6 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
	font-size: 1.0em;
	line-height: 1.4em;
	margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */
/* Stylesheet: theme // Left sidebar + 1 column Modified On 2015-01-08 22:33:37 */
/******************** MENU *********************/
#menu_vert {
	margin: 0;
	padding: 0;
}
#menu_vert ul {
/* remove any bullets */
	list-style: none;
/* margin/padding set in li */
	margin: 0px;
	padding: 0px;
        margin-left:-20px;
}
#menu_vert ul ul {
	margin: 0;
/* padding right sets second level li in on right from first li */
	padding: 0px 5px 0px 0px;
}
#menu_vert li {
/* remove any bullets */
	list-style: none;
/* negative bottom margin pulls them together, images look like one border between */
        margin: 0px;
/* bottom padding pushes "a" up enough to show our image */
	padding: 0px;
        border:0;
        text-align:left;
}
#menu_vert li.currentpage {
	padding: 0px;
}
#menu_vert li.menuactive {
	margin: 0;
	padding: 0px;
/* replaced by image in ul ul */
	background: none;
}
#menu_vert li.menuactive ul {
	margin: 0;
}
#menu_vert li.activeparent {
	margin: 0;
	padding: 0px;
}
/* fix stupid IE6 bug with display:block; */
* html #menu_vert li {
	/*height: 40px;*/
}
* html #menu_vert li a {
	/*height: 40px;*/
}
* html #menu_vert li hr {
	/*height: 40px;*/
}
/** end fix **/
/* first level links */
div#menu_vert a {
/* IE6 has problems with this, fixed above */
	display: block;
/* some air for it */

	/*padding: 0.8em 0.3em 0.5em 1.5em;*/
	padding: 0.8em 0.3em 0.0em 1.5em;

/* this will be link color for all levels */
	color: #679a9b;
        font-family: Geneva, Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: normal;
/* Fixes IE7 whitespace bug */
	min-height: 1em;
/* no underline for links */
	text-decoration: none;
}
/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
	font-size:14px;
        font-family: Geneva, Arial, Helvetica, sans-serif;
	/*padding: 0.8em 0.3em 0.5em 2.8em;*/
        padding: 0.3em 0.3em 0.0em 2.8em;
}
/* third level links, more padding */
div#menu_vert ul ul ul a {
/*	padding: 0.5em 0.3em 0.3em 3em;*/
        padding: 0.8em 0.3em 0.0em 3em;
}
/* hover state for all links */
div#menu_vert a:hover {
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}
div#menu_vert a.activeparent:hover {
	color: #ffffff;
}
/* active parent, that is the first level parent of a child page that is the current page */
div#menu_vert li.activeparent {
	color: #ffffff;
}
div#menu_vert li.activeparent a.activeparent {
/* to contrast with background image */
	color: #ffffff;
}
div#menu_vert li a.parent {
/* takes left padding out so span image has room on left */
	padding-left: 0em;
}
div#menu_vert ul ul li a.parent {
/* increased padding on left offsets it from one above */
	padding-left: 0.9em;
}
div#menu_vert li a.parent span {
	display: block;
	margin: 0;
/* adds left padding taken out of "a.parent" */
	padding-left: 1.5em;
}
div#menu_vert li a.parent:hover {
/* removes underline hover effect */
	text-decoration: none;
}
div#menu_vert li a.parent:hover span {
	display: block;
	margin: 0;
	padding-left: 1.5em;
}
div#menu_vert li a.menuactive.menuparent {
/* sets it in a little more than a.parent */
	/*padding-left: 0.35em;*/
        color: #ffffff;
}

div#menu_vert li a.menuactive {
        color: #ffffff;
}

div#menu_vert ul ul li a.menuactive.menuparent {
/* sets it in a little more on next level */
	padding-left: 0.99em;
}
div#menu_vert li a.menuactive.menuparent span {
	display: block;
	margin: 0;
/* to contrast with non active pages */
	font-weight: normal;
	padding-left: 1.5em;
}
div#menu_vert li a.menuactive.menuparent:hover {
	text-decoration: none;
	color: #ffffff;
}
div#menu_vert ul ul li a.activeparent {
	color: #fff;
}
/* current pages in the default Menu Manager template are unclickable. This is for current page on first level */
div#menu_vert ul h3 {
	display: block;
/* some air for it */
	padding: 0.8em 0.5em 0.5em 1.5em;
/* this will be link color for all levels */
	color: #000;
/* instead of the normal font size for <h3> */
	font-size: 1em;
/* as <h3> normally has some margin by default */
	margin: 0;
/* you can set your own image here, same as "a" */
	background: transparent url(/uploads/theme/libk.gif) no-repeat right top;
}
/* next level current pages, more padding, smaller font and no background color or bottom border */
div#menu_vert ul ul h3 {
	font-size: 90%;
	padding: 0.8em 0.5em 0.5em 2.8em;
/* you can set your own image here, same as "a" */
	background: transparent url(/uploads/theme/libk.gif) no-repeat right top;
	color: #000;
}
/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
	padding: 0.6em 0.5em 0.2em 3em;
}
/* BIG NOTE: I didn't do anything to these, never tested */
/* section header */
div#menu_vert li.sectionheader {
	border-right: none;
	padding: 0.8em 0.5em 0.5em 1.5em;
	background: transparent url(/uploads/theme/libk.gif) no-repeat right top;
	line-height: 1em;
	margin: 0;
        color: #18507C;
        cursor:text;
}
/* separator */
div#menu_vert .separator {
	height: 1px !important;
	margin-top: -1px;
	margin-bottom: 0;
	-padding: 2px 0 2px 0;
	background-color: #000;
	overflow: hidden !important;
	line-height: 1px !important;
	font-size: 1px;
/* for ie */
}
div#menu_vert li.separator hr {
	display: none;
/* this is for accessibility */
}
/* Stylesheet: theme // Simple - Vertical Modified On 2014-12-14 13:36:06 */
div#news {
/* margin for the entire div surrounding the news items */
	margin: 2em 0 1em 1em;
/* border set here */
	border: 1px solid #909799;
/* sets it off from surroundings */
	background: #f5f5f5;
}
div#news h2 {
	line-height: 2em;
/* you can set your own image here */
	background: url(/uploads/theme/darknav.png) repeat-x left center;
	color: #f5f5f5;
	border: none
}
.NewsSummary {
/* padding for the news article summary */
	padding: 0.5em 0.5em 1em;
/* margin to the bottom of the news article summary */
	margin: 0 0.5em 1em 0.5em;
	border-bottom: 1px solid #ccc;
}
.NewsSummaryPostdate {
/* smaller than default text size */
	font-size: 90%;
/* bold to set it off from text */
	font-weight: bold;
}
.NewsSummaryLink {
/* bold to set it off from text */
	font-weight: bold;
/* little more room at top */
	padding-top: 0.2em;
}
.NewsSummaryCategory {
/* italic to set it off from text */
	font-style: italic;
	margin: 5px 0;
}
.NewsSummaryAuthor {
/* italic to set it off from text */
	font-style: italic;
	padding-bottom: 0.5em;
}
.NewsSummarySummary, .NewsSummaryContent {
/* larger than default text */
	line-height: 140%;
}
.NewsSummaryMorelink {
	padding-top: 0.5em;
}
#NewsPostDetailDate {
/* smaller text */
	font-size: 90%;
	margin-bottom: 5px;
/* bold to set it off from text */
	font-weight: bold;
}
#NewsPostDetailSummary {
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailCategory {
/* italic to set it off from text */
	font-style: italic;
	border-top: 1px solid #ccc;
	margin-top: 0.5em;
	padding: 0.2em 0;
}
#NewsPostDetailContent {
	margin-bottom: 15px;
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailAuthor {
	padding-bottom: 1.5em;
/* italic to set it off from text */
	font-style: italic;
}
/* more divs, left unstyled, just so you know the IDs of them */ 
#NewsPostDetailTitle {
}
#NewsPostDetailHorizRule {
}
#NewsPostDetailPrintLink {
}
#NewsPostDetailReturnLink {
}
div#news ul li {
	padding: 2px 2px 2px 5px;
	margin-left: 20px;
}
/* Stylesheet: theme // News Modified On 2014-12-13 16:34:48 */
