@charset "utf-8";
/* CSS Document for Emory Hackman*/
/*Copyright 2008 Sleight-of-Hand Studios LLC; All Rights Reserved*/

/*________________STANDARD CODE____________________________________*/

/* clearing method devised by Tony Alsett - www.csscreator.com */
/* add the alsettclearmeth class to any containter that must enclose floated elements */
/* http://www.positioniseverything.net/easyclearing.html */
.alsettclearmeth:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.alsettclearmeth {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .alsettclearmeth {height: 1%;}
.alsettclearmeth {display: block;}
.clear {
	clear: both;
}
/* End hide from IE-mac */
/* end of "no-extra-markup" Alsett clearing method */

.red{color: red;}
.devcomment{
	color: red;
}
.left{text-align:left}
.fltLeft {
	float: left;
}

.right{
	text-align:right;
	/*right: 0px;*/
}
.fltRight {
	float: right;
}

.center {text-align: center;}
.fullwidth{width: 100%;}
.hideInitially{visibility: hidden;}
.hideRemove{display: none;}
/*___________END STANDARD CODE________________________________________________________*/
/*___________Browser Normalization____________________________________________________*/
* {
	margin:0;
    border:0;
	padding:0;
}
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding:0;
}
div,p,h1,h2,h3,h4,h5,h6,td,ul,ol,li,dl,dt,dd,form,fieldset,input,blockquote,th,td { /* be specific for Netscape4 - doesn't understand inheritance */
	font-size: 100%;
	margin: 0;
	padding:0;
}
fieldset,img{
	border: 0;
}
/*___________END Browser Normalization__________________________________________________*/
body {
	font-size: 62.5%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*color: #E0A61B;*/
	/*color: #Ffd18f;*/
	color: #000;
	text-align: center;
	background: #666;
	background-image:url(../images/body_bkg.jpg);
}
p {
	margin-bottom: 1.1em;
	font-size: 1.2em;
	margin-top: 1em;
}
h1{
	font-size: 2em;
	margin-bottom: 0.5em;
	/*color: #e0a61b;*/
	color: #004E7D;
	text-transform: capitalize;
	line-height: 1em;
	margin-top: .5em;
}
h2{
	font-size: 1.7em;
	color: #e0a61b;
}
h3 {
	margin-bottom: 1em;
	font-size: 1.5em;
	color: #e0a61b;
}
h4 {
	font-size: 1.2em;
	margin-bottom: 0.5em;
	color: #e0a61b;
}
ul { /*not nav*/
	font-size: 1.0em;
	margin: 1.4em;
}
li {
	margin-left: .5em;
}
li ul {
	margin: 0px 0px 0px 2em;
	padding: 0;
	list-style: disc;
}

.empText {
	margin-bottom: 1.2em;
	font-style: italic;
	margin-left: 10px;
}
/*ul {
	list-style: outside;
	padding: 0 0 1em 0;
	margin-left: 20px;
	font-size: 1.1em;
	
}*/
/* Navigation on top  =========================*/
#mainNav { 
	font-size: 1.2em;
	position: relative;
	top: 22px;
	text-align: center;
	font-weight: bold;
	height: 50px;
	padding: 0;
	margin: 0;
	width: 780px;
	text-transform: capitalize;
	list-style: none;
}
ul.nav li    {
	display: inline;
	color: #e0a61b;
	float: left;
	margin-left: 5px;
	/*border: 1px solid #FF0000;  designtime */
}

ul.nav a{
	display: block;
	padding: 0px .3em 0 1.8em;
	line-height: 4em;
	text-decoration: none;
	background-image: url(../images/Hackman_NavDiv.jpg);
	background-repeat: no-repeat;
}
ul.nav .first a {
	background: none;
}

#mainNav a:link  {
	color: #e0a61b;
}
#mainNav a:visited  {
	color: #d0b62b;
}
#mainNav a:hover {
	color: #f0b62b;
}
#header a:link {
	color: #e0a61b;
}
#header a:visited {
	color: #d0b62b;
}
#header a:hover {
	color: #f0b62b;
}
a:link {
	color: #004E7D;
}
a:visited {
	color: #555;
}
a:hover {
}
.lftFeaturebox {
	background: #F6CEB5;
	width: 150px;
	padding: 5px 5px 1em;
	float: left;
}
.twoColHybRtHdr #container {
	width: 80%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 750px;
	width:expression(document.body.clientWidth < 1000 ? "800px" : "80%" ); /* a fix for the width in IE6 */
	background: #EEE;
	/*background-color: #7C322F;*/
} 

/* Hides from IE-mac \*/
* html .twoColHybRtHdr #mainEditable {
	
}
* html .twoColHybRtHdr #mainContent {

}
/* End hide from IE-mac */

.twoColHybRtHdr #header {
	background: #DDDDDD url(../images/Hackman_header.jpg) repeat-x;
	height: 139px;
	position: relative;
	padding: 20px 0 0 0;
	color: #e0a61b;
} 


/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybRtHdr #mainContent {
	/*the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	/*margin: 0 367px 0 10px;*/
	margin: 0 400px 0 10px;
	float: none;
} 
.oneCol #mainContent {
	margin: 0 2em 0 10px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	float: none;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 ".twoColHybRtHdr #sidebar1 p" rule.
*/
.twoColHybRtHdr #sidebar1 {
	float: right;
	width: 367px; /* since this element is floated, a width must be given */
	/*background: #7C322F; */
	background: #EEE;
	/* top and bottom padding create visual space within this div  */
	top: 0px;
	height: 100%;
	margin: 0 1em 10px 0;
}
 /*===================================================*/ 
.oneCol  #sidebar1 {
	display: none;
	
}
blockquote {
	margin-bottom: 1em;
	font-size: 1.4em;
	font-style: italic;
	color: #EEE;
}
.twoColHybRtHdr #sidebar1 h3, /*.twoColHybRtHdr #sidebar1 p*/ {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.twoColHybRtHdr #footer {
	padding: 5px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#004e7d;
	/*text-align: center;*/
} 
.twoColHybRtHdr #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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	/*display: inline;*/
	margin-right: 10px;
	font-size: 1em;
	color: #aaa;
}

#footer a:link,#footer a:visited,#footer {
	color: #bbb
}

/* 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;
}
/*img { /*trying to place photo right under header
	margin: 0px;
	padding: 0px;
	border-width: 0px;
}*/
#Logo {
	margin-left: 20px;
}

#contactLink {
	margin: 0px;
	padding: 0px;
	position: absolute;
	display: block;
	right: 60px;
	top: 45px;
	font-size: 1.4em;
}
img.fltRight  {
	margin-left: 10px;
}
