@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #5D6366;
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #E5E4DA;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1 {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: lighter;
	letter-spacing: 1px;
	word-spacing: 3px;
}

h2 {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: lighter;
	text-align: left;
	letter-spacing: .75px;
} 

h3 {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: lighter;
	text-align: left;
	letter-spacing: .85px;
} 

p {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: lighter;
	text-align: left;
	letter-spacing: .75px;
} 

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	text-align: center;
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #5D6366;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #5D6366;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #FFF;
	text-align: left;
}
.bold {
	font-weight: bold;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/


.content {

	padding: 10px 0;
	width: 780px;
	float: left;
}
/* ~~ The footer ~~ */
.footer {
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #E5E4DA;
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	font-size: 11px;
	text-align: right;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.HeaderText { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.logo {
	display: block;
	width: 300px;
	margin-right: auto;
	margin-left: 0px;
	height: 100px;
}

ul{ 
  list-style-type: none;
}

#HeaderBoxHomeCenter {
	height: 100px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 20px;
	z-index: 1;
	padding-left: 0px;
}
#HeaderBoxMailing {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 25px;
	z-index: 1;
	padding-left: 200px;
    padding-right: 200px;
}
#SubHeaderBoxTitleH3Pet {
	height: 40px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -5px;
	z-index: 2;
	padding-left: 82px;
}
#description {
	height: 40px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	z-index: 5;
	padding-left: 177px;
	padding-right: 75px;

}
#BoxBodyTextP {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 40px;
	z-index: 2;
	padding-left: 171px;
	padding-right: 50px;
}
#BoxBodyTextPGallery {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 55px;
	z-index: 2;
	padding-left: 171px;
	padding-right: 50px;
}
body.ie6 div#col-left ul li{
	height: 550px;
	width: 600px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	left: 125px;
}
#SocialMediaBarIndex {
	height: 20px;
	width: 100px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 280px;
	z-index: 6;
	padding-left: 850px;
}
#SocialMediaBarHome2erase {
	height: 20px;
	width: 100px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -300px;
	z-index: 11;
	padding-left: 593px;
}


#BoxIndex {
	height: 850px;
	overflow: visible;
	position: relative;
	visibility: visible;
	z-index: 2;
	padding-top: 77px;
}
#Boxindextemporary {
	height: 625px;
	width: 960px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 2;
	top: -31px;
}
#Boxindexcomingsoon {
	height: 400px;
	width: 960px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 2;
	top: -21px;
}
#BoxButtons {
	height: 105px;
	width: 300px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 20px;
	left: 349px;
}
#BoxButtonsList {
	height: 105px;
	width: 300px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 40px;
	left: 340px;
}
#blank1 {
	height: 100px;
	width: 300px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 4;
	top: -420px;
	left: 594px;
}
#HeaderBoxTitleH1 {
	height: 80px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	z-index: 2;
	padding-left: 82px;
	padding-right: 50px;

}
#SubHeaderBoxTitleH3 {
	height: 40px;
	width: 200px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 20px;
	z-index: 3;
	padding-left: 82px;
}


/* ~~GALLERY~~ */
#gallery {
	height: 1200px;
	width: 960px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 1;
}

#HeaderBoxTitleH1Gallery {
	height: 80px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 50px;
	z-index: 2;
	padding-left: 82px;
	padding-right: 50px;

}
#SubHeaderBoxTitleH3Gallery {
	height: 40px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 100px;
	z-index: 3;
	padding-left: 82px;
}
#BoxGallery {
	height: 750px;
    width: 890px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	z-index: 4;
	top: 160px;
	left: 70px;
}
#SocialMediaBarGallery {
	height: 25px;
	width: 375px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 910px;
	z-index: 5;
	left: 176px;
}
#statement {
	height: 40px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 950px;
	z-index: 6;
	padding-left: 165px;
	padding-right: 175px;

}
#gallerytext {
	height: 225px;
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 980px;
	z-index: 8;
	padding-left: 178px;
	padding-right: 75px;
}

/* ~~GALLERY PROJECT DESC~~ */


#HeaderBox2DescriptionH1 {
	height: 40px;
	overflow: visible;
	position: absolute;
	visibility: visible;
	top: 980px;
	z-index: 7;
	padding-left: 178px;
}
#BoxBodyTextPstatement {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	z-index: 8;
	padding-left: 202px;
	padding-right: 100px;
}
#BoxBodyText2Description {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 40px;
	z-index: 8;
	padding-left: 178px;
	padding-right: 75px;
}
#BoxBodyText3BioH1 {
	height: 40px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 40px;
	z-index: 9;
	padding-left: 178px;
}
#BoxBodyText3Bio {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 160px;
	z-index: 10;
	padding-left: 178px;
	padding-right: 75px;
}
#SubHeaderBoxReturnToTopH3 {
	height: 40px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 420px;
	z-index: 11;
	padding-left: 178px;
}

