/*
To get started customizing with CSS, we recommend you 
go to http://headwaythemes.com/documentation/customizing-your-headway-site/custom-css/ 
to get started.

When writing the selectors for the elements, put body.custom at the
beginning.

For an example on how to change the background with custom CSS
we can use the following code.

body.custom {
	background: red;
}
*/

body.custom {
	background-color: #F2BCB0;
}

div#wrapper {
         margin: 0px auto;
         padding: 0px;
	background-color: #F2BCB0;
}

div#container {
         margin: 0px;
}

div#header {
         margin: 0px;
         padding: 0px;
}

div#sidebar18 {
        background-color: #7F4343;
        width: 170px;
      	height: 800px;
        margin: -10px 20px 0px 0px;
        /*border: 0px solid #7f4343;*/
}

div.sidebar {
        width: 170px;
      	height: 800px;
        margin: -10px 20px 0px 0px;
        /*border: 0px solid #7f4343;*/
        background-color: #7F4343;
        font-size: 16px;
}

div#footer {
         margin: 0px 0px 10px 0px;
         padding: 0px 0px 10px 0px;
}

td {
         padding: 10px;       
}

a:link, a:visited {
         text-decoration: none;
         outline: none;
}