@charset "UTF-8";

@font-face {
  font-family: "conduitbold";
  src: url(fonts/conduitbold.ttf ) format("truetype");
}

@font-face {
  font-family: "conduitmedium";
  src: url(fonts/conduitmedium.ttf ) format("truetype");
}

@font-face {
  font-family: "conduitlight";
  src: url(fonts/conduitlight.ttf ) format("truetype");
}

@font-face {
  font-family: "lubalinbold";
  src: url(fonts/lubalinbold.ttf ) format("truetype");
}

hr	{
	
	color: #576872; 
	background-color: #fff; 
	border: 1px dotted #ffffff; 
	border-style: none none dotted; 
	
}

a {

color:#ffffff;
text-decoration:none;
border: 0px solid #000000;

}

a.linkarea {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
border:none;

}

a.back {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#660315;
font-size:12px;

}

a.back:hover {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#ffffff;
font-size:12px;
}

a.emaillink {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#660315;
font-size:14px;

}

a.emaillink:hover {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#ffffff;
font-size:14px;
}


a.readmore {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#660315;
font-size:12px;
text-align:right;
margin: 0px 0px 0px 0px;
padding:10px 10px 10px 240px;

}

a.readmore:hover {
	
font: 100% conduitlight, Arial, Helvetica, sans-serif;
color:#ffffff;
font-size:12px;
margin: 0px 0px 0px 0px;
padding:10px 10px 10px 240px;
}

a.storelink {
	font: conduitlight, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1;
	color:#ffffff;
	background-color:#660315;
	vertical-align:text-bottom;
	margin: 0px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	float:right;
	
}

a.storelink {
	font: conduitlight, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1;
	color:#ffffff;
	background-color:#660315;
	vertical-align:text-bottom;
	margin: 0px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	float:right;
	
}

a.storelink:hover {
	font: conduitlight, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1;
	color:#660315;
	background-color:#ffffff;
	vertical-align:text-bottom;
	margin: 0px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	float:right;
}


a.storelink2 {
	font: conduitlight, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1;
	color:#ffffff;
	background-color:#660315;
	vertical-align:text-bottom;
	margin: 0px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	float:left;
	
}

a.storelink2:hover {
	font: conduitlight, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:1;
	color:#660315;
	background-color:#ffffff;
	vertical-align:text-bottom;
	margin: 0px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	float:left;
}



a:hover {

color:#660315;

}

body  {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	background: #576872;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
	height: 100%; 
	max-height: 100%; 
	padding:0;
}



#blanket {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:absolute;
z-index: 9001;
top:0px;
left:0px;
width:100%;
}


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
.twoColElsLt #container { 
	opacity: 0;
	filter:alpha(opacity=100);
	width: 950px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background:none;
	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. */
	padding: 0px 0;
} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
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 ".twoColElsLt #sidebar1 p" rule.
*/
.twoColElsLt #sidebar1 {
	z-index:2;
	filter:alpha(opacity=100);
	color:ffffff;
	opacity:100;
	float: left;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable */
	position: fixed;
	width: 325px; /* since this element is floated, a width must be given */
	height:100%;
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-right: 10px;
	padding: 10px 0px; /* top and bottom padding create visual space within this div */
}

.mission {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.1;
	color:#ffffff;
	top:auto;
	vertical-align:top;
	margin-left: 0px;
}



.twoColElsLt #sidebar2 {
	opacity:100;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable */
	position: fixed;
	width: 325px; /* since this element is floated, a width must be given */
	height:100%;
	background: #576872; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-right: 10px;
	padding: 20px 0px; /* top and bottom padding create visual space within this div */
}

#popUpDiv {
	position:fixed;
	background-color:#576872;
	width:325px;
	height:800px;
	opacity:100;
	background:#576872;
	margin-right: 10px;
	padding: 20px 0px; /* top and bottom padding create visual space within this div */
	z-index: 9003;
	margin-top: 0px;

}

#popUpDiv2 {
	position:fixed;
	background-color:#576872;
	color:#ffffff;
	width:325px;
	height:100%;
	opacity:100;
	background:#576872;
	margin-right: 10px;
	padding: 20px 0px; /* top and bottom padding create visual space within this div */
	z-index: 9003;
	margin-top: 0px;
}

#popUpDiv2 h3 {
	font:  conduitlight, Helvetica, sans-serif;
	font-size:24px;
	margin: 20px 0px 0px 0px;
	
}


#popUpDiv2 p{
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.2;
	color:#ffffff;
	top:auto;
	float: left;
	vertical-align:top;
}


#popUpDiv3 {
	position:static;
	background-color:#576872;
	color:#ffffff;
	height:100%;
	opacity:100;
	background:#576872;
	margin-right: 10px;
	padding: 20px 0px; /* top and bottom padding create visual space within this div */
	z-index: 9004;
	margin-top: 0px;
	width: 540px;

}

