/*
 * auto-centering in IE 5
 * we reset this value in the next rule so content is left aligned. 
 */
 
body {
    text-align: left;
    font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* 
 * This wrapper, first child of body, is used to wrap "ez-css" modules. 
 * It will auto-center if it is given a width smaller than the width of the viewport.
 * Position relative is used to create a stacking context from the start (to prevent z-index issues). 
 * overflow:hidden is used to create a block formatting context, but if you give this element a width you can replace this declaration with display:inline-block
 */

.ez-mw {
    text-align: center;
    max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	position :relative;
	z-index: 1;
	overflow: hidden;
    background-color:#FBF5EF;
}

/*
 * to make sure modules clear previous containers
 */

.ez-wr {clear: left;}

/*
 * this is the clearfix method
 * we rely on this to contain floats in "stand-alone" modules 
 */
 
.ez-wr:after,
.ez-box:after {
      content: "";
      display: block;
      height: 0;
      clear: both;
      overflow: hidden;
}

/*
 * hacks for IE 5 (Win and Mac)
 * (min-height is the "hasLayout" trigger used for IE7)
 */
 
.ez-wr,.ez-box,.ez-last {display: inline-block;min-height: 0;}    
/* hides from IE-mac \*/  
* html .ez-wr,
* html .ez-box,
* html .ez-last {height: 1%;}  
.ez-wr,.ez-box,.ez-last {display: block;}  
/* end hide from IE-mac */

/*
 * the last DIV in the HTML flow (a column) must create a new block formatting context.
 * by default, we rely on "overflow:hidden", but if this creates an issue with your design, then try one of these classes instead: 
 * ez-oa
 * ez-dt 
 * ez-it
 * ez-tc
 * ez-ib
 */
 
.ez-oh {
	overflow: hidden;
}

* html .ez-oh {
	overflow: visible;
}

.ez-oa {
	overflow: auto;
}
.ez-dt {
	display: table;
}

.ez-it {
	display: inline-table;
}
.ez-tc {
	display: table-cell;
}

.ez-ib {
	display: inline-block;
}

/* 
 * DIVs to be columns
 * we float them left or right depending on module or layout
 * the negative margin is used to fix a IE6 bug (3px jog).
 */
.ez-fl {
	float: left;
}

* html .ez-fl {
	margin-right: -3px;
}

.ez-fr {
	float: right;
}

* html .ez-fr {
	margin-left: -3px;
}

/*
 * every floated column in a module or layout needs a width
 * here we have 5 default values: 1/4, 1/3, 1/2, 2/3 and 3/4
 */

.ez-25 {width: 25%;}
.ez-33 {width: 33.33%;}
.ez-50 {width: 50%;}
.ez-66 {width: 66.66%;}
.ez-75 {width: 75%;}

/* 
 * the following classes are used to make columns that are siblings overlap by 1 pixel (to vertically align 1 pixel borders between containers)
 * for this to work, this class must be applied to the following elements: 
 * - column 1 of Module 2A, 
 * - column 2 of Module 3A,
 * - column 1 of Module 3B, 
 * - column 3 of Module 4A, 
 * - column 1 of Module 4B, 
 * - column 1 in column 1 of Module 4B, 
 * - column 2 in column 1 of Module 4B 
 */
 
.ez-negmr {
	margin-right: -1px;
}

* html .ez-negmr {
	margin-right:-4px;
}

/*
 * (star html hack is used here because of the cascade, to override "* html .ez-fl")
 * same as above, but for these elements:
 * - column 1 of Module 3A,
 * - column 1 of Module 4A,
 * - column 2 of Module 4A 
 */
 
* html .ez-negmx,
.ez-negmx {
	margin-right: -1px;
}

/* 
 * same as above, but for these elements:
 * - column 1 of Module 2B,
 * - column 2 of Module 3B 
 */
 
.ez-negml {
	margin-left: -1px; 
}

* html .ez-negml {
	margin-left:-4px;
}

table, th, td {
    border: 0px solid black;
    border-collapse: collapse;
}

.fixwidth {				/* This is a cross browser fix (Safari being the main problem), use it on a full width td  */
    max-width: 980px;
	/*width:95%;			 Take up 95% of the browser width*/
    margin-left: auto;	/* These lines centre our page in the browser */
    margin-right: auto; /* These lines centre our page in the browser */
	background-color:#FBF5EF;	
}
.center {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    background-color: #FFE5CC;
}
nav ul {
    list-style-type: none;
	margin: 0;
    padding: 0;
    overflow: hidden;
}
nav li {					/* This sets the menu items as a horizontal list (new in HTML5)  */
	float: left;
}
.homeBody a,.galleries a{
    font-weight: bold;
    text-decoration: none;
}
/* unvisited link */
.homeBody a:link,.galleries a:link{
    color: #994C00;
}
/* visited link */
.homeBody a:visited ,.galleries a:visited{
    color: #f93;
}

/* mouse over link */
.homeBody a:hover ,.galleries a:hover {
    color: #f93;
}

/* selected link */
.homeBody a:active ,.galleries a:active{
    color: #0000FF;
}
#logo {
  width:12%;	
  background-color:#FBF5EF; 
}
#logo img{
  position: relative;
  top:0%;
  width:100%;
  margin-left: 0%;
  margin-top: 0%;
  border: 1px black solid;
  z-index:99; 
}

