/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
/*.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}*/
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(https://danielerlander.com/images/cms/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(https://danielerlander.com/images/cms/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(https://danielerlander.com/images/cms/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2011-11-21 17:53:33 */
/* 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;
}

body  {
        font-family: font-family: 'Ubuntu Condensed', sans-serif;
	margin: 0 0 0 0;
	padding: 0;
	text-align: ; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	font-size: 100%;
	line-height: 1em;
        color: #cccccc;
}


/*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: underline;
/* 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: #18507C;
}


a:visited {
/* keeps the underline */
	text-decoration: underline;
	background-color: inherit;
/* a different color is used for visited links */
	color: #18507C;
}


a:hover {
/* remove underline on hover */
	text-decoration: none;
	background-color: inherit;
/* using a different color makes the hover obvious */
	color: #385C72;
}

/*****************basic layout *****************/



body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: #333;
/* you can set your own image and background color here */
	background: #ffff99 url(https://danielerlander.com/uploads/images/riverback.gif) repeat-x left 168px;
}


div#pagewrapper { 
	width: 900px;  
	background: #ffff99;
	margin: 25px auto 5px 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. */
} 

div#header { 
	/* adjust according your image size */
	height: 187px;
	margin: 0;
	padding: 0;
/* you can set your own image here, will go behind h1 a image */
	background: #f4f4f4 url(https://danielerlander.com/uploads/images/homebanner.gif) no-repeat left top;
/* border just the bottom */
	border-bottom: 0px solid #D9E2E6;
} 

div#emailsignlink
         {
                 display: block;
                 height: 150px;
                 width: 158px;
                 background-image: url(https://danielerlander.com/uploads/images/emailsign.gif) no-repeat 0px 20px;
         }

div#header h1 a {
/* you can set your own image here */
	background: url(https://danielerlander.com/uploads/images/emailsign.gif) no-repeat 0px 20px;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
width: 158px;	
height: 150px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	
}
div#header h2 {
/* this is where the site name is */
	float: right;
	line-height: 1.2em;
/* this keeps IE6 from not showing the whole text */
	font-size: 1.5em;
/* keeps the size uniform */
	margin: 35px 65px 0px 0px;
/* adjust according your text size */
	color: #f4f4f4;
}

div#content {
/* some air above and under menu and content */
	margin: 1em auto 1em 0;
	padding: 0px;
       background: #ffff99;
}



div#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFF99;
	padding: 0px 0px 15px 0px; /* padding keeps the content of the div away from the edges */
}


div#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 127px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #cfc292; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}


div#mainContent { 
	margin: 0 20px 0 170px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
       border: 1px solid #000;
        background: #ffffff;
       min-height: 400px;
overflow: hidden;
min-width: 685px;
} 


div#homebox{
float: right;
clear: none;
width: 250px;
border: 1px solid #000;
padding: 0px;
margin-right: 10px;
margin-left: 10px;
margin-bottom: 10px;
background: #ffff99;
-moz-box-shadow: 5px 5px 2px #634f33;
-webkit-box-shadow: 5px 5px 2px #634f33;
box-shadow: 5px 5px 2px #634f33;
}

div#homeboxcontent {
padding: 5px;
margin-top: 10px;
}

div#embed_signup {
font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
        text-align: left;
}


div#footer { 
        margin-left: 180px;
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: none;
} 


div#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: 10px auto 10px auto; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        text-align: center;
        font-size: 80%;
}

div#search {
	width: 290px;
	height: 28px;
	margin-top: 31px;
	margin-right: 20px;
}
div#search label {
	text-indent: -9999em;
	height: 0pt;
	width: 0pt;
	display: none;
}
div#search input.search-input {
/* specific size for image, your image may need these adjusted */
	width: 143px;
	height: 15px;
/* removes default borders, allows use of image */
	border-left: 1px solid #000;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;

/* text color */
	color: #999;
/* padding of text */
	padding: 7px 0px 4px 10px;
	float: left;
/* set all font properties at once, weight, size, family */
	font: bold 0.9em Georgia, Palatino, serif;
/* left input image, set your own here */
	background: #fff;
        
}
div#search input.search-button {
/* specific size for image, your image may need these adjusted */
	width: 75px;
	height: 28px;
/* removes default borders, allows use of image */
	border-style: none;
/* hides text, image has text */
	text-indent: -9999em;
	float: left;
	margin: 0;
/* provides positive hover effect */
	cursor: pointer;
/* removes default size/height */
	font-size: 0px;
	line-height: 0px;
/* submit button image, set your own here */
	background: url(https://danielerlander.com/uploads/images/search_button.gif) no-repeat left top;
}