/* ~~END GALLERY~~ */


/* ~~HOME~~ */
#home {
	height: 1650px;
	width: 960px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 1;
}
#sidebar {
	overflow: hidden;
	position: absolute;
	visibility: visible;
	top: 9px;
	left: 680px;
	z-index: 2;
}
#mainphoto {
	overflow: hidden;
	position: absolute;
	visibility: visible;
	left: 70px;
	top: 15px;
	z-index: 2;
}
#mainfeature {
	width: 600px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	left: 70px;
	top: 582px;
	z-index: 3;
}
#featurename {
	width: 600px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 536px;
	left: 73px;
	z-index: 4;
}
#featurestate {
	width: 25px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 506px;
	left: 614px;
	z-index: 4;
}
#featuredescription {
	width: 568px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 514px;
	left: 73px;
	z-index: 5;
}
#subphoto {
	width: 500px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	left: 70px;
	top: 564px;
	z-index: 6;
}
#subfeature {
	width: 500px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	left: 70px;
	top: 564px;
	z-index: 7;
}
#subname {
	width: 500px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -46px;
	left: 3px;
	z-index: 8;
}
#subfeaturestate {
	width: 25px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -76px;
	left: 470px;
	z-index: 9;
}
#subdescription {
	width: 495px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -67px;
	left: 3px;
	z-index: 10;
}
#SocialMediaBarHome {
	height: 20px;
	width: 100px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -45px;
	left: 3px;
	z-index: 11;
}

/* ~~END HOME~~ */


/* ~~NAME~~ */
#A {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	z-index: 2;
	padding-left: 235px;
	padding-right: 75px;
    padding-bottom: 50px;

}
#B {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 3;
	padding-left: 235px;
	padding-right: 75px;
}
#C {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 4;
	padding-left: 235px;
	padding-right: 75px;
}
#D {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 5;
	padding-left: 235px;
	padding-right: 75px;
}
#E {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 6;
	padding-left: 235px;
	padding-right: 75px;
}
#F {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 7;
	padding-left: 235px;
	padding-right: 75px;
}
#G {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 8;
	padding-left: 235px;
	padding-right: 75px;
}
#H {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 9;
	padding-left: 235px;
	padding-right: 75px;
}
#I {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 10;
	padding-left: 235px;
	padding-right: 75px;
}
#J {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 11;
	padding-left: 235px;
	padding-right: 75px;
}
#K {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 12;
	padding-left: 235px;
	padding-right: 75px;
}
#L {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 13;
	padding-left: 235px;
	padding-right: 75px;
}
#M {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 14;
	padding-left: 235px;
	padding-right: 75px;
}
#N {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 15;
	padding-left: 235px;
	padding-right: 75px;
}
#O {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 16;
	padding-left: 235px;
	padding-right: 75px;
}
#P {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 17;
	padding-left: 235px;
	padding-right: 75px;
}
#Q {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 18;
	padding-left: 235px;
	padding-right: 75px;
}
#R {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 19;
	padding-left: 235px;
	padding-right: 75px;
}
#S {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 20;
	padding-left: 235px;
	padding-right: 75px;
}
#T {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 21;
	padding-left: 235px;
	padding-right: 75px;
}
#U {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 22;
	padding-left: 235px;
	padding-right: 75px;
}
#V {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 23;
	padding-left: 235px;
	padding-right: 75px;
}
#W {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 24;
	padding-left: 235px;
	padding-right: 75px;
}
#X {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 25;
	padding-left: 235px;
	padding-right: 75px;
}
#Y {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 26;
	padding-left: 235px;
	padding-right: 75px;
}
#Z {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 27;
	padding-left: 235px;
	padding-right: 75px;
}
/* ~~END NAME~~ */


/* ~~MAP~~ */
#BoxindexMap {
	height: 625px;
	width: 960px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 1;
	top: -7px;
}
#BoxButtonsMAP {
	height: 105px;
	width: 300px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 0px;
	left: 329px;
}
#SocialMediaBarMap {
	height: 20px;
	width: 100px;
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: -300px;
	z-index: 14;
	padding-left: 593px;
}
#AL {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 50px;
	z-index: 2;
	padding-left: 177px;
	padding-right: 75px;
    padding-bottom: 50px;

}
#AR {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 3;
	padding-left: 177px;
	padding-right: 75px;
}

