/*
TEMPLATE FOR MEDIA QUERIES
	@media screen and (min-width:1000px) {}                         --------> full layout
	@media screen and (min-width:760px) and (max-width:999px) {}	--------> layout without vertical menu, but id=content is not fluid
	@media screen and (min-width:550px) and (max-width:759px) {}    --------> id=content is fluid
	@media screen and (max-width:549px) {}							--------> main menu collapses to a button


COPY AND PASTE MEDIA QUERIES
@media screen and (min-width:950px) {}
@media screen and (min-width:760px) and (max-width:999px) {}
@media screen and (min-width:550px) and (max-width:759px) {}
@media screen and (max-width:549px) {}


FONTS


COLOR PALLETE
	orange 	= #e96363;
	green	= #2c7d5c;
	gray 	= #828282; as in Mission Statement

INDEX
	- PAGE RESET
	- STRUCTURE  HEADER & MAIN
	- STRUCTURE  FOOTER
	- SECTION NAVIGATION
	- MAIN PAGE ELEMENTS
	- ARTICLES
	- PR
	- MORE NEWS
	- ONE_THIRD
	- ONE_HALF
	- ICONS CONTACT, PDF, ETC..
	- DEFAULT FORM
	- VIDEO GALLERY
	- EVENTS
	- SELECT EVENT SCHEDULE
	- FX_4
	- FX_3
	- FX_2
	- VIDEO
    - TOUR THE FARM
*/

/*-----------------------------------------------------------  PAGE RESET   --------------------*/
* {
	padding: 0;
	margin: 0;
	border: 0;
	text-decoration: none;
}

html { height:100%; }

body {
	background-color:#fff;
	color:#000;
	font-family:'Oxygen', sans-serif;
	font-size: 16px; /* 16px */
	height:100%;
}

article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }

input {
    -webkit-appearance: none;
    border-radius: 0;
}


/*-----------------------------------------------------------  STRUCTURE  HEADER & MAIN --------*/
@media screen and (min-width:1030px) {
	header {
		height: 185px;
		margin: 0 auto 10px auto;
		overflow:hidden;
		position: relative;
		width: 1000px;
	}
	
	#main {
		width:1050px;
		margin:0 auto;
		min-height:400px;
		padding:20px 0 0 0;
	}

	#main_menu_button { display:none !important; }

	#vertical_menu {
		float: left;
		width: 200px;
	}	
	
	#vmenu_items > li a { padding: 5px 0; }
	
	.narrow {
		float: left;
		width: 786px;
		padding-right: 30px;
	}
	
	aside {
		float: right;
		width: 215px;
	}
}

@media screen and (min-width:745px) and (max-width:1029px) {
	header {
		height: 185px;
		margin: 0 15px 30px;
		overflow:visible;
		position: relative;
	}
	
	#main_menu_button { display:none !important; }

	#mb_under {
		position: absolute;
		right: 15px;
		top: 195px;
	}	
	
	input[type="button"]#mb_under:hover {
	    background-color: #2c7d5c;
    	color: #ffffff;
	}

	#vertical_menu {
		background-color: white;
		border-bottom:1px solid #828282; 
		border-left: 3px solid #2C7D5C;
		border-top:1px solid #828282;
		padding: 30px;
		position: fixed;
		right: -400px;
		top: 23px;
		width: 260px;
	}

	#vmenu_items > li a { padding: 8px 0; }
	
	#content {
		padding: 0 15px;
	}	
}


@media screen and (min-width:746px) and (max-width:845px) { #logo_desktop { width: 120px; } }

@media screen and (min-width:745px) {
	#logo_desktop { margin: 10px 0; }
	
	#logo_mobile { display:none; }

	#main_menu {
		/*background-color: #fffdbd;*/
		height: 30px;
		position: absolute;
		right: 0;
		top: 75px;
		width: 600px;
		/*display:none;*/
	}	
	
	#search_bar {
		font-size:13px;
		overflow: hidden;
		position: absolute;
		right: 0;
		text-align:right;
		top: 10px;
	}
}

@media screen and (max-width:744px) {
	header {
		height: 180px;
		margin: 0 15px;
		overflow:hidden;
		position: relative;
	}
	
	#logo_desktop { display:none; }

	#logo_mobile {
		display: block;
		margin: 10px auto;
		width: 200px;
	}
	
	#main_menu {
		height: 30px;
		position:relative;
		top:-6000px;
	}
	
	#search_bar {
		font-size: 15px;
		margin: 20px 0;
		text-align: center;
	}

	#vertical_menu {
		margin:0 auto 50px auto;
		width: 200px;
	}	
	
	#vmenu_items > li a { padding: 8px 0; }	
	
	#content {
		padding: 0 15px;
	}
}

.wrap_header{ 
      background:#fcfcfc;
	  padding: 0 0 5px 0;
}

#main { position:relative; }

#search_bar > a:active, #search_bar > a:visited { color:#828282; }

#search_bar > a:hover, a.lg_selected { color:#2c7d5c !important; }

#search_bar form {
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    vertical-align: middle;
    width: 200px;
}

#search_bar form input[type="text"] {
    height: 15px;
	margin:0;
    width: 159px;
}

#search_bar form input[type="submit"] {
    line-height: 25px;
	margin:0;
    padding: 0;
    width: 23px;
}

#main_menu_button {
	display: block;
	float:none;
	margin: 0 auto;
	width: 245px;
}

@media screen and (min-width:915px) {
	#mission_statement {
		bottom: 15px;
		color: #828282;
		font-size: 14px;
		font-style: italic;
		padding: 1px;
		position: absolute;
		right: 0;
		text-align: right;
		width: 700px;
	}
}

@media screen and (min-width:765px) and (max-width:914px) {
	#mission_statement {
		bottom: 15px;
		color: #828282;
		font-size: 14px;
		font-style: italic;
		padding: 1px;
		position: absolute;
		right: 0;
		text-align: center;
		width: 559px;
	}
}