.fltrt { /* 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. */
	float: right;
	margin-left: 8px;
}


.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}


.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;
}

/* 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;
}

hr 
{border: none 0;
border-top: 1px dotted #000;/*the border*/
width: 100%;
height: 1px;/*whatever the total width of the border-top and border-bottom equal*/
padding-bottom: 5px;
} 


.showtimeright {
     float: right;
    /* -moz-border-radius: 8px 8px 8px 8px;*/
     width: 345px;
    /* background-color: #7f8ea2;*/
     border: 1px solid #003794;

     margin-left: 15px;
     margin-bottom: 10px;
    
}

.avtable {border-width: 1px;
	border-spacing: 3px;
	border-style: solid;
	border-color: black;
	border-collapse: collapse; 
        width:100%; 
        vertical-align:middle;}
.avtable tr {border:1px dotted black; }
.avtable thead {border:1px solid black; font-weight: bold; text-transform:uppercase;
border-width: 1px;
	padding: 3px;
	border-style: solid;
	border-color: black;
        background-color: #dddddd;
        }
.avtable td {background-color: #cfc292; 
	padding: 3px;
	}

.formbuilderform td {padding: 3px}

div.category_item  
{padding: 30px; background: #ccc;}


td.category_item {padding: 30px; background: #ccc;}
div.category_items {padding: 30px; background: #ccc;}
td.category_items {padding: 30px; background: #ccc;}


/********************CONTENT STYLING*********************/
/* HEADINGS */

p {
        font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
        text-align: left;
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
        color: #565a5b;
}



h1 {
/* font size for h1 */
      color: #1a9ac9;
       font-family: 'Chivo', sans-serif;
       font-size: 2em;
	line-height: 1em;
	margin: 0 0 0.5em 0;
        font-weight: 900;
}
h2 {
	color: #758291;
       font-family: 'Chivo', sans-serif;
/* font size for h2 the higher the h number the smaller the font size, most times */
	font-size: 1.5em;
	text-align: left;
/* some air around the text */
	padding-bottom: 0px;
/* a larder than h1 line height */
	line-height: 1.2em;
/* and some air under the border */
	margin: 0 0 0.2em 0;
        font-weight: 900;
}
h3 {
         color: #333;
       font-family: 'Chivo', sans-serif;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
 font-weight: 900;
}
h4 {
        color: #333;
       font-family: 'Chivo', sans-serif;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
 font-weight: 900;
}
h5 {
	color: #333;
       font-family: 'Chivo', sans-serif;
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
 font-weight: 900;
}
h6 {
	color: #294B5F;
       font-family: 'Chivo', sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
 font-weight: 900;
}
/* END HEADINGS */
/* TEXT */

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 */
 ul,
 ol,
 dl {
	font-size: 1.2em;
     color: #565a5b;
font-family: 'Ubuntu Condensed', sans-serif;
	line-height: 1.4em;
	margin: 0 0 1.5em 0;
}
 ul li,
 ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
 dl dd {
	margin: 0 0 1em 1em;
}






/* END LISTS */

--> 
</style>
/* Stylesheet: erlander stylesheet Modified On 2011-11-21 22:54:43 */
div#news {
/* margin for the entire div surrounding the news items */
	margin: 2em 0 1em .5em;
/* border set here */
	border: 1px solid #909799;
/* sets it off from surroundings */
	background: #f5f5f5;
}

div# news p {
 font-size: .9em;
        font-family: 'Ubuntu Condensed', sans-serif;
        text-align: left;
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
        color: #565a5b;
}

div#news h2 {
	line-height: 2em;
/* you can set your own image here */
	background: url(https://danielerlander.com/uploads/ngrey/darknav.png) repeat-x left center;
	color: #f5f5f5;
	border: none
}
.NewsSummary {
/* padding for the news article summary */
	padding: 0.2em .5em .5em .2em;
/* margin to the bottom of the news article summary */
	margin: 0 0.5em 0em 0em;
	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;
font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
        text-align: left;
	margin: 0 0 .5em 0;
	line-height: 1.4em;
        color: #565a5b;
}
.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 */
	
 font-size: .9em;
        font-family: 'Ubuntu Condensed', sans-serif;
        text-align: left;
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
        color: #565a5b;
}
.NewsSummaryMorelink {
	padding-top: 0.2em;
font-family: 'Ubuntu Condensed', sans-serif;
font-size: .9em;
}
#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%;
         font-size: .9em;
}
#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: Module: News Modified On 2011-11-21 21:18:23 */
/* Vertical menu for the CMS CSS Menu Module */
/* by Alexander Endresen and mark and Nuno */
/* The wrapper determines the width of the menu elements */
#menuwrapper {
/* just smaller than it's containing div */
        font-size: 85%;
	width: 95%;
	margin-left: 0px;