#FL {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 4;
	padding-left: 177px;
	padding-right: 75px;
}

#GA {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 5;
	padding-left: 177px;
	padding-right: 75px;
}

#KY {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 6;
	padding-left: 177px;
	padding-right: 75px;
}

#LA {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 7;
	padding-left: 177px;
	padding-right: 75px;
}

#MS {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 8;
	padding-left: 177px;
	padding-right: 75px;
}

#NC {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 9;
	padding-left: 177px;
	padding-right: 75px;
}

#SC {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 10;
	padding-left: 177px;
	padding-right: 75px;
}

#TN {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 11;
	padding-left: 177px;
	padding-right: 75px;
}

#VA {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 12;
	padding-left: 177px;
	padding-right: 75px;
}

#WV {
	overflow: hidden;
	position: relative;
	visibility: visible;
	top: 0px;
	z-index: 13;
	padding-left: 177px;
	padding-right: 75px;
}

/* ~~END MAP~~ */



/* ~~RSS FEED~~ */
#rssbox {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 2;
	top: 30px;
	padding-left: 195px;
	padding-right: 50px;
}
#googlerss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 0px;
	padding-left: 0px;
}
#yahoorss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 13px;
	padding-left: 0px;
    padding-right: 50px;

}
#pageflakesrss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 25px;
	padding-left: 0px;
	padding-right: 50px;
}
#newsgatorrss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 38px;
	padding-left: 0px;
	padding-right: 50px;
}
#netvibesrss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 51px;
	padding-left: 0px;
	padding-right: 50px;
}

#subrss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 3;
	top: 64px;
	padding-left: 0px;
	padding-right: 50px;
}

#feedrss {
	overflow: hidden;
	position: relative;
	visibility: visible;
	z-index: 4;
	top: 100px;
	padding-left: 0px;
	padding-right: 50px;
}
/* ~~END RSS FEED~~ */



#footer-text {
display:block; 
font-family:Microsoft Sans Serif, Geneva, sans-serif;
position:absolute;
text-align:left; 
padding:0;
}

/* MailChimp Form Embed Code - Slim - 08/17/2011 */
#mc_embed_signup{color:#5D6366; clear:both; font:11px Microsoft Sans Serif, Geneva, sans-serif; }
#mc_embed_signup form {
display:inline-block; 
	font-family:Microsoft Sans Serif, Geneva, sans-serif;
position:relative; 
left: 0px; 
top: 3px; 
text-align:left; 
padding:0;
}
#mc_embed_signup h2 {font-weight:normal; padding:0; margin:0px 0; font-size:10px;}

#mc_embed_signup input {border:1px solid #5D6366; -webkit-appearance:none;}
#mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
#mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
#mc_embed_signup input:focus {border-color:#F3C734;}

#mc_embed_signup .button {clear:both; background-color: #BABABA; border: 0 none; border-radius:1px; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:10px; font-weight: normal;  letter-spacing:2px; line-height: 15px; margin: 1px 1px 1px 1px; padding:0; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}

#mc_embed_signup .button:hover {background-color:#DEDDDD;color: #5D6366;}
#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}     
#mc_embed_signup .clear {clear:none; display:inline;}

#mc_embed_signup label {display:block; font-size:11px; padding-bottom:5px; font-weight:normal;}

#mc_embed_signup input.email {display:block; padding:1px 0; margin:1px 0 8px 0; text-indent:5px; width:153px; font-family:Microsoft Sans Serif, Geneva, sans-serif;}

#mc_embed_signup input.button {display:block; width:65px; margin:1px 0 10px 0;}
#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%;margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:normal; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}
/* ~~ END MailChimp ~~ */



/*******************************************************************************
/*******************************************************************************
/*******************************************************************************


/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 9pt;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 137.14px;
	float: left;
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	letter-spacing: 2px;
	font-weight: lighter;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 137.2px;
	position: absolute;
	left: -1000px;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 137.14px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 0px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #DEDDDD;
	padding: 4px 2px;
	color: #5D6466;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #BABABA;
	color: #F8F8F8;
	text-align: center;
	font-family: Microsoft Sans Serif, Geneva, sans-serif;
	letter-spacing: 2px;
	font-weight: lighter;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #A2A2A2;
	color: #FDFDFD;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	text-align: center;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
