/*
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;
}
*/

/* Repeating Background Image */
body.custom {
background-image: url('/wp-content/uploads/FCbackground.jpg');
background-repeat: repeat; }

/* Change h5, h6 text */
body.custom h5 { font-size: 1.4em; font-weight: bold; color: #669999; text-align:left; line-height: 24px;}
body.custom h6 { font-size: 1.2em; font-weight: bold; color: #4e3c31; text-align:left; line-height: 21px;}

/* Change height of navigation bar (default padding:10px;) */
body.custom ul.navigation li a:link, ul.navigation li a:visited { padding: 5px; }

/* remove padding from Wrapper */
body.custom  #container {margin:0; }

/* adding extra space between nav buttons - nav border doesn't work in visual editor */
ul.navigation li.current_page_item a:link, ul.navigation li.current_page_item a:visited, ul.navigation li.current_page_item ul, ul.navigation li.current_page_parent a:link, ul.navigation li.current_page_parent a:visited, ul.navigation li.current_page_parent ul, ul.navigation li.current_page_ancestor a:link, ul.navigation li.current_page_ancestor a:visited, ul.navigation li.current_page_ancestor ul {
border-right-width:5px; }

ul.navigation li a:link, ul.navigation li a:visited, ul.navigation li ul {
border-width:5px;
}

/* Adding bottom border width to leaf title - won't stay using visual editor */
body.custom .leaf-top, div.box input.inline-title-edit {
border-bottom-width:2px;
}

/* moving Home in nav bar to the right */
body.custom.header-fixed div#navigation {
padding-left: 10px;
}
#navigation {
width:890px;
}

/* class for Aweber Newsletter/E-course opt-in box */
.signupframe {
border: 2px solid #669999;
background: #e2eaea;
}

/* Change color of blog sidebars left border */
body.custom div#leaf-2 { border-left: 2px #bc4212 groove;}
body.custom div#leaf-8 { border-left: 2px #bc4212 groove;}
body.custom div#leaf-12 { border-left: 2px #bc4212 groove;}
body.custom div#leaf-14 { border-left: 2px #bc4212 groove;}

/* Change width of content leaf of Author Archive */
body.custom div#leaf-7 { width: 530px;}