html{
	font-size:100%;
}
body{
	font-size:62.5%
}

/*PRIMARY DIVs*/
#main{ /*container that has all the other elements */
	width:90em;
	margin:auto;
}
#navigation{ /*drop-down menus and header on the top */
	position:absolute;
	font-family:Arial;
	font-size:1.5em;
	z-index:1000;
}
#blank{ /*blank div to regulate the distance between drop-down menu and text itself */
	position:relative;
	height:6.5em;
}
#topbar{
	font-size:1.2em;
	margin:2em;
	text-align:right
}
#logo{
	position:absolute;
	text-align:left;
	margin:2em;
}
#pages{ /*box containing ilustration and page browser */
	position:relative;
	float:right;
	clear:left;
	margin:20px;
	padding:5px;
	border:2px solid;
}
#text{
	position:relative;
	clear:left;
	z-index:1;
}
#arrows{
	position:relative;
	margin-bottom:1em;
	font-size:1.5em;
	font-weight:bold;
	font-family:'Garamond';
	cursor:pointer;
}

#OK {
	cursor:pointer;
}
#OK:hover {
	color:blue;
}
#nav {
	position:relative;
	top:10px;
}

/*TAGS*/
h1 {
	font-size: 2.5em;
	font-family:Cambria, Garamond, serif;
	margin-bottom: 5px;
}
h2 {
	font-weight: bold;
	font-size: 1.2em;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
	margin-bottom: 2px;
}
p {
	font-size: 1.3em;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, sans-serif;
	margin-bottom: 0.8em;
}

.cursor, #left, #right{
	cursor:pointer;
}
.cursor:hover, #left:hover, #right:hover{
	color:#0000CC;
}
#navigation img{
	margin-bottom:5px;
}
#text a{
	color:#0000CC;
	text-decoration:none;
}
#text a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}

.nowrap {
	white-space:nowrap;
}
.info {
	font-style:italic
}


/*MENU*/
#navigation ul {
	list-style: none;
	margin:0;
	padding:0;
}
#navigation ul li{
	position:relative;
	background-color:white;
	margin-right:5px;
	width:10.5em;
	float:left;
}
li ul{
	position: absolute;
	display:none;
}
ul#nav li a{
	display:block;
	text-decoration:none;
	padding:3px;
	background-color:red;
	color:white;
	border:1px solid white;
}
ul#nav li a:hover{
	background-color:black;
}
li:hover ul {
	display: block;
}
li.dropdown ul{
	display:block;
}
.self{
	padding:3px;
	border:1px solid;
}