/*-------------------  styles.css -----------------------------*/
/* Hex Colours                                                 */
/* #ced9ee : pale blue                                         */
/* #5b583b : charcoal                                          */
/* #92a3d2 : sky blue                                          */
/* #0072ce : bright blades blue                                */
/* #fedd00 : bright blades yellow                              */
/* #9bcbeb : bright blades pale blue                           */
/* #f0ebe1 : bright blades beige                               */
/*-------------------------------------------------------------*/
/* html link = <link href="_css/styles.css" rel="stylesheet" type="text/css"> */

html, body {
	background: #5b583b;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	color: #53583b;
}
body {
	font: 100% Verdana, Geneva, sans-serif;
	width: 82%;
	margin-right: auto;
	margin-left: auto;
	padding: 2.5% 2.5% 0;
	background: white;
	line-height: 1.8;
    min-height: 600px;
}
h1 {
	font-size: 1.6em;
	margin-bottom: .4em;
	color: #92a3d2;
}
h2 {
	font: 1.2em Verdana, Geneva, sans-serif;
	margin-bottom: .2em;
}
h3 {
	font-size: 1.2em;
}
#navbar ul li{
    font-size: 90%;
}
p {
	margin-bottom: 1em;
}
a {
	color: rgb(184, 126, 84);
}
a:hover {
	color: rgb(120, 97, 55);
}
pre {
	font-size: 1.4em;
	color: white;
	padding: .5em 1em;
	border-left: 1em solid #A68048;
	background: #666;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
	width: 80%;
}
pre.wrong {
	border-left-color: red;
}
pre.correct {
	border-left-color: green;
}
dt {
	font-style: italic;
	font-size:1.2em;
}
dd {
	margin-bottom: 1.4em;
}
table {
	margin-top: 1em;
}
caption {
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
	text-align: left;
}
td, th {
	padding: 10px;
}
.center {
	text-align: center;
}
header h2 {
	padding-bottom: .2em;
	border-bottom: 1px solid gray;
}
aside {
	padding: 1em;
	background:rgb(83, 104, 138);
	color: white;
	margin-bottom: 1em;
}
aside h4 {
	color: white;
}
footer {
	border-top: 1px solid gray;
	text-align: center;
	font-size: .8em;
	line-height: 4em;
	margin-top: 1em;
    width: 800px;
}
blockquote {
	font-style: italic;
}
.flowRight {
	float: right;
	margin-left: 10px;
}
.flowLeft {
	float: left;
	margin-right: 10px;
}
.flowNormal {
    float: normal;
}

.blue{
    color: blue;
}

.red{
    color: red;
}

.boldred{
    font-weight: bold;
    font-size: 1.2em;
    color: red;
}

.brightbladesblue{
    color: #0072ce;
}

.brightbladesyellow{
    color: #fedd00;
}

#to-do-list {
    float: left;
    width: 550px;
    height: 250px;
    padding: 0px 5px 5px 10px;
    margin: 2px;
    border: none;
    background-color: white;
} 
#homeplan {
    float: right;
    border: 2px solid blue;
    width: 236px;
    margin: 2px;
    height: 250px;
}
#homeplan ul li {
    list-style-type: none;
    margin: 0;
    padding: 0px;
    overflow: hidden;
}

#advertise {
    float: right;
    border-top: 2px solid #0072ce;
    border-bottom: 2px solid #0072ce;
    border-left: none
    border-right: none
    padding: 2px;
    width: 260px;
    height: 134px;
    margin-top: 10px;
    margin-right: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
    background-color: #f0ebe1;
}
#centered {
    float: inherit;
    border-top: 2px solid #0072ce;
    border-bottom: 2px solid #0072ce;
    border-left: none
    border-right: none
    padding: 2px;
    width: 500px;
    height: 500px;
    margin-top: 10px;
    margin-right: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
    background-color: #f0ebe1;
}
footer {
    clear: both;
}