/*
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;
}
*/

/* Fixed Large Background Image */
body.custom {
background-image: url('http://ntabatours.com/wp-content/uploads/2010/06/brown-simple.jpg');
background-color: #fbfffe;
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
}
body.custom div#header {background: none;}
body.custom div#wrapper {border: none;}

/* Headway Navigation Hover */
body.custom div#navigation ul.navigation li.page_item a:hover {
background: #d6d6d6; 
color: black;
text-decoration: underline; 
width: 85%;}

/* Block style (solid box) for headway nav bar */
body.custom div#navigation ul.navigation li a {
display: block;
width: 85%;
border-left: solid;
border-color: #d1d1d1;
border-width: 1px;}


/* Custom Navigation Bar LEAF*/
body.custom div.leaf-content ul.horizontal-navigation li a {background: white;}