.generalHeader {
	width:100%;
	font-size:1.95em; /* Example:30px/16=1.875em */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin:5px;	
	color:#000000;
}
.homeHeader {
	font-size:2.0em; /* Example:30px/16=1.875em */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin:5px;	
	color:#000000;
}
.homeBody {
	padding-left: 10%;
	padding-right: 10%;
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	list-style:none;
	line-height:20px;
}

.galleries table{
    display: table;
    margin: 0 auto;
    width:90%;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

.galleries  td{	
	padding-left: 2.25%;
	padding-right: 2.25%;	
    margin-right: auto;
    margin-left: auto;    
}
.galleries  img{
    border: 3px solid #994C00;  
    /*background: #CCC;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 0px;
    padding-bottom: 2px; 
    margin-right: auto;
    margin-left: auto;
    display: block;*/
}
.galleries a{
	/*border-top-left-radius:.1em;
	border-top-right-radius:.1em
    width: auto;
    height:auto;*/
    display: block;
    margin-right: auto;
    margin-left: auto; 
    padding-top: 10px;
}
.galleries .title{
    width:66.5%;
    padding-left: 1px;
    padding-right: 1px;    
    padding-top: 3px;
    padding-bottom: 3px;    
    background-color:#FFE5CC;
    font-size:0.8em;  
    

}
.galleries div{
    background-color:#FBF5EF;
    margin-right: auto;
    margin-left: auto;    
}

.galleries #header{
	font-family:Verdana, Arial, Helvetica, sans-serif;	
	font-size: 2.25em;
	padding-top: 10px;
}
.galleries #subheader{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	padding: 15px;

}

.translationSection {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    background-color: #FFFFFF;	
}
.translationTable{
    margin-left: auto;
    margin-right: auto;
    width:100%;
    background-color:#ffffff;
}
.translationMenu{
	top:40px;
	padding:0;
	height: 66px;
	background-color:#FBF5EF;
}


.translationHeader {
	border-top:15px;
}
.translationHeader  p{
	padding-top:5%;
	color:#000000;
	font-size:2.0em; /* Example:30px/16=1.875em */
	font-family:"Times New Roman", Times, serif;
    	text-align: center;
	text-decoration: underline;
	/*vertical-align: -10%; */	
}
.translationHeader  p.small{
	font-size:1.9em; /* To fit longer titles such as the Spanish translation*/
}
.translationBody{
    font-family: "Times New Roman", Times, serif;
	padding-left: 10%;
	padding-right: 10%;
	width: 90%;
}
.translationFooter{

    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: #FFFFFF;	
/*	some arbitrary border styling
	border-style: double; 
	border-color: gray; 
	border-width: 3px; 
*/
}
.translationFooter td {
	text-align:center;
	min-height:80px;

}
#footer{
	padding-top:8%;
}
.leftImage {
	width: 9%;
	float:left;
	padding:3%;	
}
.rightImage {
	width: 9%; 
	float:right;
	padding:3%;	
}

