/*
Theme Name: EA mainsite
Theme URI: http://eventagenda.com/
Description: Commercial site about EventAgenda.com.
Version: 1.6
Author: Tim Remmerswaal
Author URI: http://timr.nl/
Tags: none

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php

*/


/* -----------------------------------------------------------
Stylesheet for EventAgenda.com

	COLOR USAGE
-----------------------------------------------------------
	Color		Full		Medium		Light
	Blue		#0099cc		#bfe5f2		#e5f5fa
	Green		#98cc00		#e5f2bf		#f4fae5
	Black		#333333		#999999		#f7f7f7


	CHAPTERS
-----------------------------------------------------------
	1.	CSS RESET
	2.	Page Building
	3.	Navigation
	4.	Text
	5.	Buttons
	6.	Forms
	7.	Lists
		7.1	Form result list
		7.2 Form event list


	
	1. CSS RESET
	v1.0 | 20080212 http://meyerweb.com/eric/tools/css/reset/
	
----------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -----------------------------------------------------------
	
	2. PAGE BUILDING
	
----------------------------------------------------------- */


body {
	margin: 0px;
	padding: 0px;
	background:url(images/bg_header.png) repeat-x;
	background-color:#f7f7f7;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 18px;
	font-size:12px;
}

#page {
	width: 960px;	
	margin: 0px auto;
}

#header {
	height: 176px;
	background-image:url(images/glow.png);
	background-position:center;
	background-repeat:no-repeat;
}

#footer {
	clear: both;
	height: 266px;	
	background:url(images/bg_footer.png) repeat-x;
	font-size:10px;
	color: #FFF;
}


/* -----------------------------------------------------------
	
	. HOMEPAGE
	
----------------------------------------------------------- */

#bodyhomepage {
	background:url(images/bg_header_home.png) repeat-x;
	background-color:#f7f7f7;
}

#header.homepage {
	height: 486px;
	background-image:url(images/glow_home.png);
	background-position:bottom;	
}

#header.homepage ul.mainnav li ul {
	display: none;
}


.intro {
	width: 380px;
	height: 310px;
	float: left;
	clear: left;
	margin: 90px 0 0 10px;
	position: relative;
}

.intro .head {
	text-indent:-99999px;
	background-image:url(images/ea_home.png);
	height: 82px;
	width: 292px;
}

.intro p {
	line-height: 26px;
	margin: 30px 0 30px 5px;
	font-size:14px;
}

.intro p a {
	color: #FFF;
}

#app_preview {
	height: 354px;
	width: 558px;
	background-image:url(images/app_preview.png);
	margin: 86px 0 0 0;
	float: right;
}


/* -----------------------------------------------------------
	
	. AGENDAS HOME
	
----------------------------------------------------------- */

#header.agendas ul.mainnav li.current_page_item ul,
#header.agendas ul.mainnav li.current_page_parent ul {
	position: absolute;
	top: 155px;
	right: 10px;
	display:inherit;
}

#bodyagendas h1 {
	font-size: 18px;
	color: #333;
	margin: 35px 0 30px 10px;
}

#header.agendas ul.mainnav li.current_page_item a {
	color: #ccc;
/*	background: none; */

}

#header.agendas ul.mainnav li a {
	color: #ccc;	
}

#header.agendas ul.mainnav li ul {
	display: none;
}

#content.agendas p {
	margin: 10px;	
}


/* -----------------------------------------------------------
	
	. ABOUT HOME
	
----------------------------------------------------------- */

#header.about ul.mainnav li.current_page_item ul,
#header.about ul.mainnav li.current_page_parent ul {
	position: absolute;
	top: 125px;
	left: 0px;
	display:inherit;
	background:url(images/bg_subnav_left.png) repeat-y;
	width: 220px;
}

#header.about ul.mainnav li.current_page_item ul li,
#header.about ul.mainnav li.current_page_parent ul li {
	width: 200px;
	height: 20px;
	float: left;
	display:block;
	margin: 0px;
	text-align: left;
	vertical-align:bottom;
	padding: 7px 0px 3px 10px;	
}

