/* LeftColFullNavFloat.css */

/* Block all default margins and padding */
* {
    margin: 0;
    padding: 0;
}

body {
	/* Required to center wrapper in old browsers */
    text-align: center;
	/* The rest is optional, style to taste */
    background-color: #ece9d8;
	background: url(/images/snowflakes.gif);
	font-family: Verdana, Geneva, Sans-Serif;
}
/* Level 1 headings */
h1
 {
	font-family: "Lucida Sans", Verdana, Geneva, Sans-Serif;
	font-weight: bold;
	font-size: 45px;
	text-align:center;
	color: #066; /* black */
}

/* Level 2 headings */
h2
 { font-family:   "Lucida Sans", Verdana, Geneva, Sans-Serif;
color: #000;  /* black */
text-align: left;
font-weight: bold;
font-size: 24px;
} 

/* Level 3 headings */
h3
{ 
 font-family: "Lucida Sans", Verdana, Geneva, Sans-Serif;   
 font-style:italic;
 text-align: center;
 color: #000; /* black */
}
/* Level 4 headings */
h4
 { font-family: Geneva, "Lucida Sans", Verdana, Geneva, Sans-Serif;
 font-style: italic;
 text-align:center; 
 color: #000;/* black */
 
}
/* Level 5 headings */
h5
 {
	font-family:  "Lucida Sans", Verdana, Geneva, Sans-Serif;
	font-style: italic;
	text-align:center;
	font-size:18px;
	color: #6b2223; /* burgundy */
}

p.tip 
{
	background-color:#6b2223;
	margin-left:100px;
	margin-right:100px;
	padding:5px;
	border:solid thin #066;
	color:#FFFFFF;
	text-align:center;
}

p.tip2
{
background-color:#6b2223;
	margin-left:100px;
	margin-right:100px;
	padding:5px;
	border:solid thick #066;
	color:#FFFFFF;
	text-align:left;
}

a:link {
	color: #006699;
}
a:visited {
	color: #6b2223;
}
a:hover {
	color: #6b2223;
}
a:active {
	color: #066;
}

/* Wrapper sizes the layout */
#wrapper {
	/* Sets width of fixed or elastic layout */
    width: 60em;
	/* Centers the layout (newer browsers) */
    margin: 0 auto;
	/* The rest is optional, style to taste */
    background-color: #ece9d8;
}



/* ---------------------- Start layout division styles ---------------------- */
/* Branding division */
#branding {
	/* Style to taste */
    height: 11em;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: 3em;
	background-color:#066;
	background-image: url(/images/snowflakes.gif);
	border-bottom: solid 3px #6b2223;
}

/* Heading 1 tags in branding division */
#branding h1 {
	margin-left: 150px;
	font-size:2.5em;
	font-family: "brush script", veranda, geneva, "times roman";
}
/* Fixes the mysterious image gap */
#branding img{
  display:block;
}

/* Left column */
#leftcolumn {
	float: left;
	/* Style to taste */
    width: 10em;
	background-color: #ece9d8;
		}
		
/* Applies to paragraphs and lists in the leftcolumn division */ 
#leftcolumn p, 
#leftcolumn .leftcollist{ 
  border:none;
  padding:8px; 
  width:80%; 
  font-size:0.8em; 
  margin:1em auto; 
  text-align:left; 
  
} 
/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  border:solid 2px #117b6f;
  padding:0.5em;
  width:80%;
  font-size:0.8em;
  margin:1em auto;
  text-align:left;
}
/* Applies to unordered lists in the left column */ 
#leftcolumn ul{ 
  margin-left:1em; 
}

/* Navbar division */
#navbar {
	/* Style to taste */
    height: 2em;
	background-color: #ece9d8;
	border-bottom: solid 3px #6b2223;	
}
/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}
/* List items in the navbar */ 
#navbar li{ 
  float:left; 
  /* Required for drop-down menus */ 
  position:relative; 
} 

/* Applies to navbar links, visited and unvisited */
#navbar a,
#navbar a:link,
#navbar a:visited{
 text-decoration:none;
 font-family: Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background-color:#ece9d8;
  background:#ece9d8;
  display:block;
  height:2em;
  width:9.8em;
  border-right:solid 1.5px #066;
  text-align:center;
  line-height:2em;
  outline-style:none;
}
/* Navbar hover, active, and current page links */ 
#navbar a:hover, 
#navbar a:active, 
#navbar li.selected a:link, 
#navbar li.selected a:visited{ 
  background:#ece9d8; 
  color:#000; 
} 

/* Drop-down menu styles */ 
/* Applies to drop-down menus in navbar */ 
#navbar li ul{
	position:absolute;
	z-index:100;
	visibility:hidden;
	border:solid 2px #6b2223;
} 

/* Make drop-down visible on navbar hover */ 
#navbar li:hover ul, 
#navbar li a:hover ul{ /* IE6 hack */ 
  visibility:visible; 
  top:1.6em; 
  left:0; 
} 


/* Applies to links on the drop-down menu */ 
#navbar li:hover ul li a, 
#navbar li a:hover ul li a{ /* IE6 hack */ 
  background:#ece9d8; /* Removes background image */ 
  color:#000; 
  text-align:left; 
  display:block; 
  width:10em; 
  padding:0 0 0 1em; 
  height:auto; 
} 

/* Hover on drop-down menu links */ 
#navbar li:hover ul li a:hover, 
#navbar li a:hover ul li a:hover{ /* IE6 hack */
	background: #6b2223;
	color:#FFFFFF;
} 

/* IE6 hack applies to its table drop-down */ 
#navbar table { 
  margin:-1px; 
  border-collapse:collapse; 
  position:absolute; 
  top:0.5em; 
  left:0; 
  z-index:100; 
} 
/* Content division */
#content {
	/* Leave room for leftcolumn */
    margin-left: 12em;
	/* Optional, style to taste */
    text-align:left;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	background-color: #F6F5F0;
	color:#000;
}

#content ul
{
	margin:0;
	padding-left:30px;
	list-style-position: outside;
	list-style-image: url(images/smlanibutt.gif);
}


#content img {
margin-left: 1em;
margin-right: 1em;
}


/* Footer division */
#footer {
	/* Clear floated column */
    clear:left;
	/* Optional, style to taste */
    background-color: #ece9d8;
	color: #000;
	border-top: solid 3px #6b2223;
	min-height: 2em;
}

/* Level 3 headings */
#footer h3
{ 
 font-family: Geneva, "Lucida Sans", Arial, Helvetica, sans-serif;   
 font-style:italic;
 text-align: center;
 color: #000; /* black */
}
/* ---------------------- End layout division styles ---------------------- */

/* ---------------------- Start Content division styles ------------------- */
/* Heading 1 tags in content division */
#content h1 {
    margin-left: 10px;
    font-size: 1.5em;
}
#content h2 {
    margin-left: 10px;
    font-size: 1em;
}


/* Paragraphs in content division */
#content p {
    font-size: 0.75em;
    line-height: 1.2em;
    margin: 1em 12px;
}



/* Bulleted lists in content division */
#content ul {
    font-size: 0.85em;
    margin: 1em 20px 1em 40px;
}

#content ul li {
	margin-bottom: 0.5em;
	font-size: .85em;
	}
	
	@media print{
/* Start printer-friendly styles */

/* Make wrapper the full page width */
#wrapper{
width:100%;}

/* Hide leftcolumn, navbar,and footer */
#branding, 
#leftcolumn,
#navbar,
#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 */