@media screen and (max-width:764px) { #mission_statement { display:none; } }


#vertical_menu > h1 {
    color: #2c7d5c;
    font-size: 20px;
}

#vertical_menu > ul { 
	list-style: outside none none;
	padding-right: 20px;
	font-size: 14px;
}

#vmenu_items > li a, #vmenu_items > li a:visited {
    border-bottom: 1px dashed #828282;
    color: #000;
    display: block;
}

#vmenu_items > li a.selected, #vmenu_items > li a:hover {
    border-bottom: 1px dashed #2c7d5c;
    color: #2c7d5c;
}

#sshow {
	height:100%;
	max-height:800px;
	width:100%;
}

/*-----------------------------------------------------------  STRUCTURE  FOOTER ---------------*/
@media screen and (min-width:1030px) { 
	footer section {
		margin: 0 auto 10px auto;
		position: relative;
		width: 1000px;
	}
	
	footer div[id^="f_"] {
		border-right: 1px dashed #545454;
		float: left;
		padding: 0 12px 10px 10px;
		width: 232px;
		margin: 15px 0 10px 0;
		height: 165px;
	}	

	footer div#f_coffess { padding-left:0;}	

	footer div#f_subscribe { border-right: none; padding-right:0; }	
}
	
@media screen and (min-width:540px) and (max-width:1029px) { 
	footer section {
		margin: 0 auto 10px auto;
		position: relative;
		width: 500px;
	}
	
	footer div[id^="f_"] {
		border-right: 1px dashed #545454;
		float: left;
		padding: 0 12px 10px 10px;
		width: 238px;
		margin: 15px 0 25px 0;
		height: 130px;
	}	

	footer div#f_links, footer div#f_coffess { padding-left:0;}	

	footer div#f_address, footer div#f_subscribe { border-right: none; padding-right:0; }	
}

@media screen and (max-width:539px) {
	footer section {
		margin: 0;
		position: relative;
	}
	
	footer div[id^="f_"] {
		border-bottom: 1px dashed #545454;
		height: 191px;
		margin: 15px auto ;
		padding: 0 10px;
		width: 238px;
	}
	
	#f_links { height:245px; }
	
	#f_links ul li {
		padding: 8px 0;
		font-size: 14px;
	}	
	
	form#mailing_list { padding: 0 !important; }	
	
	footer div#f_subscribe { border-bottom: none; }
}

footer {
    background-color: #000;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    bottom: -1px;
}

footer h1 { 
	color:#545454;
	margin:0 0 5px 0;
}

footer, footer a, footer a:visited { color:#fff; }

footer a:hover { color:#ffff00; }

#atimo {
    clear: both;
    background-color: #101010;
    padding: 5px 0;
}

#atimo span { padding: 0 5px; }

#atimo span:last-child { float:right;margin-right: 70px;}

#bobolink {
    background: url("../../images/logos-footer.png") no-repeat scroll 0 -125px rgba(0, 0, 0, 0);
    display: block;
    float: left;
    height: 110px;
    margin: 14px 0 0 10px;
    width: 110px;
}

#istoe {
    background: url("../../images/logos-footer.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    display: block;
    float: left;
    height: 110px;
    margin: 13px 0 0;
    width: 110px;
}

#ft_contact {
    background: url("../../images/logo-footer.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 37px;
    margin: 9px 0 10px;
    width: 165px;
}

#f_links ul { list-style: none; }

#f_a_links {
    float: left;
    margin: 24px 0 0;
    width: 197px;
}

#mailing_list input {
    margin: 3px 0;
    width: 218px;
}

#mailing_list input[type="submit"] {
    float: left;
    font-size: 12px;
    margin: 15px 0 0;
    padding: 6px 0;
    text-transform: uppercase;
    width: 229px;
}

/*-----------------------------------------------------------  SECTION NAVIGATION   ------------*/
.lt-ie9 .section_navigation { margin:35px 0 20px 0; }

.lt-ie9 .section_navigation a { 
	padding: 5px 16px; 
	min-width:110px;
	display:inline-block;
	margin: 0 5px 5px 0; 
}

.lt-ie9 .section_navigation .large_button { width: 175px; }

@media screen and (min-width:830px) {
	.section_navigation { margin:35px 0 20px 0; }

	.section_navigation a { 
		display:inline-block;
		float:left;
		margin: 0 5px 5px 0;
		overflow: hidden;
		padding: 5px 16px; 
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 120px;
	}

	.section_navigation .large_button { width: 175px; }
}

@media screen and (min-width:540px) and (max-width:829px) {
	section{padding: 0 15px;}
	
	.section_navigation { margin: 35px 0 20px; }
	
	.section_navigation a { 
		padding: 10px 16px; 
		min-width:110px;
		display:inline-block;
		margin: 0 5px 5px 0;
	}

	.section_navigation .large_button { width: 175px; }
}

@media screen and (max-width:539px) {
	section{padding: 0 15px;}
	
	.section_navigation { margin: 35px 0 20px; }
	
	.section_navigation a { 
		padding: 10px 16px; 
		display:block;
		margin: 0 auto 5px auto;
		width:150px;
	}

	.section_navigation .large_button { width: 175px; }
}

.section_navigation { overflow:hidden; }

.section_navigation a {
    background-color: #2c7d5c;
    border: none;
    color: #ffffff !important;
	cursor:pointer;
    text-align: center;
}

.section_navigation a:hover, .section_navigation a.selected { 
	background-color: #e96363;
	color:#ffffff;
}



/*-----------------------------------------------------------  PAGE INDEX ----------------------*/
.page_index a {
	display: block;
	border-bottom: 1px solid #fcb896;
	color: #000;
	padding: 2px;
}

.page_index a:hover {
	background: #f7e1d4;
	color: #e23800;
}

.page_index p { padding: 0 0 0 2px; }

.page_index h3 {
	padding: 0 0.313em;
	margin: 2px 0 0 0;
}