.generalPara .menuLinks {
	color:#000000;
	font-size:16px;
	font-weight: 400;
	font-family:Arial;
	text-decoration:none;
	font-weight: bold;
}
.generalPara .menuLinks:hover {
  font-weight: bold;
  color: #994C00;
}
.menuLinks {
	position: relative;
	color:#000000;
	font-size:1.0em; /* 30px/16=1.875em */
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-decoration:none;

}
.menuLinks img{
	width : 30px; 
	height: 20px;
}

.menuLinks ul{
	margin-left: 15px;
}

.menuLinks li{
	padding-left: 10px;
    min-width: 150px;
	text-align: left;
}	
.menuLinks a{

}	
.menuLinks:hover {
	color:#999;
}
.menuLinks2 {
	vertical-align:middle;
	position: relative;
	background-color:#FFE5CC;

}
.menuLinks2  a{
	color:#FF9933;
	line-height:1.8em;
	font-size:1.8em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-decoration:none;

/*	border: 1px solid #000000; */
}
.menuLinks2 li{
	padding: 0 45px;
	float: none;
	display: inline-block;
}	
.menuLinks2  ul{
	text-align: center;
}

.menuLinks2  img{
	position: relative;
	top: 0%;
	padding:0%;
    height: auto;
    width: 100%;
    float: left;
	border: 1px solid #000000;
}

.menuLinks2:hover {
	color:#FAAC58;
}

.menuLinks2:hover {
	color:#999;
}

.generalList {
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333333;
	list-style:none;
	line-height:20px;
}


.generalTable {
    margin-left: auto;
    margin-right: auto;
	width:100%;
	min-height:400px;
	position: relative;
}
/*

.generalHeader2 {
	font-size:20px;
	font-family:Arial;
	font-weight:bold;
	margin:5px;
	color:#FFFFFF;
}
.generalHeader3 {
	font-size:30px;
	font-family:Verdana;
	font-weight:bold;
	margin:5px;
	color:#FFFFFF;
}
.generalHeader4{
	font-size:16px;
	font-family:Arial;
	font-weight:bold;
	margin:5px;
	color:#FFFFFF;
}
.generalHeader5 {
	font-size:38px;
	font-family:Arial;
	font-weight:bold;
	margin:5px;
	color:#FFFFFF;
}
.generalPara .textBody{
  position: relative;
	font-size:14px;
	font-family:Arial;
	margin:10px;
	color:#FFFFFF;
}

.generalPara2 {
	font-size:14px;
	font-family:Arial;
	margin:10px;
	color:#CCFF00;
}
.generalPara3 {
	font-size:16px;
	font-family:Arial;
	margin:10px;
	color:#CCFF00;
}


.generalList2{
	font-size:14px;
	font-family:Arial;
	color:#FFFFFF;
	list-style:square;
	line-height:20px;
}
.generalList3{
	font-size:14px;
	font-family:Arial;
	color:#FFFFFF;
	list-style:decimal;
	line-height:20px;
}

*/
.generalList4{  
    margin-left: 50px;
    font-size:14px;
    font-family:Arial;
    color:#000000;
    list-style:square;
    line-height:20px;
}
#signUp-table{
    display: block;
        border-radius:15px;
	border: 3px solid #994C00;
    margin-left: 50px;
    margin-right: 50px;
}
#signUp-content{
    font-family:Arial, Helvetica, sans-serif;
    width: auto;
    background-color:#FBF5EF;
}
#signUp-content-left {
	border-right: 1px solid #994C00;
    border-radius:15px;
	width:50%;
	margin:20px;
	padding:15px;
	position:relative;
}
form aside{
    display:inline; 
    margin-left: 110px;
    font-size: .8em;
    color: gray;
}
form sup{
    color:red;
}
#signUp-header-left{
	font-size:1.3em;
	font-weight:bold;
	color:#000000;
	margin-top:15px;
	margin-left:10px;
	margin-right:0px;
	margin-bottom: 0px;
}
#signUp-content-right{
    display:inline-block;
    float: right;
	margin:20px;
    padding:2px;
    height:425px;
    overflow-y:scroll;
}
#signee{
    font-size:1em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;

  
}
#country{
    font-size:1em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;

}
#comments{
    font-size:0.9em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
    margin-right: 10px;
    padding: 8px;
    border: 1px solid #EABE9A;
    border-radius:5px;
	background-color:#FFE5CC; 
    color: hsl(30,50%,25%); /* this is orange with 0% saturation and 25% lightness ie a dark grey, and no transparency */

}
#totalsigned{
    margin-right:auto;
    margin-left:auto;
    width:95%;
    font-size:32px;
	font-family:'Tangerine', sans-serif; /* Calligraffitti, Tangerine,Alex Brush,Stalemate 
	font-weight:bold; */
    text-shadow: 5px 5px 5px #c16d41;
    color:#994C00;
    border: 1px solid #994C00;
    border-radius:5px;
    padding:6px;
    background-color:#FFE5CC;
}
#number{
    font-size:2em;
    background-image:radial-gradient(
      white,
      #FFE5CC
    ); 

}
#thanks{
    font-size:2.25em;
    background-image:radial-gradient(white,#FFE5CC); 
}
.signUpLabel {
    width: auto;
	position:relative;
	display:inline-block;
	color:#333333;
	font-family:Arial;
	font-size:14px;
}