#bodyabout h1 {
	font-size: 18px;
	color: #333;
	margin: 35px 0 30px 10px;
}

#header.about ul.mainnav li.current_page_item ul li a,
#header.about ul.mainnav li.current_page_parent ul li a {
	color: #666;
	background: none;
	text-transform:none;
	width: 190px;
	display:block;
	margin: 0px;
	padding: 0px;
}

#header.about ul.mainnav li.current_page_item {
/*	background:none; */
}

#header.about ul.mainnav li.current_page_parent ul li.current_page_item {
	background-color: #99cc00;
}
#header.about ul.mainnav li.current_page_parent ul li.current_page_item a {
	color: #fff;
}

/*#header.about ul.mainnav li a {
	color: #666;
	text-transform:none;
}*/

#header.about ul.mainnav li ul {
	display: none;
}

#content.about {
	width: 730px;
	margin-left: 230px;
}

#content.about p {
	margin: 10px;	
}


/* -----------------------------------------------------------
	
	. WEBLOG HOME
	
----------------------------------------------------------- */

#header.weblog ul.mainnav li.current_page_item ul,
#header.weblog ul.mainnav li.current_page_parent ul {
	position: absolute;
	top: 125px;
	left: 0px;
	display:inherit;
	background:url(images/bg_subnav_left.png) repeat-y;
	width: 220px;
}

#header.weblog ul.mainnav li.current_page_item ul li,
#header.weblog ul.mainnav li.current_page_parent ul li {
	width: 200px;
	height: 20px;
	float: left;
	display:block;
	margin: 0px;
	text-align: left;
	vertical-align:bottom;
	padding: 7px 0px 3px 10px;	
}

#bodyweblog h1 {
	font-size: 18px;
	color: #333;
	margin: 35px 0 30px 10px;
}

#header.weblog ul.mainnav li.current_page_item ul li a,
#header.weblog ul.mainnav li.current_page_parent ul li a {
	color: #666;
	background: none;
	text-transform:none;
	width: 190px;
	display:block;
	margin: 0px;
	padding: 0px;
}

#header.weblog ul.mainnav li.current_page_item {
/*	background:none; */
}

#header.weblog ul.mainnav li.current_page_parent ul li.current_page_item {
	background-color: #99cc00;
}
#header.weblog ul.mainnav li.current_page_parent ul li.current_page_item a {
	color: #fff;
}

/*#header.about ul.mainnav li a {
	color: #666;
	text-transform:none;
}*/

#header.weblog ul.mainnav li ul {
	display: none;
}

#bodyweblog #content {
	width: 730px;
	float: right;
	margin-top: 20px;
		
}

#bodyweblog #content p {
	margin: 10px;	
}

#bodyweblog #sidebar {
	width: 200px;
	float: left;
}

#bodyweblog .post_title {
	border: solid #eaeaea 1px;	
	border-bottom: 0px;
	background-color:#eaeaea;
	color:#ccc;
	font-size: 10px;
	padding: 5px 10px 5px 10px;
	margin: 0px 10px 0px 10px;

	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
		
}

#bodyweblog h2 {
	color:#A7CD2C;
	font-family:Helvetica,Arial,sans-serif;
	font-size:22px;
	font-weight:normal;
	margin:25px 0 10px 0px;
}

#bodyweblog #content h2 {
	margin: 5px 0 10px 0px;	
}

#bodyweblog #content a {
	color:#A7CD2C;
	
}

#bodyweblog #content h2 a {
	color:#A7CD2C;
	text-decoration:none;
}

#bodyweblog #content .post {
	margin: 0px 10px 0px 10px;
	padding: 20px;
	background-color:#FFF;
	border: 1px solid #eaeaea;


}

.postmetadata {
	border: solid #eaeaea 1px;	
	border-top: 0px;
	background-color:#000;
	color:#ccc;
	font-size: 10px;
	padding: 5px 10px 5px 10px;
	margin: 0px 10px 20px 10px;

	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	
}

