/* LeftMenu.css */
/* Universal selector */
/* Remove all default margins and padding */
* {
  /* Block all browser default margins and padding */
    margin:0;
    padding:0;
  /* Temporary borders */
    /* border:dashed 1px #f00; */
}

body{
  background-color: #2d200f;
  color: white;
  font-family: "Segoe Print", Tahoma, Arial, Helvetica, sans-serif;
  font-size: 1em;
}
#ContactHead
{
	display:none;
}

.txtCenter
{
	text-align: center;
}

.txtRight
{
	text-align: right;
}

a:link
{
	color:#67b0e3;
}

a:visited
{
	color:#67b0e3;
}

a:hover
{
	color:#fff;
}

a:active
{
	color:#67b0e3;
}

.TopBorder
{
    border-top: solid 2px #67b0e3;
}

.imgBrd
{

	margin:1em 1.5em;
}

.NoBullets
{
	list-style:none;
}

/* End of Global Sittings */

/* Applies to id="wrapper" */
#wrapper{
  width:62em;
  /* Center the wrapper */
  margin: 20px auto 0 auto; 
}

/* Applies to id="branding" */
#branding{
 position:relative;
} 

/* Fixes the mysterious image gap, if it occurrs */
#branding img{
  display:block;
}

#branding a{
  position:absolute;
}

#branding a:link, #branding a:visited {
  color:#dcb029;
}

/* Hover links in branding bar */
#branding a:hover{
  color:#dcb029;
}

/* Active link in branding bar */
#branding a:active{
  color:#dcb029;
}

/************* Leftcolumn division styles ****************/ 
#leftcolumn{
  /* Remember, content left margin must match this width */
   width:12em;
   float:left;
 /* Center images and text inside this div */
   text-align:center;   
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
}

#leftcolumn a:link,
#leftcolumn a:active,
#leftcolumn a:visited
{
	color:white;
	padding-left:1em;
}


#leftcolumn a:hover
{
	color:#67b0e3;
	padding-left:1em;
	font-size: 1.2em;
}

/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  border:solid 2px #67b0e3;
  padding:0.5em;
  width:80%;
  font-size:0.9em;
  margin:1em auto;
  text-align:left;
} 

/* Applies to id="content" */
#content{
  /* Left margin must match leftcolumn width */
  margin-left:12em;
  padding:10px 20px;  
  background-color: #2d200f;
  color: white;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  color:#67b0e3;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:2em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
}

/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
  font-style:normal;
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 40px; 
}

/* Applies to line height in the content division */
#content p{
  line-height:1.5em;
}

/* Applies to home page */
#HTop
{
	width:48.5em;
	height:20em;
}

#HTopLeft
{
	float:left;
	width:32em;
	height:20em;
	margin-left:0em;
}

#HTopRight
{
	float:right;
	height:20em;
	width:16em;
}

#HTopRight img
{

	margin-top:4em;
}

#HBottom
{
	width:47.5em;
	height:15em;
}

#HBottomLeft
{
	float:left;
	height:15em;
}

#HBottomRight
{		
	float:right;
	width:26em;
	height:15em;
}

#HBottomLeft img
{
	margin-top:3em;
}


/* Applies to id="footer" */
#footer{
  font-size: 0.8em;
  padding:0.5em;
  text-align:center;
}

#footer a:link,
#footer a:visited{
/* No underline on links */
  
}

#footer a:hover,
#footer a:active{
  color:#67b0e3;
  border: dotted 1px #dcb029;
}

.hotkey{
  text-decoration:underline;
}
/*End of Footer styles */

@media print{
/* Start printer-friendly styles */

/* Set wrapper to fill page width */
#wrapper{
width:100%;
}

/* Hide leftcolumn, navbar,and footer */
#leftcolumn,
#footer{
display:none;
}

/* Get rid of content div margins and
padding. Use a different font for print */
#content{
margin:0;
padding:0;
font-family:'Century Schoolbook', Times, Serif;
font-size:1em;
}

/*End printer-friendly styles */
}