.signUpButton {
	background-color:#FFE5CC;
	border: 1px solid #000000;
	border-radius:5px;
	width:70px;
	height:25px;
	color:#994C00;
	font-family:Arial;
	font-size:14px;
	font-weight:bold;
	margin-right:10px;
	margin-left:1px;
}
.signUpButton2 {
	background-color:#FFFFFF;
	border:0px;
	border-radius:5px;
	width:80px;
	height:25px;
	color:#FF9900;
	font-family:Arial;
	font-size:14px;
	font-weight:bold;
	margin-right:0px;
}
.signUpButton:hover {
	color:#FAAC58;
	}
.signUpButton2:hover {
	color:#669900;
}
/* Some normalising rules for forms*/
input[type="button"],
input[type="submit"] {
   padding: 2px;
}
input[type="text"],
input[type="password"],
textarea,select {
    border: 1px solid rgba(234, 190, 154, 1);
    float: right;
    width: 300px;
}
textarea{
	width: 295px;
}
.moreInfoBox {
	border-radius:10px;
	border: 1px solid #FFFF00;
	width:450px;
	height:auto;
	margin:10px;
	background-color:#66CCFF;
	color:#333333;
}
.moreInfoLabel {
	width:100%;
	height:40px;
}
.facebookLogo {
	width:60px;
	height:40px;
	float:right;
}
.design {
	color:#FFFFFF;
	font-family:Arial;
	font-size:10px;
	margin-right:20px;
}
.contactUsDiv{
    margin-left:50px;
    width:100%;
}
.fbBox{
    border-radius: 10px;
    border: 2px solid #994C00;
    width: 300px;
    height: 250px;
    margin: 20px;
    background-color: #FFF;
    display: inline-block;
    position: relative;
}
.contactLinks {
	position: relative;
	color:#000000;
	font-size:1.5em; /* 30px/16=1.875em */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-decoration:none;

}
#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(../img/theme/overlay.png) repeat; /* provides the see-through background */
    text-align:center;
}
#lightbox p {
    text-align:right;
    color:#fff;
    margin-right:20px;
    font-size:12px;
}
.error {
	margin: 10px;
	color: rgba(153, 122, 15, 1);
	font-family: Arial;
	font-size: 1em;
	border-radius: 10px;
	border: 1px solid rgba(234, 190, 154, 1);
    padding: 10px;
	display: block!important;
}
.copyright{
    font-size: 0.75em; 
    color:#000000;
    font-family:Verdana, Arial, Helvetica, sans-serif;
}
.g-recaptcha{
	position: relative;
    top: 20px;
    left: 105px;
}

.copyright-symbol {
	font-size: 14px;
    position: ABSOLUTE;
}

.newsletter-note {
	font-size: .8em;
    color: gray;
}