.postmetadata a {
	color: #666;
	text-decoration:none;
}

.more-link {
	font-size: 14px;
	text-decoration: none;
	border-bottom: 1px dashed #A7CD2C;
	text-transform: uppercase;
}

.navigation {
	height: 40px;
	
}



/* -----------------------------------------------------------
	
	. COMMENTS
	
----------------------------------------------------------- */


#respond {
	margin: 20px 10px 0px 10px;
	padding: 20px;
	border: 1px solid #eaeaea;
	color: #CCC;
	background:url("images/bg_footer.png") repeat-x scroll 0 0 transparent;
	clear:both;
	color:#FFFFFF;
	font-size:10px;
	
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;	

}

h3#comments {
	margin: 20px;
	font-size: 18px;
}

.comment {
	margin: 20px;	
}

.comment.even {
	background-color: #CCC;	
}

.comment.odd {
	background-color: #999;
}

.comment p {
	background-color: #fff;
	margin: 20px;
}


/* -----------------------------------------------------------
	
	. NAV
	
----------------------------------------------------------- */

ul.mainnav li.logo {
	background:url("images/logo.png") no-repeat scroll left top transparent;
	height:17px;
	text-align:left;
	text-indent:-9999px;
	width:115px;
	float: left;
}

ul.mainnav li.logo a {
	display: block;
	height:20px;
	width: 115px;
}

.mainnav {
	background:url(images/bg_menu.png) repeat-x;
	height: 25px;
	position: relative;
	top: 50px;
	text-align: right;
	padding: 10px 15px 10px 0px;

	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;	
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;

	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
}

.mainnav li {
	height:20px;
	line-height:20px;
	margin:0 0 0 20px;
	display: inline;
	text-align: right;
}

.mainnav li a {
	color: #FFF;
	text-decoration:none;
	padding:6px 15px 5px;
	margin: 10px 0 0 0px;
	text-decoration:none;
	text-transform:uppercase;
	line-height: 20px;
	font-weight:bold;

	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.mainnav li a:hover,
.mainnav li a:focus {
	color: #CCCCCC;
	
	
}
.mainnav li.current_page_item a,
.mainnav li.current_page_parent a {
	color: #fff;
	background: url('images/bg_menu_active.png') left top repeat-x;

}

.mainnav li.search {
		text-align: right;
	float: right;
}

.mainnav li.search label {
	display:none;
}


/* -----------------------------------------------------------
	
	. CONTENT
	
----------------------------------------------------------- */

#content {
	width: 960px;
}
#content .top_items {
	width: 958px;
	background-color:#FFF;
	border: 1px solid #eaeaea;
 	height: 220px;
	margin: 40px 0;
	
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;	
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	
}

#content .top_items p {
	margin: 10px;
}

#content .top_items h3 {
	font-size: 22px;
	color: #a7cd2c;
	font-weight:normal;
	font-family: Helvetica, Arial, sans-serif;
	margin: 5px 0px 10px 10px;
}

#content .sec_link {
	font-size: 12px;
	color: #a7cd2c;
	font-weight:normal;
	font-family: Helvetica, Arial, sans-serif;
	margin: 25px 0px 0px 0px;
	text-transform:uppercase;
	border-bottom: #a7cd2c 1px dashed; 
	text-decoration: none;
}

#content .top_items .first {
	width: 259px;
	float: left;
	padding: 10px 10px 0px 40px;
	margin: 10px 0px 10px 0px;
	line-height: 20px;
	color: #666;
	border-right: 1px solid #eaeaea;
	background:url(images/icon_cal.png) no-repeat;
}

#content .top_items .second {
	width: 259px;
	float: left;
	padding: 10px 10px 0px 40px;
	margin: 10px 0px 10px 0px;
	line-height: 20px;
	color: #666;
	border-right: 1px solid #eaeaea;
	background:url(images/icon_lamp.png) no-repeat;
}

#content .top_items .last {
	width: 250px;
	height: 200px;
	float: left;
	padding: 10px 10px 0px 40px;
	margin: 10px 0px 10px 0px;
	line-height: 20px;
	color: #666;
	background:url(images/icon_hart.png) no-repeat;
}

