/* CSS Document */

body {
	color:#333333; /* Default text color */
	background-color:#FFFFFF;
	background-image:url(blackorange/background_image.png);
	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;
}

blackorange {
	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:#FD9B09;
	float:left;
}
/* ==== End Dropcap properties ==== */

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

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

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

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

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

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

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

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

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

#menutop {
	background-image:none;
	border:none;
}

#menu {
	background-color:#FDFDFD;
	position:absolute;
	top:85px;
	left:50px;
	width:110px;
	height:405px;
	padding:15px;
	border:groove #333333 1px;
	font-size:14px;
}

#main {
	background-color:#FDFDFD;
	position:absolute;
	top:85px;
	left:205px;
	width:425px;
	min-height:500px;
	border:dotted #BCB3AE 1px;
	border:groove #333333 1px;
	padding:10px;
}

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

#text {
	visibility:visible;
}

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