/*
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;
}
*/
/* RICK - NAVIGATION MENU BESIDE LOGO */

body.custom div#header {width: auto; float: left; display: inline; clear: none; border-bottom: 0;}
body.custom div#navigation {width: auto; float: right; display: inline; clear: none; border-bottom: 0; margin-top: 3%; margin-right: 5%;}
body.custom div#container {border-top: 0px solid #ccc;}


/* RICK - SQUARE BORDER AROUND ANY LEAF - CALL "red-line"  */

body.custom div.red-line {border: 1px solid #b32626;}

/* BLOCKQUOTE */


blockquote {
	margin: 10px 15px 1Opx 15px;
	padding: 10px 15px 10px 15px;
	border-width: 1px;
	border-style: solid;
	border-color: #ad0909;
	background-color: #F8FDFF;
	background-image: none;

	font-family: Georgia;
	font-size: 14px;
	font-weight: bold;
	color: #8f8f8f;
	}

hr {
  border: 0;
  width: 100%;
color: #ad0909;
background-color: #ad0909;
height: 1px;
}

p { 
text-align: justify; 
font-size:14px;
}


body.custom .round_corners
{ border-radius: 6px;
 -moz-border-radius: 6px;
 -webkit-border-radius: 6px;
}