/* CSS Document */

body {
	color:#000000; /* Default text color */
	background-color:#000000; 
	font-family:'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size:12px;
}

/* Element properties. These properties will decide how these elements appear in index.html or any other html document linking to this css file */
h1 { 
	font-size:16px;
	font-style:oblique;
}

h2 { 
	font-size:13px;
	font-style:oblique;
}

img {
	border:none;
}

ul {
	list-style:georgian;
	color:#464648;
	background:none;
	font-weight:300;
}

hr {
	color:#D7D4DF;
	background-color:transparent;
	height:1px;
	width:400px;
	border:none;
	border-bottom:2px dotted #D7D4DF;
}
/* ==== End element properties ==== */

/* Dropcap properties. Will change the appearance of the first letter of any paragraph using class="dropcap" */
p {
	line-height:150%;
}

p.dropcap:first-letter {
	font:bold 300% 'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-weight:300;
	font-style:oblique;
	margin-right:3px;
	color:#A2A474;
	float:left;
}
/* ==== End Dropcap properties ==== */

/* Link poperties */
a:link {
	color:#636363;
	text-decoration:underline;
}

a:visited {
	color:#B9ACAC;
	text-decoration:none;
}

a:active {
	color:#B9ACAC;
	text-decoration:none;
}

a:hover {
	color:#636363;
	text-decoration:none;
}
/* ==== End link properties ==== */

/* Menu link poperties */
.menu a:link {
	color:#636363;
	text-decoration:underline;
}

.menu a:visited {
	color:#B9ACAC;
	text-decoration:none;
}

.menu a:active {
	color:#B9ACAC;
	text-decoration:none;
}

.menu a:hover {
	color:#636363;
	text-decoration:none;
}
/* ==== End menu link properties ==== */

/* Div ids. Position, sizes colors of the different boxes (divs) in page */
#header {
	background-image:url(black/header.png);
	position:absolute;
	top:5px;
	left:50px;
	width:480px;
	height:55px;
	font-size:34px;
	padding-top:5px;
	padding-left:120px;
}

#menutop {
	background-image:url(black/menutop.png);
	position:absolute;
	top:65px;
	left:50px;
	width:140px;
	height:50px;
	border-right:dotted #BCB3AE 1px;
}

#menu {
	background-color:#FFFFFF;
	background-image:none;
	position:absolute;
	top:115px;
	left:50px;
	width:110px;
	height:405px;
	padding:15px;
	border-right:dotted #BCB3AE 1px;
	border-bottom:dotted #BCB3AE 1px;
	font-size:14px;
}

#main {
	background-color:#FFFFFF;
	position:absolute;
	top:75px;
	left:205px;
	width:420px;
	min-height:500px;
	border:dotted #BCB3AE 1px;
	border-right:dotted #D7D4DF 1px;
	padding:10px;
}

#footer {
	position:absolute;
	left:65px;
	top:575px;
	color:#A2A474;
	background-color:transparent;
}

#text {
	visibility:visible;
}

/* ==== End div id properties ==== */