.box_index {
	margin: 16px auto;
	clear:both;
}

.box_index h3 {
	color: white;
	background: #296951;
	padding: 5px;
	cursor: pointer;
}

#plus {
	float: right;
	color: white !important;
	padding: 0 10px 0 0;
	border:none;
}

.top, .top:visited {
	float: right;
	display: block;
	width: 50px;
	background: #296951;
	color: white !important;
	text-align: center;
	padding: 3px;
	margin: 10px 0;
	border:none;
}

.top:hover { background: #586ede; }
#plus:visited { color: white !important; }
.closed, .open { background-color: #586ede; }

.summary { clear:both; }

.page_index.index_hide {
    height: 300px;
    overflow-y: scroll;
    border-bottom: 3px double #296951;
    margin-bottom: 35px;
}


/*-----------------------------------------------------------  MAIN PAGE ELEMENTS   ------------*/
.clear { clear: both; }
.hide { display: none; }

#content h1, #content h2, #content h3, #content h4, #content h5 { font-family: "Oxygen",sans-serif; }
#content { font-family: "Oxygen",sans-serif; position:relative; }

#content h1 {
	font-size:28px;
    margin: 0 0 20px;
}

#content h2 {
	color: #296951;
	font-size: 24px;
    padding: 10px 0;
}

#content h3 {
	color: #6b6b6b;
	font-size: 20px;
	padding: 10px 0;
}


#content p {
    line-height: 23px;
    margin: 0 0 15px;
}

#content li {
	margin: 10px 0 10px 35px;
	padding: 0;
	list-style-position: outside;
}


@media screen and (min-width:480px) {
	.show_mobile { display:none; }	
}

@media screen and (max-width:479px) { 
	.hide_mobile { display:none; }
}

a, a:visited { color:#414142; }

article a { border-bottom: 1px dashed #AEAEAE;}


a:hover { color:#2c7d5c; }

/*--------  Rule for images ------------------------------*/
.lt-ie9 .imgR {
	float: right;
	margin: 0 0 15px 15px;
}

.lt-ie9 .imgL {
	float: left;
	margin: 0 15px 15px 0;
}

@media screen and (min-width:1000px) {
	.imgR {
		float: right;
		margin: 0 0 15px 15px;
	}

	.imgL {
		float: left;
		margin: 0 15px 15px 0;
	}
}

@media screen and (min-width:400px) and (max-width:999px) {
	.imgR, .imgL {
		display: block;
		margin: 15px auto;
		max-width: 100%
	}
	
	.imgC { width:100% }
}

@media screen and (max-width:399px) {
	.imgR, .imgL, .imgC { width:100%; }
}

.imgC {
	display: block;
	margin: 15px auto;
}

.floatR { float:right; }
.floatL { float:left; }
.floatC {
	margin:inherit auto !important;
	float:non !important;
}

.end_page {
	background:url(../../images/endpg.png) no-repeat center center;
	width:197px;
	height:31px;
	margin:30px auto;
	clear:both;
}


Blockquote {
	padding: 10px;
	clear: both;
	border: #d9d9d9 dashed 1px;
	margin: 0 0 15px 0;
	color: #6b6b6b;
	background-color: #f6f6f6;
}

.line {
    clear: both;
    border-bottom: 1px solid gray;
    margin: 15px 0;
}

/*-----------------------------------------------------------  ARTICLES ------------------------*/
.addthis_toolbox.addthis_default_style.addthis_16x16_style {
    margin: 10px 0;
    clear: both;
	display:block;
}

@media screen and (min-width:760px){ .article_info { height: 55px; } }

.addthis_32x32_style { margin: 10px 0; } /* Only appears when width < 600 via JavaScript */

.article_info { position: relative; }

.article_date {
	color: #7e7e7e;
    float: left;
    height: 55px;
    margin: 0 10px 10px 0;
    overflow: hidden;
	text-align:center;
    width: 55px;
}

.article_date h1 {
    background-color: #7e7e7e;
    color: #fff;
    font-size: 10px !important;
    line-height: 13px !important;
    margin: 0 !important;
}

.article_date div {
    border: 1px solid #7e7e7e;
    height: 38px;
    margin: 2px 0 0;
}

.article_date h2 {
	color:#7e7e7e !important;
    font-size: 20px !important;
    line-height: 23px;
	padding:0 !important;
}

.article_date h3 { 
    font-size: 12px !important;
    line-height: 14px;
    text-transform: uppercase;
	padding:0 !important;
}

.article_info > h1 {
    font-size: 25px !important;
    line-height: 30px;
    position: relative;
    top: -6px;
}


.pic_article > img { vertical-align: middle; }

.pic_articleL, .pic_articleC, .pic_articleR {
/*    background-color: #efefef;
    border: 1px solid #FFFFFF;
    outline: 1px solid #cccacc;
    overflow: hidden;
    padding: 1px;
*/}

.pic_articleC{
	margin:15px auto;
	width:100%
}

.pic_articleL > img, .pic_articleC > img, .pic_articleR > img {
	vertical-align:top;
}

.lt-ie9 .pic_articleL {
	float:left;
	margin:5px 15px 15px 0;
}

.lt-ie9 .pic_articleR {
	float:right;
	margin:5px 0 15px 15px ;
}

@media screen and (max-width:1030px) { .pic_articleC > img { width: 100%;} }

@media screen and (min-width:500px) { 
	.poster .pic_articleC img  {
		/*width: inherit !important;*/
		margin: 0 auto;
		display: block;
	}
}

@media screen and (max-width:600px) {
	.pic_articleR > img  {
		width: 100% !important;
		display: block;
	}
	
	.pic_articleL > img  {
		width: 100% !important;
		display: block;
	}
}

@media screen and (max-width:550px) { 
	.poster .pic_articleC img  {
		width: 100% !important;
		display: block;
	}
}


@media screen and (max-width:400px) { .pic_articleL > img, .pic_articleR > img { width: 100%;} }

@media screen and (min-width:730px) {
	.pic_articleL {
		float:left;
		clear:left;
		margin:5px 15px 15px 0;
	}

	.pic_articleR {
		float:right;
		clear:right;
		margin:5px 0 15px 15px ;
	}
}

@media screen and (max-width:729px) {
	.pic_articleR,.pic_articleL { margin:15px auto; width:100% !important;}
}


.wrapper { padding:3px; }

.photographer {
    font-style: italic;
}

.wrapper > p {
    font-size: 12px;
    margin: 0 !important;
    line-height: 15px !important;
}

.separator {
    background: url(../../../images/separator02.png) no-repeat;
    height: 23px;
    margin: 20px auto;
    width: 109px;
	clear: both;
}

/*-----------------------------------------------------------  PR  -----------------------------*/
.pr {
    background-color: #f0f0f0;
	margin:50px 0;
    padding: 5px 20px;
    position: relative;
}


.pr h1 {
	color: #2c7d5c;
	font-size:22px !important;
 }

/*-----------------------------------------------------------  MORE NEWS   ---------------------*/
#other_news {
    background-color: #f0f0f0;
	margin:50px 0;
    padding: 20px;
    position: relative;
}

#other_news a, pr a {
    display: block;
    background-color: #2c7d5c;
    padding: 7px;
    text-align: center;
    color: #ffffff;
}

#other_news a:hover, pr a:hover { background-color: #e96363; }

#other_news > ul { list-style: none; }

#other_news ul li span {
    float: left;
    font-weight: bold;
}