#pressAll {
	font:  conduitlight, Helvetica, sans-serif;
	font-size:24px;
	margin: 0px 0px 0px 0px;
	
}



#pressAll h3 {
	font:  conduitlight, Helvetica, sans-serif;
	font-size:24px;
	margin: 20px 0px 0px 0px;
	
}


#popUpDiv3 p{
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.2;
	color:#ffffff;
	top:auto;
	float: left;
	vertical-align:top;
}




.twoColElsLt #sidebar1 p {
	font: 100% conduitlight, "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif, Helvetica, sans-serif;
	margin-left: 1px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
}

.twoColElsLt #sidebar1 #redblock p{
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:12.5px;
	line-height:1.1;
	color:#ffffff;
	background-color:#660315;
	top:auto;
	float: left;
	vertical-align:top;
	margin: 20px 10px 20px 0px;
	padding: 5px 5px 5px 5px;
}

.twoColElsLt #sidebar1 h3 {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:16px;
 	margin: 0 0 10px 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}


.twoColElsLt #sidebar1 h3 a{
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:16px;
 	margin: 0 0 10px 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}


.twoColElsLt #sidebar1 h4 {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:13px;
 	margin: 0px 0px 0px 110px ; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.twoColElsLt #sidebar1 #aboutarea p {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.1;
	color:#ffffff;
	top:auto;
	float: left;
	vertical-align:top;
	margin-left: 0px;
	

}

.twoColElsLt #sidebar1 #aboutarea p img{
	float: left;
	vertical-align:top;
	margin-right: 6px;

}

.twoColElsLt #fadeBlock{
	display:none;
	height:100%;
	filter:alpha(opacity=0);
	opacity:0;
	background: #576872;
	position:fixed;
	z-index:1;
	margin-right: 10px;
	padding: 10px 0px; /* top and bottom padding create visual space within this div */
	}


.twoColElsLt #missionBlock{
	height:100%;
	filter:alpha(opacity=0);
	opacity:0;
	background: #576872;
	position:fixed;
	z-index:1;
	margin-right: 10px;
	padding: 10px 0px; /* top and bottom padding create visual space within this div */
	}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLt #mainContent {
	left:325px;
	width: 540px;
	height:100%;
	background: none;
	position:relative;
	overflow:auto;
 	margin: 10px 0px 0px 40px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 10px 0px 0px 0px	; /* top and bottom padding create visual space within this div */
	color:#ffffff;
} 


.twoColElsLt #mainContent2 {
	left:0px;
	width: 540px;
	height:100%;
	background: none;
	position:relative;
	overflow:hidden;
 	margin: 10px 0px 0px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 10px 0px 0px 0px	; /* top and bottom padding create visual space within this div */
	color:#ffffff;
}

.slidshowContainer {
		
	 	margin: 0px 0px 0px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
		padding: 0px 0px 0px 0px;
}
		
		


	
}

#myGallerySet  h2 {


	 	margin: 0px 0px 10px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
		padding: 0px 0px 0px 0px;
		text-align:left;
		
	
	
}






.twoColElsLt #errorContent {
	left:10px;
	width: 540px;
	background: none;
	position:relative;
	overflow:auto;
 	margin: 10px 0px 0px 40px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 10px 0px 0px 0px	; /* top and bottom padding create visual space within this div */
	color:#ffffff;
} 

.twoColElsLt #errorContent hr	{
	
	color: #ffffff; 
	background-color: #576872; 
	border: 1px dotted #ffffff; 
	border-style: none none dotted; 
	padding: 10px 0px 0px 0px;
	width: 540px;
	margin: 0px 0px 0px 0px;
}

.twoColElsLt #mainContent hr	{
	
	color: #ffffff; 
	background-color: #576872; 
	border: 1px dotted #ffffff; 
	border-style: none none dotted; 
	padding: 0px 0px 0px 0px;
	width: 540px;
	margin: 0px 0px 0px 0px;
}

.twoColElsLt #mainContent2 hr	{
	
	color: #ffffff; 
	background-color: #576872; 
	border: 1px dotted #ffffff; 
	border-style: none none dotted; 
	padding: 10px 0px 0px 0px;
	width: 540px;
	margin: 0px 0px 0px 0px;
}

.twoColElsLt #popUpDiv hr	{
	
	color: #ffffff; 
	background-color: #576872; 
	border: 1px dotted #ffffff; 
	border-style: none none dotted; 
	padding: 10px 0px 0px 0px;
	width: 325px;
	margin: 0px 0px 0px 0px;
}



.twoColElsLt #popUpDiv p {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	text-align:left;
	line-height:1.3;
	color: #ffffff;
	font-size:14px;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 0 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}


.linkright{
	text-align:right;
	
	
}

