/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

a {
	color: #000000;
	text-decoration: none;
}

a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   color: #fff;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */

#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   margin: 5px;
}

/* Header */

#header {
	height: 120px;
	margin: 10px;
	float: left;
}

#headerimage {
   	margin: 10px;	
	float: right;
}    

/* Menu */

#menu{
	margin-bottom: 10px;
	padding: 5px 5px 10px 10px;
	font-weight: bold;
	text-indent: 5px;
	clear: both;
}
#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}

/*main text area*/

#main {
    padding: 10px;
	margin: 10px;
	float: left;
	width: 90%;
	/*background-color: #ff9999;*/
	background: url(images/gradient.jpg) ;
}

#voucher {
    margin: 10px;
}

/*end main text area*/

/*sidebars*/

div#sidebar1 {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin: 0 10px 10px 10px;
   padding: 0 20px 10px 10px;
}

/*end sidebars*/

/*background image area*/

#image {
    padding: 10px;
	margin: 10px;
	float: right;
	width: 25%;
}    
/*end background image area*/

/* HEADINGS */
#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
#content h2 {
   color: #ff0000; 
   font-size: 2em; 
   text-align: left; 
/* some air around the text */
   padding: 1em 0 1em 0.5em;
}
#content h3 {
   color: #ff0000; 
   font-size: 1.3em;
   line-height: 1.3em;
   padding: 0 0 0.5em 0.5em;
}
#content h4 {
   color: #ff0000; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
#content h5 {
   font-size: 1.2em;
   color: #ff0000;
   background: #ff9999;
   text-align: center;
   line-height: 1.3em;
   margin: 0 0 10px 20px;
   padding: 10px;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

/* END HEADINGS */

/* TEXT */
p {
   color: #000000;
   font-size: 1.4em;
   margin: 0.5em 0.5em 1.5em 15px;  /* some air around p elements */
   line-height:1.4em;   
}

#footer {
   clear:both;       /* keep footer below main and menu */
   color: #fff;
   background-color: #ff9999; /* same bg color as in main */
   margin: 10px;
}
#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}