#other_news li { 
	border-bottom: 1px dashed #000000;
	margin:10px 5px 
}


@media screen and (min-width:400px) {
	#other_news ul li p { padding-left: 110px; }
}

@media screen and (max-width:399px) {
	#other_news ul li span { 
		display:block;
		width:100%;
	}
}




/*-----------------------------------------------------------  ONE_THIRD  ----------------------*/
@media screen and (min-width:1030px) {
	.one_third {
		width: calc((100% / 3) - 20px);
		float: left;
		padding: 10px;
	}	
}

@media screen and (min-width:745px) and (max-width:1029px) {
	.one_third {
		float:left;
		margin:15px auto;
		padding: 10px;
		width: 350px;
	}	
}

@media screen and (max-width:744px) {
	.one_third {
		margin:15px 0;
		padding: 10px;
	}	
}


/*-----------------------------------------------------------  ONE_HALF   ----------------------*/
@media screen and (min-width:1030px) {
	.one_half {
		float:left;
		width: 50%;
	}
	
	.one_half .imgL { width: 235px; }
}

@media screen and (min-width:535px) and (max-width:1029px) {
	.one_half {
		clear:both;
		margin:15px auto;
		width: 500px;
	}
	
	.one_half .imgL {
		float:left;
		margin:0 15px 15px 0;
		width: 235px; 
	}
}

@media screen and (max-width:534px) {
	.one_half {
		clear:both;
		margin:15px;
	}
	
	.one_half .imgL {
		display:block;
		margin:15px auto;
		width: 235px; 
	}
}

/*-----------------------------------------------------------  ICONS CONTACT, PDF, ETC..   -----*/

@media screen and (min-width:830px) {
	button, a.button { 
		padding: 5px 16px;
		display:block;
		float:right; 
		min-width:110px;
		margin: 0 0 5px 0;
	}
}
@media screen and (max-width:829px) {
 	button, a.button { 
		padding: 8px 16px;
		margin: 5px auto;
		display: block;
		width: 270px;
	}
}

button, a.button {
    background-color: #2c7d5c;
    border: none;
    color: #FFFFFF;
	cursor:pointer;
    text-align: center;
    text-transform: uppercase;
}

button:hover , a:hover.button {
    background-color: #e96363;
	color:#ffffff;
}

.phone {
    background: url("../../images/icos-contactinfo.png") no-repeat scroll 0 -252px rgba(0, 0, 0, 0);
    padding-left: 23px;
}

.pdf {
    background: url("../../images/icos-contactinfo.png") no-repeat scroll 0 -232px rgba(0, 0, 0, 0);
    padding-left: 23px;
}

/*-----------------------------------------------------------  DEFAULT TABLE  ------------------*/
table.default {
    background-color: #FAF4DE;
    border: 1px solid #E7E5D9;
    margin: 15px auto;
    padding: 1px;
    width: 100%;
}

table.default caption {
	padding:5px;
	font-size:16px;
	color:#447db7;
	font-weight:bold;
}

table.default th {
    background: none repeat scroll 0 0 #DEA200;
    border-bottom: 1px double #E7E5D9;
    color: white;
}

table.default th, table.default td {
    padding:6px;
    vertical-align:top;
}


table.default td {
    background-color: #FAFAFA;
    border-bottom: 1px solid #E7E5D9;
}

/*table.default tbody tr td.col_em {
    color: #3c586a;
    font-weight: bold;
    background-color: #cedce5;
    border-right: 1px solid #c2c2c2;
}*/

table.default tbody tr td.col2_em {
    background-color: #EBF1F4;
    color: #2E414D;
    border-right: 1px solid #d7d7d7;
}

table.default em {
    color:#79A0C1;
    font-weight:bold;
}

