/* 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: #fff url(../images/fabric1.jpg);
  font-family: Arial, Helvetica, sans-serif;
}

acronym, abbr{
  border-bottom:dotted 1px #333;
  cursor:help;
}

.txtCenter
{
	text-align: center;
}
/* End of Global Sittings */

/* Applies to id="wrapper" */
#wrapper{
  background-color: #250e99;
}

/************* 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;
   color: #fff;
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
}

/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  border:solid 2px #fff;
  padding:0.5em;
  width:80%;
  font-size:0.8em;
  margin:1em auto;
  text-align:left;
} 

/* Applies to id="content" */
#content{
  /* Left margin must match leftcolumn width */
  margin-left:12em;
  background-color:#fff;
  color:#000;
  padding:10px 20px;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-serif;
  color: #250e99;
  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 id="footer" */
#footer
{
  margin-left:14.5em;
  background-color:#fff;
  border-top: solid 4px #250e99;
  border-bottom: solid 4px #250e99;  
  padding:10px 20px;
  text-align:center;
  color: #250e99;
  font-weight:bold;
  font-size:small;
}
#footer a:link,
#footer a:visited{
/* No underline on links */
  text-decoration:none;
}

#footer a:hover,
#footer a:active{
  color:#250e99;
  border: dotted 1px #000;
}

.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 */
}