#content .sub_items {
	width: 200px;
	margin: 10px 10px 50px 10px;
	padding: 0px 10px 0px 10px;
	float: left;
}

#content .sub_items h4 {
	font-size: 16px;
	color: #333;
	margin: 0px 0px 10px 0px;
}



/* -----------------------------------------------------------
	
	. FOOTER
	
----------------------------------------------------------- */



#footer_content {
	width: 960px;
	margin: 0px auto;
}

#ea_logo {
	background:url("images/logo.png") no-repeat scroll left top transparent;
	text-align:left;
	width:220px;
	margin: 10px 0px 0px 10px;
	display: block;
	height: 120px;
	float: left;
}

#ea_logo span {
	width: 220px;
	height: 80px;
	color: #CCC;
	margin: 35px 0px 0px 0px;
	float:left;
}

#footer_content li.small {
	float:left;
	width:70px;
	color: #CCC;
	font-weight: normal;
	font-size: 10px;	

}

#footer_content ul.sitemap li ul li a {
	float:left;
	width:140px;
	color: #CCC;
	font-weight: normal;
	font-size: 10px;	

}

#footer_content ul.sitemap li li {
	float:left;
	clear: left;
	padding:0;
}

#footer_content ul.sitemap li a {
	color:#A7CD2C;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
}

ul.sitemap {
	float: left;
	margin: 40px 0px 0px 50px;
}

ul.sitemap li {
	margin:0 0 15px;
	float: left;
}

ul.sitemap li li {
	margin: 0px;	
}
/* -----------------------------------------------------------
	
	. BUTTONS ETC
	
----------------------------------------------------------- */

.primary {
	background:-moz-linear-gradient(center top , #99ca3c, #85b627) repeat scroll 0 0 transparent;
	border:2px solid #c1e975;
	color:#fff;
	font-size: 18px;
}


.primary:hover,
.primary:focus {
	color: #f1f1f1;
	background: #85b627;
	background: -webkit-gradient(linear, left top, left bottom, from(#85b627), to(#99ca3c));
	background: -moz-linear-gradient(top,  #85b627,  #99ca3c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#85b627', endColorstr='#99ca3c');
	text-shadow:0 0px 0px rgba(0, 0, 0, 0.3);

}
.primary:active {
	border: 1px solid #333333;
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#99cc00), to(#add633));
	background: -moz-linear-gradient(top,  #99cc00,  #add633);
}


.button  {
	-moz-border-radius:0.5em 0.5em 0.5em 0.5em;
	-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
	cursor:pointer;
	display:inline-block;
	font-weight:bold;
	outline:medium none;
	padding:10px 40px 9px;
	text-align:center;
	text-decoration:none;
	text-shadow:0 1px 1px rgba(0, 0, 0, 0.3);
	text-transform:uppercase;
}

.clear {
	clear: both;
	width: auto;
	height: 1px;
}

.alignright {
	float: right;
	margin: 0px 0px 20px 20px;
}

.alignleft {
	float: left;
	margin: 0px 20px 20px 0px;
}

img.size-full {
	background-color:#FFF;
	/*border: 1px solid #eaeaea;*/
	/*padding: 10px;*/
	
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;	
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	
	-moz-box-shadow: 0 0 5px #000000;
	-webkit-box-shadow: 0 0 5px #000000;
	box-shadow: 0 0 5px #000000;
	
		
}


.wp-caption {
	-moz-border-radius:4px 4px 4px 4px;
	background:none repeat scroll 0 0 #F7F7F7;
	color:#928A85;
	font-size:80%;
	margin:4px 10px;
	padding:0.4em 0;
	text-align:center;
	clear: left;
}

.team p {
/*	height: 10px; */
	float: left;
}

.wp-caption img.size-full {
	border:0 none;
	margin:0;
	padding:0;
}
.wp-caption.alignleft {
	margin-left:0;
}
.wp-caption.alignright {
	margin-right:0;
}