.alt_tr { background-color:#E3E3E3; }
.tdC { text-align:center; }
.tdR {text-align:right; }
.tdL {text-align:left; }

/*-----------------------------------------------------------  DATA TABLE  ---------------------*/

	.data_table {
		width: 100%;
		font-size: 1.2em;
	}
	.data_table thead th {
		white-space: nowrap;
		border-bottom: 1px solid #ccc;
		color: #888;
	}
	.data_table th, .data_table td { font-size: .8em; }
	.data_table th:first-child, .data_table td:first-child { text-align: left; }
	.data_table td.actions { 
		text-align: center;
		width:130px;
	}
	/*.data_table th:last-child { width: 15%; }*/
	.data_table td {
		border-bottom: 1px solid #E6E6E6;
		color: #313131;
	}
	.author_name {
		display: block;
		font-size: .9em;
		opacity: .6;
	}

	#search_results { margin-top: 2em; }


/*-----------------------------------------------------------  DEFAULT FORM   ------------------*/
.lt-ie9 form.default {
	overflow:visible;
	width:650px; 
}

.lt-ie9 form.default label {
	float: left;
	width: 130px;
	margin: 8px 8px 8px 0;
	text-align: right;
}

.lt-ie9 form.default fieldset input,
.lt-ie9 form.default fieldset select {
	width: 325px;
	margin: 8px 0;
}

@media screen and (min-width:800px) {
	form.default {
		overflow:visible;
		width:650px; 
	}
	
	fieldset {  width:84%; }

	form.default label {
		float: left;
		width: 130px;
		margin: 8px 8px 8px 0;
		text-align: right;
	}

	form.default fieldset input,
	form.default fieldset select {
		width: 325px;
		margin: 8px 0;
	}
}

@media screen and (max-width:799px) {
	form.default fieldset input, form.default fieldset select, form.default label {
		clear:both;
		display:block;
		margin: 8px;
		width:90%;
	}
}


#popup form.default { width: 460px; }

#popup form.default input[type="submit"] { float:right; }

.default.wide {
    width: 680px;
    margin: 0 auto;
}

.default.wide fieldset { width: 95%; }


form {
	margin: 0 auto;
	padding: 5px 15px;
	overflow:hidden;
}

fieldset {
    background-color: #F4F4F4;
    border: 1px solid #BBBBBB;
	margin: 15px auto;
	padding: 2px 10px;
}

legend {
	background-color: #FFFFFF;
    border: 1px solid #BBBBBB;
	font-weight: bold;
	padding: 5px 23px;
	/*margin: 25px 0 0 0;*/
}


textarea {
	border: 1px solid #BBB;
	width:100%;
	height:112px;
}

label, input { display: inline-block; }

.lt-ie9 input[type=text], .lt-ie9 input[type=email], .lt-ie9 input[type=password], .lt-ie9 input[type=phone] { width: 368px; }

@media screen and (min-width:400px) { input[type=text], input[type=email], input[type=password], input[type=phone] { width: 368px; } }
@media screen and (max-width:399px) { input[type=text], input[type=email], input[type=password], input[type=phone] { width: 100%; margin:4px 0; } }

input, select {
	border: 1px solid #BBB;
	padding: 5px;
}

select {
	padding: 5px;
}

.fm-radio, .fm-checkbox {
	width: 240px;
	margin: 8px 0;
	float:left;
}

.fm-radio p, .fm-checkbox p { text-align: center; }

.fm-radio label, .fm-checkbox label {
	margin: 0 3px 3px 0;
	padding: 0;
}

.fm-req:after {
	content: "*";
	color: red;
	font-weight: bold;
}

input[type="checkbox"] {
	-webkit-appearance:checkbox !important;
	width: auto !important;
	float:left;
	margin:4px 8px 0 0 !important;
}


input[type="radio"] {
	-webkit-appearance:radio !important;
	border:none;
	width:auto !important;
}

.form_buttons {
	height:32px;
    margin: 15px auto;
    width: 87.3%;
}

form.wide .form_buttons { width: 98.5%; }

input[type="submit"]:disabled, input[type=button]:disabled {
	color:gray;
	background-color:white;
	cursor:default;
}

input[type=submit], input[type=button] {
    background-color: #2c7d5c;
	border:none;
    color: #FFFFFF;
	cursor:pointer;
	display:block;
	float:right;
	font-size:16px;
    margin: 0 0 5px 5px;
    text-align: center;
	padding:3px 25px;
}

input[type=submit]:hover, input[type=button]:hover {
    background-color: #e96363;
	color: #FFFFFF;
}

.input_error { border: 1px solid red; }

.response {
    color: red;
    text-align: center;
}

.half_width {
	width: 149px !important;
}

.third_width {
	width: 105px !important;
}

/*-----------------------------------------------------------  PAGINATION   --------------------*/
.pagination {
    text-align: right;
    border-bottom: 1px solid gray;
    padding-bottom: 3px;
    margin-bottom: 5px;
}

.pagination .total {
    float: left;
    margin: 0;
    padding: 2px;
}

.pagination .pagination_buttons { display: inline-block; }

.pagination_buttons a, .pagination_buttons p {
    display: inline-block;
    padding: 2px 5px;
    border: 1px solid gray;
}

.pagination_buttons span { margin: 0 5px; }

.pagination_buttons p {
    color: #E5E5E5;
    border: 1px solid #E5E5E5;
    line-height: 18px;
    margin: 0;
}

/*.pagination_buttons a { border: 1px solid gray; }*/

/*.pagination_buttons a.linkDisabled, .pagination_buttons a:hover.linkDisabled {
    color: #E5E5E5;
    border: 1px solid #E5E5E5;
}*/

.pagination_buttons a:hover {
	border: 1px solid gray;
	background-color:gray;
	color:#FFF;
}

/*-----------------------------------------------------------  MISCELLANEOUS -------------------*/
.uploading {
    background: url("../../images/preloader.gif") no-repeat scroll center center transparent;
    border: 3px solid #f1f1f1;
    height: 32px;
    margin: 0 auto;
    padding: 5px;
    width: 32px;
    outline: 1px solid #e5e5e5;
}

.ajax_loading {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, .7) url("../../images/preloader.gif") no-repeat center center;
}

.ajax_form { position:relative; }

#details{
	overflow:hidden;
	padding:10px;
}

.lt-ie8 iframe.youtube {
    width: 640px;
    height: 360px;
    margin: 10px auto;
    display: block;
}

