/*****************************
 FileStructure of styles.css
*****************************
 - 1.0 LayoutStructure
 - 2.0 HeaderZone
      2.1 Head & Quote
      2.2 SkipLinks 
 - 3.0 ContentZone
      3.1 ArticleArea
      3.2 CodeExample
      3.3 Meta- & CommentZone
      3.4 CommentForm
 - 4.0 Navigation
      4.1 MainNavigation
      4.2 NavigationForm
 - 5.0 FooterZone
******************************/ 

/*****************************
 Layout Structure
*****************************/
html
{
	padding: 0px;
	margin: 0px;
	font-family: Verdana;
	font-size: 0.8em;
	line-height: 1.6em;
	
}
body
{
	background-color: #EEEEEE;
	background-image: url(../files/bg.gif);
	background-repeat: repeat-y;
	background-position: center top;	
	
}
#header
{
	position: absolute;
	top: 0px;
	left: 0px;
}

#main
{
	position: absolute;
	top: 0px;
	left: 50%;
	width: 900px;
	margin-left: -450px;
}

#content
{
	position: absolute;
	margin-top: 183px;
	margin-left: 300px;
	width: 580px;
	padding-bottom: 20px;
}
#breadcrump
{
position: absolute;
margin-top: 150px;
width: 600px;
margin-left: 300px;
text-align: left;
border-bottom: 1px solid #949494;
font-size: 0.8em;
padding-bottom: 3px;
}
#navigation
{
	position: absolute;
	margin-top: 180px;
	margin-left: 20px;
	width: 240px;
	line-height: 30px;
	background-color: #949494;	
}

a
{
	color: #116DC0;
}
a:visited
{
	color: #949494;
}
img
{
	border: 0px;
}

h1, h2, h3
{
	letter-spacing: 0.1em;
	font-weight: normal;
}
h1
{
	font-size: 1.4em;
}
h2
{
	font-size: 1.3em;
}
h3
{
	font-size: 1.2em;
}
#navigation a
{
	text-decoration: none;
	color: #000000;
}
#navigation ul
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;	
}
#navigation li
{
	padding-left: 0px;
}
.menu
{
	margin-bottom: 1px;
	background-color: #FFFFFF;
}
.menu_sub, .active
{
	margin-bottom: 1px;
	background-color: #e7f0f9;
}
.active_sub
{
	margin-bottom: 1px;
}
.active
{
	font-weight: bold;
}
.active_sub
{
	font-weight: bold;
	margin-left: 20px;	
}
.menu
{
	font-weight: normal;	
}
.menu_sub
{
	margin-left: 20px;
	font-weight: normal;	
}
.active a, .nav2nd .active a
{
	color: #0030FF;
}

.img_cell_left, .img_cell_right
{
	font-size: 0.8em;
}

.img_cell_left
{
	float: left;
	margin: 20px 20px 20px 0px;
}

.img_cell_right
{
	float: right;
	margin: 20px 0px 20px 20px;
	}
	
.code
{
	font-family: Courier New, Courier;
	background-color: #E7F0F9;
	border: 1px dotted #949494; 
	padding: 20px;
}


