/***** Areas *****/
.header {
	background-color: #FFFFFF;
	padding: 15px;
}

.warning {
	text-align: center;
	font-family: verdana;
	font-size: 15px;
	border: 2px #202020 solid;
	background-color: #B0B0B0;
}

body {
	margin: 0px;
	text-align: justify;
	font-family: verdana;
	font-size: 12px;
	background-color: #E5E5E5;
}

p {
	padding-bottom: 20px;
}

section {
	margin-left: auto;
	margin-right: auto;
	vertical-align: top;
	#margin-left: 5%;
	#margin-right: 5%;
	width: 850px;
	border: 1px #bbbbbb solid;
	border-radius: 5px;
	padding: 15px;
	background-color: #FDFDFD;
	color: #202020
}

/***** Hyperlinks *****/
a {
	color: #9DDC38;
	text-decoration: none;
}

a.docLink {
	color: #4889f1;
	text-decoration: none;
	font-size: 15px;
	font-family: DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace;
}

a.clintLink {
	color: #303030;
	text-decoration: none;
	font-weight: bold;
	font-size: 15px;
	font-family: DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace;
}

a.title {
	color: #202020;
	font-weight: bold;
}

/***** Titles *****/
h1 {
	margin-left: 3%;
	margin-right: 3%;
	margin-top: 50px;
	margin-bottom: 30px;
	border: 2px #0839a1 solid;
	border-radius: 5px;
	padding: 15px;
	color: #ffffff;
	background-color: #4889f1;
	box-shadow: 3px 3px 4px #050505
}

h2 {
	color: #8DCC28;
}

h3 {
	border-radius: 50px;
	padding-top: 10px;
	font-family: Verdana;
	font-size: 14px;
}


.image {
	font-size: 12px;
	font-style:italic;
	text-align: center;
	padding: 20px;
	background-color: #EEEEEE;
	border: 2px #AAAAAA solid;
	border-radius: 5px;
	width: 100%;
}


/***** Code *****/
.code {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 15px;
	margin-top: 15px;
	padding-left: 30px;
	font-family: courier;
	font-size: 14px;
	border: 2px #AAAAAA solid;
	border-radius: 5px;
	counter-reset: listing;
}
code {
	counter-increment: listing;
}
.code code:before {
	content: counter(listing) ". ";
	color: gray;
}

/***** Menu *****/
.menu {
	padding-left: 50px;
}

a.menuItem {
	margin-left: 25px;
	color: #8DCC28;
	text-decoration: bold;
	font-size: 18px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

a.menuItem#current {
	border-bottom: 5px #8DCC28 solid;
}