#scrollToTop {
	width:39px;
	height:39px;
	text-decoration: none;
	position:fixed;
	bottom:5px;
	right:15px;
	display:none;
	background:url(../../images/scrollToTop.png) no-repeat;
	opacity:0.45;
	z-index:900;
}

#scrollToTop:hover { opacity:1;}

#scrollToTop:hover{
	text-decoration:none;
}


@media screen and (min-width:695px) {
	.youtube {
		width: 640px;
		height: 360px;
		margin: 10px auto;
		display: block;
	}
}

@media screen and (min-width:610px) and (max-width:694px) {
	.youtube {
		width: 560px;
		height: 315px;
		margin: 10px auto;
		display: block;
	}
}

@media screen and (min-width:445px) and (max-width:694px) {
	.youtube {
		width: 400px;
		height: 225px;
		margin: 10px auto;
		display: block;
	}
}

@media screen and (max-width:444px) {
	.youtube {
		width: 280px;
		height: 158px;
		margin: 10px auto;
		display: block;
	}
}

/*----------------------  ACTION BUTTONS ---------------*/

.ab_edit, .ab_delete, .ab_review, .ab_publish, .ab_requested,
.ab_published, .ab_declined, .ab_rss, .ab_not_rss, .ab_home, .ab_not_home {
	background: url(../../images/icons-articles.png) no-repeat center;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.ab_edit, .ab_delete, .ab_review { margin-right: 3px; }
.ab_edit { background-position: 0 -114px; }
.ab_delete { background-position: 0 -153px; }
.ab_review { background-position: 0 -379px; }
.ab_publish { background-position: 0 -341px; }
.ab_requested { background-position: 0 -76px; }
.ab_published { background-position: 0 2px; }
.ab_declined { background-position: 0 -37px; }
.ab_not_rss { background-position: 0 -228px; }
.ab_home { background-position: 0 -267px; }
.ab_not_home { background-position: 0 -305px; }



/*----------------------  ARTICLE MANAGER --------------*/
.article_manager {
	padding: 10px 0;
}
.article_manager a:after, .article_image a:after {
	content: "|";
	padding: 0 3px;
	color: #383838;
}

.article_manager a:last-of-type:after, .article_image a:last-of-type:after { content: ""; }

.article_image {
	padding:5px;
	border-bottom: 1px solid #e5e1de;
}

.article_image:hover {
    background-color: #e5e1de;
}

.article_image > span {
    float: right;
}

/*.article_image p, .article_image a {
	display: inline-block;
	margin: 0;
}

.article_image p {
	width: 45%;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-right: 10px;
}*/

.code_block { text-align: center; }
.remove { color: #C00101 !important; }
.publish { color: #186418 !important; }
.publish:hover, .remove:hover, .publish.selected, .remove.selected { color: #FFF !important; }

.disabled {
	color: #508149 !important;
	cursor: default;
}

.control {
	margin-bottom: 10px;
	text-align: center;
}

/*----------------------  MY ACCOUNT -------------------*/
.newAccount_relationship label { white-space: nowrap;	}
.newAccount_relationship {
	float: left;
	margin: 0 5px 0 0;
	width: 32%;
}
#rel_others { width: 175px; }
#select_relation_response {	margin: 5px; }


.restricted_menu  {
    background-color: white;
    border: 1px solid #e7e7e7;
    box-shadow: 2px 2px 5px #e7e7e7;
    left: 10px;
    padding: 10px;
    position: absolute;
    top: 10px;
    z-index: 900;
}

/*----------------------  FORM SEND MESSAGE ------------*/
@media screen and (min-width:545px) {
	form#send_message {
		padding: 0;
		width: 500px;
		position: relative;
	}
	
	form#send_message fieldset { width: 477px; }
	
	form#send_message label { width: 77px; }
}

.poster { 
	background: url(../../images/back-poster.jpg);
	padding: 5px 0;
}

.poster_farm { background: url(../../images/back-poster_farm.jpg); text-align: center; }

/*------------------------------------------------------ VIDEO GALLERY  ------------------*/

.container {
	width: 100%;
	background: #fff;
	margin: 0 auto;
}


/*  VIDEO PLAYER CONTAINER */
.vid-container {
	position: relative;
	padding-bottom: 52%;
	padding-top: 30px; 
	height: 0; 
}
 
.vid-container iframe,
.vid-container object,
.vid-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 98%;
	height: 102%;
}


/*  VIDEOS PLAYLIST */
.vid-list-container {
	width: 92%;
	overflow: hidden;
	margin-top: 20px;
	margin-left:4%;
	
}

.vid-list {
	width: 4300px;
	position: relative;
	top:0;
	left: 0;
}

.vid-item {
	display: block;
	width: 148px;
	height: 148px;
	float: left;
	margin: 0 5px;
	padding: 10px;
}

.thumb {
	/*position: relative;*/
	overflow:hidden;
	height: 84px;
}

.thumb img {
	width: 100%;
	position: relative;
	top: -13px;
}

.vid-item .desc {
	color: #2c7d5c;
	margin-top: 3px;
}

.vid-item:hover {
	background: #eee;
	cursor: pointer;
}

.arrows {width: 100%;}

.arrow-left {
	color: #fff;
	position: absolute;
	background: #000000;
	font-size: 20px;
	z-index: 99;
	cursor: pointer;
}

.arrow-right {
	color: #fff;
	position: absolute;
	background: #000000;
	font-size: 20px;
	z-index: 99;
	cursor: pointer;
}

.arrow-left:hover, .arrow-right:hover {
	background: #2c7d5c;
}	

@media (min-width: 625px) {
	.arrows {position:relative;}
	
	.vid-list-container {padding-bottom: 20px;}
	
	.arrow-left{
		left: 0;
		top: -181px;
		padding: 45px 11px;
	}
	
	.arrow-right{
		right: 0;
		top: -181px;
		padding: 45px 11px;
	}
}
@media (max-width: 624px) {
	.vid-list-container {padding-bottom: 20px;}

	/* reposition left/right arrows */
	.arrows {
		position:relative;
		margin:20px auto 80px auto;
		width:96px;
	}
	
	.arrow-left {
		left: 0;
		top: -29px;
		padding: 11px;

	}

	.arrow-right {
		right: 0;
		top: -29px;
		padding: 11px;
	}
}

/*-----------------------------------------------------------  CALENDAR  -----------------------*/
/*-------------------------  NAVIGATION ------------*/
.navigation_calendar {
    background-color: #fff;
    color: #000000;
    position: relative;
    text-align: center;
}

.navigation_calendar a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	padding: 0 8px;
}

#vertical_menu .navigation_calendar a.nav_previous {
    display: inline-block;
    float: left;
    padding: 0 0 0 5px;
}

