/* ------------- GLOBAL PAGE STYLES. ------------------*/

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #090909;
	color: #f1eee6;
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 23px;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background-image: url(../_images/glbl_bg.jpg); /* GLOBAL BACKGROUND IMAGE FOR ALL PAGES */
	background-repeat: no-repeat;
	background-position: center top;
}


/* ------------- TEXT AND LINKS STYLES. ------------------*/

p {
	margin-top: 0px;
}
.rule {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #C7852E;
	padding-bottom: 20px;
	margin: 0px;
}
/* Commonly used to style page titles. */
h1 {
	font-size: 1.25em;
	color: #ccc4a3;
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-weight: normal;
	letter-spacing: 0.1em;
	font-style: normal;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 11px;
	line-height: 14px;
	color: #D8E1C7;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
}
h3 {
	color: #D8DCBF;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-weight: normal;
}
#copyright  h2 {
	font-size: 1.15em;
	font-weight: normal;
	letter-spacing: .15em;
}
#copyright h1 {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #996600;
	padding-bottom: 5px;
}
strong {
	font-weight: bold;
	color: #FFFFFF;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #bcbcbb;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #bcbcbb;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #a8a3e0;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #a8a3e0;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #a8a3e0;
}

.testimonial {
	color: #D8DCBF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #C7852E;
	display: block;
	font-style: oblique;
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	line-height: normal;
	font-size: 0.95em;
}
.testimonial strong {
	font-style: normal;
	color: #D8DCBF;
}



/* ------------- LAYOUT STYLES. ------------------*/




/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */

#outerWrapper {
	margin: 0 auto; /* GLOBAL STYLE Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	clear: both;
	width: 950px;
}
#home #outerWrapper {
	background-image: url(../_images/bg_home1.jpg); /* BACKGROUND IMAGE FOR index.html home page */
	background-repeat: no-repeat;
	background-position: top;
}

#profile #outerWrapper, #portfolio #outerWrapper, #contact #outerWrapper {
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	background-image: url(../_images/bg_longrule.jpg); /* BACKGROUND IMAGE FOR portfolio, profile, bio, and contact pages */
	background-repeat: no-repeat;
	background-position: top;
}
#profile .testimonial {
	font-size: 1.25em;
	line-height: 1.25em;
}
#news #outerWrapper, #copyright #outerWrapper {
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	background-image: url(../_images/bg_shortrule.jpg); /* BACKGROUND IMAGE FOR portfolio, profile, bio, and contact pages */
	background-repeat: no-repeat;
	background-position: top;
}
#header  {
	padding: 0px;
	height: 100px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 70em;
}
#portfolio #header {
	padding: 0px;
	height: 80px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 70em;
}
#contentWrapper {
	width: 950px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#contentWrapper a {
	text-decoration: none;
}
#contentwrapper li  {
	list-style-type: square;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#contentWrapper .clearFloat {
  clear: right;
  display: block;
}
#rightColumn   {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 340px;
	padding-left: 30px;
}
#portfolio #rightColumn {
	height: 540px;
	position: relative;
	z-index: 0;
	width: 340px;
	overflow: visible;
}
#news #rightColumn, #copyright #rightColumn  {
	padding: 0px;
	visibility: hidden;
}
#content/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
  {
	margin-top: 0;
	margin-right: 380px;
	margin-bottom: 0;
	vertical-align: top;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 140px;
	overflow: visible;
}
#portfolio #content {
	overflow: visible;
	position: relative;
	z-index: 0;
	height: 540px;
}
#home #content {
	min-height: 460px;
	vertical-align: top;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#news #content, #copyright #content   {
	padding: 0px;
	vertical-align: top;
	margin: 0;
}
#onecolumn {
	padding-right: 30px;
	padding-left: 140px;
}
#onecolumn img {
	float: left;
	padding-bottom: 20px;
	padding-right: 20px;
	padding-top: 5px;
}
.newsitem {
	display: block;
	clear: both;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666666;
	min-height: 125px;
	vertical-align: top;
	padding-bottom: 10px;
	background-color: #282726;
	padding-top: 5px;
	list-style-type: none;
	margin: 0px;
}
#news #onecolumn ul {
	list-style-image: none;
	list-style-type: none;
	padding-left: 10px;
}
#news  #onecolumn  li {
	list-style-image: none;
	list-style-type: none;
}
#news #onecolumn, #copyright #onecolumn {
	padding-right: 30px;
	padding-left: 140px;
	padding-top: 0px;
	padding-bottom: 30px;
	clear: both;
}
#profile #onecolumn img {
	float: left;
	padding-bottom: 20px;
	padding-right: 40px;
	padding-top: 0px;
}
.leftcol_caption {
	display: block;
	padding-top: 20px;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	line-height: 15px;
	color: #D8E1C7;
	padding-bottom: 20px;
}
.leftcol_caption strong {
	color: #C7852E;
}
#home_names {
	margin-top: 310px;
}

.column1 {
	width: 40%;
	padding-right: 30px;
	float: left;
}
.column2 {
	clear: right;
	float: left;
	width: 50%;
}

#footer {
	padding: 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size: 12px;
	color: #a8a3e0;
	clear: both;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 950px;
	font-style: normal;
}

/* ------------- MAIN NAVIGATION STYLES. ------------------*/

#nav {
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 1px;
	color: #a8a3e0;
	margin-left: 140px;
	height: 30px;
	font-weight: normal;
	font-style: normal;
}
#nav  .on   {
	color: #978FD9;
}
#main_links  {
	width: 34.25em;
	height: 1.8em;
	background-color: #242424;
	background-image: url(../_images/nav_bg.png); /* BACKGROUND GRADIENT IMAGE FOR main navigation bar */
	padding-top: 8px;
	background-repeat: repeat-x;
	background-position: top;
	padding-right: 10px;
	padding-left: 10px;
	text-align: right;
	white-space: nowrap;
	float: left;
}
#nav #nav_space {
	height: 31px;
	width: 10px;
	float: left;
}
#nav #subnav {
	background-color: #292828;
	padding-right: 10px;
	padding-left: 30px;
	padding-top: 8px;
	height: 1.8em;
	text-align: left;
	float: left;
	width: 27.5em;
	white-space: nowrap;
}
#contact #subnav {
	padding: 0px;
	margin: 0px;
	background-color: transparent;
}
.btn  {
	font-family: Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-size: 10px;
	letter-spacing: 1px;
	padding: 0px 2px;
	border: 1px solid #999999;
	line-height: 15px;
	text-transform: uppercase;
	background-color: #292828;
	width: 4em;
	text-decoration: none;
}

