/* General style */
body {
	background-color: #e3e2a9;
	color: #222;
	min-width: 600px;
}

/* Header Style */
.header {
	background: url('/img/buddi.jpg'); /* Image in header, with positioning information */
	background-repeat: no-repeat;
	background-position: 50px center;
	background-color: #236bc3;
	height: 150px;
	
	border-left: 8em solid #dfc700;  /* Complimentary colored square on left side, above sidebar*/
}

.headerText {
	font-family: Arial, Helvetica, Sans-Serif;
	color: #111;
	background-color: transparent;
	float: right;
	margin-top: 20px;
	margin-right: 20px;
}

/* Content Style */
.content {
	border-top: 0.5em solid black;
	margin-bottom: 15px;
	float: left;
}

.contentText {
	background-color: white;
	
	border-top: 0.4em solid black;
	border-bottom: 0.5em solid black;

	padding: 1em;
	padding-top: 1.5em;
	padding-left: 5em;
	padding-right: 1em;
	margin-left: 10em;
}

/* Used to keep the minimum height for the content, but keep the footer below it. */
.contentSpacer {
	min-height: 40em;
}	

.contentText h2 {
	margin-top: 1em;
}

/* Footer Style */
.footer {
	background-color: white;
	color: black;
	height: 5em;
	width: 100%;
}

.footerText p {
	background-color: white;

	position: relative;
	text-align: right;
	padding: 3em;
	padding-right: 2em;
	padding-bottom: 1em;	
	font-size: x-small;
	color: #333;
	background-color: transparent;
}

/* Sidebar Style */
.menu {
	float: left;
	display: inline;
	width: 15em;
	
	background-color: #80b4ea;
	margin-right: 2em;
	margin-bottom: 1em;
	padding-top: 0.5em;

	border-right: 0.2em solid black;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: small;
	font-weight: bold;
}	

/* Sidebar lists */
.menu ul {
	position: relative;
	margin-bottom: 1em;
	padding-left: 0.5em;
	padding-top: 0em;
	padding-bottom: 0.5em;
	font-size: 1em;
}

.menu li {
	list-style: none;
	margin-top: 0px;
	font-size: 1em;
}

/* Text Styles */
h1, h2, h3 {
	font-family: Arial, Helvetica, Sans-Serif;
	font-weight: bold;
	margin: 0px;
}

/* Header styles in headerText section */
.headerText h1 {
	padding: 0.5em;
	font-size: 2.5em;
	border-bottom: 0.1em solid black;
}
.headerText h2 {
	padding: 0.5em;
	font-size: 1em;
}

/* Header styles in contextText section */
.contentText h1 {
	font-size: x-large;
}
.contentText h2 {
	font-size: large;
}
.contentText h3 {
	font-size: medium;
}

/* General formatting for paragraphs and lists */
p, ul, ol {
	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
	font-size: 0.9em;
	text-align: justify;
	margin: 1em;
	margin-top: 0em;
	padding-top: 0.3em;
}

.contentText ol li, .contentText ul li {
	margin-left: 1em;

}

/* Blocks which should wrap text around them */
.right {
	float: right;
	padding: 1em;	
}

.left {
	float: left;
	padding: 1em;	
}

.cleared {
	clear: both;	
}


/* Code segments */
.code {
	font-family: Monospace;
	font-size: medium;
	color: #333
	background-color: #ccc;
	text-align: left;
}

/* Color sidebar links correctly */
.menu a:link, .menu a:visited, .menu a:active {
	color: #022346;
	background-color: transparent;
	text-decoration: none;
}
.menu a:hover {
	color: #022346;
	background-color: transparent;
	text-decoration: underline;
}

/* Color standard links correctly */
a:link, a:visited, a:active {
	color: #236ab3;
	background-color: transparent;
	text-decoration: none;
}
a:hover {
	color: #084788;
	background-color: transparent;
	text-decoration: underline;
}

table {
	border-collapse: collapse;	
}

col.column1 {
	width: 40%;
}

col.column2 {
	width: 60%;
}

td, th {
	border: 1px solid black;	
}

.ad_text {
	border: 1px solid black;
	color: #022346;
	background-color: #80b4ea;
	padding: 1em;
	width: 500px;
	font-family: Times;
	font-size: small;
	text-align: justify;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;		
}