#vertical_menu .navigation_calendar a.nav_next {
    display: inline-block;
    float: right;
    padding: 0 5px 0 0;
}


/*-------------------------  CALENDAR   ------------*/
table.calendar {
    border-collapse: collapse;
    margin: 0 auto 15px;
}

table.calendar th {
    background-color: #296951;
	border: 1px solid #296951;
    color: #FFFFFF;
    text-align: center;
}

table.calendar td {
    border: 1px solid #296951;
    color: #000000;
	position:relative;
    text-align: center;
}

.calendar_cell {
    display: block;
    height: 100%;
    position: relative;
}

.calendar_date {
    color: #000000;
    display: block;
    font-size: 11px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.calendar_date.booked {
	background-color: #296951;
	color: #fff;
	border-radius: 15px;
}

.calendar_cell a, .calendar_cell a: visited {
	background-color: red;
}

.event_times {
    color: #000000;
    display: block;
    font-size: 10px;
}

table.calendar tr td a {
    cursor: pointer;
    display: block;
    text-decoration: none;
}

table.calendar tr td a:hover { background-color: #586EDE; }

table.calendar tr td a:hover span { color: #FFFFFF; }

.today a span.calendar_date { color: #296951; }


/*-------------------------  VM_SMALL ---------------*/
.navigation_calendar.vm_small {
	height: 24px;
	margin: 15px auto 0;
	width: 215px;
	color: #fff;
	background-color: #296951;
}

table.vm_small { width:215px; }

table.vm_small th { 
	font-size: 14px;
	padding:5px 0  
}

table.vm_small td { 
    height: 30px;
    padding: 0;
    width: 14%;
}

table.vm_small tr td a {
    font-size: 19px;
    height: 100%;
    width: 100%;
	padding:0 !important;
}



/*-------------------------  MYTOOLS ---------------*/
.navigation_calendar.mytools {
    height: 24px;
    margin: 15px auto 0;
    width: 100%;
}

table.mytools { width:100%; }

table.mytools th { 
	font-size: 14px;
	padding:5px 0  
}

table.mytools td { 
    height: 50px;
    padding: 0;
    width: 50px;
}

table.mytools tr td a {
    font-size: 19px;
    height: 100%;
    line-height: 35px;
    width: 100%;
}

calendar_buttons { width:738px; }

/*------------------------------------------------------ EVENTS  ------------------*/
.event_link:hover{
	background: #CECECE;
    display: block;
	color:#FFFFFF;
}
.event_link:hover h1, .event_link:hover h2{color:#FFFFFF;}

.all_events a{
	padding: 10px;
    display: block;
}

.all_events H1{
font-size: 15px;
    line-height: 20px;
    color: #2c7d5c;
}

.event_link h2{
    font-size: 15px;
    line-height: 20px;
    color: #8c8c8c;
}

/*----------------------SELECT EVENT SCHEDULE   --------*/
#select_time_schedule a {
    border-bottom: 1px solid #E4E4E4;
    color: #D72211;
    display: block;
    margin: 0 auto;
    padding: 9px 0;
    width: 670px;
}

#select_time_schedule a:hover { background:url(../../atimo_s/ajax/event/images/publish-event-red-arrow.png) left center no-repeat #f8f8f8; }

#select_time_schedule a:last-child { border-bottom: none; }

#select_time_schedule span {
    display: inline-block;
    font-size: 28px;
    height: 63px;
    line-height: 63px;
    margin-left: 40px;
    text-align: center;
    width: 377px;
}

#select_time_schedule img {
    float: right;
}

/*--------------------------------------------------------------  EVENTS -----------------------*/
section.events {
    padding: 15px 20px;
}

section.events h2 {
    color: #DEA200;
	clear:both;
    font-family: Tahoma,Geneva,sans-serif;
    font-size: 22px;
    margin: 0 0 15px 0;
}

article.event {
	clear: both;
	margin: 0 0 10px 0;
	overflow: auto;
	padding: 0 0 5px 0;
	border-bottom: 1px dashed #B9B5B5;
}

article.event h2 {
    font-size: 12px !important;
    font-style: italic;
    font-weight: normal;
    padding: 0 0 5px !important;
}


article.event h3 {
	clear:both;
    color: #000 !important;
    font-size: 19px;
    font-weight: normal;
    margin: 0;
    padding: 3px 0 0 !important;
}

article.event h4 {
    font-size: 16px;
    margin: 12px 0 0;
	clear:both;
	color:#000000;
	display:inline-block;
	position:relative;
	top:6px;
}

.event .map {
    font-size: 11px;
	padding-left:5px;
}


#request_publish_event {
    display: inline-block;
    position: relative;
    text-align: center;
    top: 34px;
    width: 100%;
}

.event blockquote {
    border-left: none;
    background: none;
    clear: none;
    padding: 0;
    margin: 0;
}


@media screen and (min-width:950px) { #upcoming_events { margin-top: -10px; } }
@media screen and (min-width:760px) and (max-width:999px) { #upcoming_events { margin-top: -10px; } }


.flex {
	display: flex;
	flex-wrap: wrap;
	clear: both;
}

	/*-----------------------------------------------------------  FX_4   --------------------------*/
	@media screen and (min-width:800px) {
		.fx_4:nth-child(1n), 
		.fx_4:nth-child(2n), 
		.fx_4:nth-child(3n) {
			width: calc(25% - 10px);
			margin: 0 10px 10px 0;
			display: block;
		}

		.fx_4:nth-child(4n) {
			width: 25%;
			margin: 0 0 10px 0;
			display: block;
		}
	}

	@media screen and (min-width:595px) and (max-width:799px) {
		.fx_4:nth-child(1n), 
		.fx_4:nth-child(2n) {
			width: calc(100%/3 - 10px);
			margin: 0 10px 10px 0;
			display: block;
		}

		.fx_4:nth-child(3n) {
			width: calc(100%/3);
			margin: 0 0 10px 0;
			display: block;
		}
	}

	@media screen and (min-width:395px) and (max-width:594px) {
		.fx_4:nth-child(1n) {
			width: calc(100%/2 - 10px);
			margin: 0 10px 10px 0;
		}

		.fx_4:nth-child(2n) {
			width: calc(100%/2);
			margin: 0 0 10px 0;
		}
	}


	@media screen and (max-width:394px) {
		.fx_4 {
			width: 100%;
			margin: 0 0 10px 0;
		}
	}

	/*-----------------------------------------------------------  FX_3   --------------------------*/
	@media screen and (min-width:1319px) { aside div.fx_3 { width: 100% !important; } }

	@media screen and (min-width:595px) {
		.fx_3:nth-child(1n), .fx_3:nth-child(2n) {
			width: calc(100%/3 - 10px);
			margin: 0 10px 10px 0;
			display: block;
		}

		.fx_3:nth-child(3n) {
			width: calc(100%/3 - 10px);
			margin: 0 0 10px 0;
			display: block;
		}
	}

	@media screen and (min-width:560px) and (max-width:594px) {
		.fx_3:nth-child(1n) {
			width: calc(100%/2 - 10px);
			margin: 0 10px 10px 0;
			display: block;
		}

		.fx_3:nth-child(2n) {
			width: calc(100%/2 - 10px);
			margin: 0 0 10px 0;
			display: block;
		}
	}

	@media screen and (max-width:559px) {
		.fx_3 {
			width: 100%;
			margin: 0 0 10px 0;
		}
	}

	/*-----------------------------------------------------------  FX_2   --------------------------*/
	@media screen and (min-width:600px) {
		.fx_2:nth-child(1n) {
			width: calc(100%/2 - 10px);
			margin: 0 10px 10px 0;
			display: block;
			float: left;
		}

		.fx_2:nth-child(2n) {
			width: calc(100%/2);
			margin: 0 0 10px 0;
			display: block;
		}
	}

	@media screen and (max-width:599px) {
		.fx_2 {
			width: 100%;
			margin: 0 0 10px 0;
			display: block;
		}
	}
/*-----------------------------------------------------------  PHOTO ALBUM ---------------------------*/
.photo_albums a{
	-webkit-box-shadow: 1px 1px 6px -2px rgb(0, 0, 0);
	-moz-box-shadow: 1px 1px 6px -2px rgb(0, 0, 0);
	box-shadow: 1px 1px 6px -2px rgb(0, 0, 0);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #32783d;
}

.image-thumbnail {
	max-height: 250px;
	overflow: hidden;
}

.photo_albums a dl dt span{
	margin: 0 auto;
	display: block;
	width: 100%;
	border-radius: 4px 4px 0 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	height: 250px;
	background-size: cover !important;
}

.photo_albums a dl:hover dt span {
	-webkit-transform: scale(1.1);
	transform: scale(1.3);	
}

.title{
	background: #2c7d5c;
	color: #FFFFFF;
	text-align: center;
	margin: 0;
	padding: 5px 5px;
}

.albumdate{
	text-align: center;
	background: #f7f7f7;
	color: #000000;
	padding: 5px 0;
}

.back{
	float: right;
	background: #7697d2;
	color: #FFFFFF;
	padding: 2px 17px;
	clear: both;
	font-size: 14px;
}

.back:hover{
	background:#009146;
	color:#FFFFFF; 
}

@media screen and (min-width: 530px){
	.photoSearch{width:485px !important;}
}

@media screen and (max-width: 529px){
	.photoSearch{width:100% !important;}
}

.photosearch fieldset {padding: 20px 15px 15px 15px;}

.photoSearch .photoDate{
	background: #7587ab;
	color: #FFFFFF;
	font-weight: normal;
	padding: 4px 10px;
	width: auto;
	position: absolute;
	left: 11px;
	border: solid 1px #e5e7e6;
	font-size: 14px;
}

@media screen and (min-width: 800px){
	form.photoSearch label{ width: 151px !important; text-align: center;}
	form.photoSearch select { width: 215px !important;}
}

@media screen and (max-width: 799px){
	form.photoSearch label{
		width: 151px !important;
		text-align: center;
		margin: 0 auto;
	}

	form.photoSearch select { 
		width: 215px !important;
		margin: 0 auto;
	}
}

/*-----------------------------------------------------------  Google recaptcha Hide --------------------------*/	
.grecaptcha-badge {
	display: none;
}	


/*-----------------------------------------------------------  VIDEO -----------------------------------------*/
@media screen and (min-width: 880px) {
    .video_portrait { padding-bottom: 600px; }
}

@media screen and (max-width: 879px) {
    .video_portrait { padding-bottom: 100%; }
}

.video {
	position:relative;
	padding-bottom:56.25%;
	height:0;
	overflow:hidden;
    margin-bottom: 2em;
}

.video_portrait {
    position:relative;
    height:0;
    overflow:hidden;
    margin-bottom: 2em;
}

.video iframe, .video object, .video embed,
.video_portrait iframe, .video_portrait object, .video_portrait embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

aside .video { margin-bottom: 1em; }

/*-----------------------------------------------------------  TOUR THE FARM   --------------------*/