/* room at bottom */
	margin-bottom: 10px;
}
/* Unless you know what you do, do not touch this */
#primary-nav, #primary-nav ul {
/* remove any default bullets */
	list-style: none;
	margin: 0px;
	padding: 0px;
/* make sure it fills out */
	width: 100%;
/* just a little bump */
	margin-left: 1px;
}
#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* just a little bump down for second level ul */
	top: 5px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* keeps it hidden till hover event */
	display: none;
        
}
#primary-nav ul ul {
/* no bump down for third level ul */
	top: 0px;
}
#primary-nav li {
/* negative bottom margin pulls them together, images look like one border between */
	margin-bottom: -1px;
/* keeps within it's container */
	position: relative;
/* bottom padding pushes "a" up enough to show our image */
	padding: 0px 0px 4px 0px;
        margin-left: -45px;
/* you can set your own image here */
	/*background: url(https://danielerlander.com/uploads/ngrey/liup.gif) no-repeat right bottom;*/
}
#primary-nav li li {
/* you can set your width here, if no width or set auto it will only be as wide as the text in it  */
	width: 270px;
	padding: 0px;
/* removes first level li image */
	background-image: none;
}
/* Styling the basic apperance of the menu "a" elements */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: .9em;
        text-align: right;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #595959;
/* pushes li out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 0.2em 0.5em 0.2em 0.5em;
/* makes it hold a shape */
	display: block;
/* removes underline from default link setting */
	text-decoration: none;
/* you can set your own image here this is tall enough to cover text heavy links */
	/*background: url(https://danielerlander.com/uploads/ngrey/libk.gif) no-repeat right top;*/
}
ul#primary-nav a span {
/* makes it hold a shape */
	display: block;
/* pushes text to right */
	padding-left: 1.5em;
}
ul#primary-nav li a:hover {
/* stops image flicker in some browsers */
	/*background: url(https://danielerlander.com/uploads/ngrey/libk.gif) no-repeat right top;*/
/* changes text color on hover */
	color: #13769a;
}
ul#primary-nav li li a:hover {
/* you can set your own image here, second level "a" */
	/*background:  url(https://danielerlander.com/uploads/ngrey/darknav.png) repeat-x left center;*/
/* contrast color to image behind it */
	color: #13769a;
}
ul#primary-nav li a.menuactive {
/* black and bold to set it off from non active */
	color: #3aa3ba;
	font-weight: bold;
}
ul#primary-nav li li a.menuactive {
/* contrast color to image behind it, set below */
	color: #3aa3ba;
/* not bold as text color and image behind it set it off from non active */
	font-weight: normal;
}
ul#primary-nav li ul a {
/* insures alignment */
	text-align: right;
	margin: 0px;
/* relative to it's container */
	position: relative;
/* more padding to left than default */
	padding: 6px 5px 6px 15px;
	font-weight: normal;
/* darker than first level "a" */
	color: #000;
/* removes any borders that may have been set in first level */
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
/* removes image set in first level "a" */
	background: none;
}
ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
	background: #F3F5F5;
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #374B51;
	/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.95;
/* CSS 3 */
}
/* Fixes IE7 bug */
#primary-nav li, #primary-nav li.menuparent {
	min-height: 1em;
}
/* Styling the basic apperance of the second level active page elements (shows what page in the menu is being displayed) */
#primary-nav li li.menuactive, #primary-nav li.menuactive.menuparenth li.menuactive {
/* set your image here, dark grey image with white text set above*/
	/*background:  url(https://danielerlander.com/uploads/ngrey/darknav.png) repeat-x left center;*/
}
#primary-nav li.menuparent span {
/* padding on left for image */
	padding-right: 1em;
/* down arrow to note it has children, left side of text */
	background: url(https://danielerlander.com/uploads/ngrey/active.png) no-repeat right center;
}
#primary-nav li.menuparent:hover li.menuparent span {
/* remove left padding as image is on right side of text */
	padding-left: 0;