.contentAll {
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 30px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.contentAll p {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	text-align:left;
	line-height:1.3;
	font-size:16px;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 0px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.contentAll img {
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 10px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

#press img {
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 10px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.twoColElsLt #mainContent #newsContent p {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	text-align:left;
	line-height:1.3;
	font-size:16px;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 5px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.twoColElsLt #mainContent2 #newsContent p {
	font: 100% conduitlight, Arial, Helvetica, sans-serif;
	text-align:left;
	line-height:1.3;
	font-size:16px;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 0 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.newstitle {
	font: 100% lubalinbold, Arial, Helvetica, sans-serif;
	float:left;
	line-height:1;
	vertical-align:top;
	font-size:18px;
	color:#660315;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 0px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.pressbreak{
	line-height:0;
	margin: 4px 0px 0px 0px;
}

.presstitle {
	font: 100% lubalinbold, Arial, Helvetica, sans-serif;
	float:left;
	line-height:1;
	vertical-align:top;
	font-size:36px;
	color:#660315;
	padding: 0px 0px 0px 0px;
 	margin: 0px 0px 0px 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.twoColElsLt #mainContent h2 {
	font: 100% lubalinbold, Arial, Helvetica, sans-serif;
 	margin: 0 1.5em 0 1em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}

.twoColElsLt #mainContent2 h2 {
	font: 100% lubalinbold, Arial, Helvetica, sans-serif;
 	margin: 0 1.5em 0 1em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}


.myform{
margin:0 auto;
width:325px;
height:1000px;
padding:0px;
}


.captcha{
	position:absolute;
	left:10px;
	text-align:center;
	height:200px;
	
}


/* ----------- stylized ----------- */
#stylized{
border:none 0px #b7ddf2;
background:none;
height:800px;
}
#stylized h1 {
font-size:14px;
font-weight:bold;
margin-bottom:8px;
}



#stylized p{
font-size:11px;
color:#666666;
margin-bottom:20px;
border-bottom:solid 1px #b7ddf2;
padding-bottom:10px;
}
#stylized label{
display:block;
font-weight:bold;
text-align:left;
width:140px;
float:left;
}
#stylized .small{
color:#666666;
display:block;
font-size:11px;
font-weight:normal;
text-align:right;
width:140px;
}
#stylized input.jesse{
	font-family: conduitlight, Arial, Helvetica, sans-serif;
	color: #660315;
	border:none 0px #aacfe4;
float:left;
font-size:12px;
padding:4px 2px;
border:0px;
width:325px;
margin: 5px 0 10px 0px;

}

#stylized textarea {
	font-family: conduitlight, Arial, Helvetica, sans-serif;
	color: #660315;
float:left;
font-size:12px;
padding:4px 2px;
border:none 0px #aacfe4;
width:325px;
margin: 10px 10px 0px 0px;
padding:4px 2px;

}


#stylized input.jesse [type="text"]:focus{
float:left;
font-size:12px;
padding:4px 2px;
border:solid 0px #660315;
width:325px;
margin:10px 0 10px 0px;

}


#inputArea input[type="text"]:focus, #inputArea textarea:focus
{
    background-image: none;
    background-color: #ffffff;
    border: solid 1px #33677F;
}



#stylized button{
	font-family: conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1;
	float:right;
	clear:both;
  	border: 0;
	width:100px;
	height:26px;
	background-color:#660315;
	text-align:center;
	line-height:31px;
	color:#FFFFFF;
	font-size:11px;
	font-weight:normal;
	margin: 10px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	position:absolute;
	top: 600px;
	left: 230px;

}

#stylized button:hover {
	cursor:pointer;
	font-family: conduitlight, Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1;
	float:right;
	clear:both;
  	border: 0;
	width:100px;
	height:26px;
	background-color:#ffffff;
	text-align:center;
	line-height:31px;
	color:#660315;
	font-size:11px;
	font-weight:normal;
	margin: 10px 0px 0px 0px;
	padding: 0px 2px 2px 2px;
	position:absolute;
	top: 600px;
	left: 230px;
}





/*** set the width and height to match your images **/

	

#slideshow {
    height:400px;
	width: 540px;
	left:325px;
	background: none;
	position:relative;
	overflow:hidden;
 	margin: 10px 0px 0px 40px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0px 0px 0px 0px	; /* top and bottom padding create visual space within this div */
	color:#ffffff;
}

#slideshow DIV {
    position:relative;
	
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
    height: 400px;
    background-color: #FFF;
}

#slideshow DIV.active {
    z-index:10;
    opacity:1.0;
}

#slideshow DIV.last-active {
    z-index:9;
}

#slideshow DIV IMG {
	width: 540px;
    display: block;
    border: 0;
    margin-bottom: 10px;
}




/* Miscellaneous classes for reuse */
.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;
}