﻿@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #191919;
	margin: 5px 0 0 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: #B9A178;
}
.twoColFixRt #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-style:solid;
	border-width: .08em;
	border-color: #e5e5e5;
	text-align: left; /* this overrides the text-align: center on the body element. */
}


.twoColFixRt #topBar {
	padding: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(../images/topBar_bkgnd_03.jpg);
	height: 350px;
	background-repeat: no-repeat;
}
a.plain {
	color: #fff;
	text-decoration: none;
}

.twoColFixRt #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 163px; /* 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: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	margin-right: 20px;
	background-image: url(../images/SideBar_bkgnd_10.gif);
	background-repeat: no-repeat;
}

.twoColFixRt #mainTitle { 
	margin: 0 250px 0 30px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #0E4354;
} 

.twoColFixRt #mainContent { 
	margin: 20px 250px 0px 30px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixRt #footer {
	margin: 20px 30px 0px 30px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #B9A178;
	text-align: center;
} 


.twoColFixRt #outerFooter { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #191919;
	margin: 10px auto 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.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;
}

/*/////////// DIV BOXES ////////////*/



.box {
	padding: 8px;
	width: 210px;
	background-color: #191919;
	border-style:solid;
	border-width: 0.08em;
	border-color: #B9A178;
}

.contactBox, .contactBox a {
	padding: 8px;
	width: 498px;
	color: #fff;
	background-color: #191919;
	border-style:solid;
	border-width: 0.08em;
	border-color: #B9A178;
}


/*///////////FONTS/////////////*/

.twoColFixRt #mainContent p, ul {
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	color: #ffffff;
	line-height: 20px;
	margin-bottom: 30px;
	font-weight: lighter;
	}

	
.twoColFixRt #mainTitle h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:22px;
	color: #B9A178;
	padding: 20px 0px 0px 0px;
	margin: 0px 0px 40px 0px;
	}
	
.twoColFixRt #sidebar1 h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #B9A178;
	padding: 0px 0px 0px 10px;
}

.twoColFixRt #footer p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #B9A178;
	font-style: normal;
	}
	
.personalTitle {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #B9A178;
	}
	
.twoColFixRt #outerFooter p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color: #fff;
	margin-left: 30px;
	}
.footerEmail {
	margin-left: 540px;
}

.secondaryTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #0E4354;
	padding-bottom: 0px;
rem	line-height: 40px;
}

.thirdTitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #B9A178;
}



/*////////// IMAGES //////////*/

.imgFloatLeft {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.twoColFixRt #sidebar1 img {
	margin-left: 25px
	}
	
	
	
/*/////////// NAVIGATION /////////*/

.navigation {
	margin-top: 60px;
	margin-left: 290px;
}


/*///////////// LINKS /////////////*/

a.footer:link {color: #B9A178; text-decoration: none}
a.footer:visited {color: #B9A178; text-decoration: none}
a.footer:hover {color: #B9A178; text-decoration: underline}


a.body:link {color: #B9A178; text-decoration: none}
a.body:visited {color: #B9A178; text-decoration: none}
a.body:hover {color: #B9A178; text-decoration: underline}


 /*/////////////// FORMS ////////////////*/
 
label{
float: left;
width: 120px;
/*font-weight: bold;*/
}

input, textarea{
width: 100px;
height: 18px;
margin-bottom: 5px;
background-color: #000;
color: #ffffff;
border-style:solid;
border-width: .08em;
border-color: #0E4354;
}

select {
	width: 103px;
margin-bottom: 5px;
background-color: #000;
color: #ffffff;
border-style:solid;
border-width: .08em;
border-color: #0E4354;
}

textarea{
width: 350px;
height: 150px;
}

.boxes{
width: 1em;
}

#submitbutton{
margin-left: 380px;
margin-top: 5px;
width: 90px;
}

br{
clear: left;
}