/* right arrow to note it has children, right side of text */
	/*background: url(https://danielerlander.com/uploads/ngrey/parent.png) no-repeat right center;*/
}
#primary-nav li.menuparenth li.menuparent span,
#primary-nav li.menuparenth li.menuparenth span {
/* same as above but this is for IE6, gif image as it can't handle transparent png */
	padding-left: 0;
	/*background: url(https://danielerlander.com/uploads/ngrey/parent.gif) no-repeat right center;*/
}
#primary-nav li.menuparenth span,
#primary-nav li.menuparent:hover span,
#primary-nav li.menuparent.menuactive span,
#primary-nav li.menuparent.menuactiveh span, {
/* right arrow to note hover */
	/*background: url(https://danielerlander.com/uploads/ngrey/parent.png) no-repeat left center;*/
}
#primary-nav li li span,
#primary-nav li.menuparent li span,
#primary-nav li.menuparent:hover li span,
#primary-nav li.menuparenth li span,
#primary-nav li.menuparenth li.menuparenth li span,
#primary-nav li.menuparent li.menuparent li span,
#primary-nav li.menuparent li.menuparent:hover li span  {
/* removes any images set above unless it's a parent or active parent */
	background:  none;
/* removes padding that is used for arrows */
	padding-left: 0px;
}
/* IE6 flicker fix */
#primary-nav li.menuh,
#primary-nav li.mnuparenth,
#primary-nav li.mnuactiveh {
	/*background: url(https://danielerlander.com/uploads/ngrey/libk.gif) no-repeat right top;*/
	color: #899092
}
#primary-nav li:hover li a {
/* removes any images set above unless it's a parent or active parent */
	background:  none;
	color: #000;
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE Hack, will cause the css to not validate */
#primary-nav li,
#primary-nav li.menuparenth {
	_float: left;
	_height: 1%;
}
#primary-nav li a {
	_height: 1%;
}
/* BIG NOTE: I didn't do anything to these 2, never tested */
#primary-nav li.sectionheader {
	border-left: 1px solid #006699;
	border-top: 1px solid #006699;
	font-size: 130%;
	font-weight: bold;
	padding: 1.5em 0 0.8em 0.5em;
	background-color: #fff;
	margin: 0;
	width: 100%;
}
/* separator */
#primary-nav li hr.separator {
	display: block;
	height: 0.5em;
	color: #abb0b6;
	background-color: #abb0b6;
	width: 100%;
	border: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid #006699;
	border-right: 1px solid #006699;
}
/* Stylesheet: Navigation: Erlander CSSMenu - Vertical Modified On 2011-11-23 22:46:03 */
.contactform{
	width: 100%;
}
.contactform fieldset {
	border: 1px solid #49549f;
	padding: 12px;
}

.contactform fieldset legend {
	font-weight: bold;
	padding: 8px 8px 8px 8px;
        margin-bottom: 10px;
	border:1px solid #49549f;
	color:#49549f;
	font-size:16px;
	text-align:right;
	background: #d4dfe6 ;
font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
}

.contactform fieldset .CMSMStextfield label {
width: 12em;
float: left;
text-align: right;
margin-right: 0.5em;
display: block
font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
}
.contactform div {
padding: 0.25em 0 0.25em 0;
}
.contactform div:hover {
	background: #c0c6eb;
}
.contactform .CMSMStextfield input {
	color: #000000;
	background: #e2eef5;
	border: 1px solid #49549f;
	width: 250px;
}
.contactform div.required {
color: #CC0000;
}
.contactform fieldset .CMSMStextarea label {
width: 12em;
float: left;
text-align: right;
margin-right: 0.5em;
display: block
font-size: 1.2em;
        font-family: 'Ubuntu Condensed', sans-serif;
}
.contactform .CMSMStextarea textarea {
	color: #000000;
	background: #e2eef5;
	border: 1px solid #49549f;
	width: 250px;
font-size: 1em;
        font-family: 'Ubuntu Condensed', sans-serif;
}
.contactform textarea:focus {
	background: #FFFFFF;
}
.contactform .captcha {
	padding-left: 10px;
font-size: 1em;
        font-family: 'Ubuntu Condensed', sans-serif;
}
.contactform .captchapict {
	display: block;
	margin: 10px 10px 10px 0px;
}
.contactform .captcha input {
	color: #000000;
	background: #e2eef5;
	border: 1px solid #49549f;
	width: 195px;
	margin: 5px 5px 5px 0px;
}
.contactform input:focus {
	background: #FFFFFF;
}
.contactform .submit {
	padding-left: 10px;
}
.contactformR {
	width: 100%;
}
.contactformR fieldset {
	border: 1px solid #49549f;
	padding: 12px;
}

.contactformR fieldset legend {
	font-weight: bold;
	padding: 8px 8px 8px 37px;
        margin-bottom: 10px;
	border:1px solid #49549f;
	color:#49549f;
	font-size:16px;
	text-align:right;
	background: #c0c6eb url(/images/cms/email_sent.gif) no-repeat 2px center;
}
.contactformR div {
padding: 0.25em 0 0.25em 0;
}
/* Stylesheet: Formcss Modified On 2011-11-19 22:56:52 */
