/* global settings */
body {
margin: 0px;
background-color: #3E74A8;
font : 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.minifont { font-family: arial; font-size: 10; font-style: italic; }
/* main section of page */
.whiteback {
background-color: #ffffff;
padding: 2px 0px 0px 0px;
z-index:0;
}

/* standard text input style */
input[type="text"], input[type="email"], textarea, select { font-family: verdana, tahoma, arial, helvetica; font-size: 11px; color: black; 
padding: 4px;
border:2px solid #EDC877;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
border-radius:6px;
}
input:focus { border:2px solid blue; }
select:focus { border:2px solid blue; }
textarea:focus { border:2px solid blue; }
.button_send  {
 font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    color: #FFF;
    padding: 5px 50px 5px 50px;
    border: 1px solid #999;
 
    text-shadow: 0px 1px 1px #666;
    text-decoration: none;
 
    -moz-box-shadow: 0 1px 3px #111;
    -webkit-box-shadow: 0 1px 3px #111;
    box-shadow: 0 1px 3px #111;
 
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
 
    background: #64a724;
    background: -moz-linear-gradient(top, #64a724 0%, #579727 50%, #58982a 51%, #498c25 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#64a724), to(#498c25), color-stop(0.4, #579727), color-stop(0.5, #58982a), color-stop(.9, #498c25), color-stop(0.9, #498c25));
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#64a724', endColorstr='#498c25', GradientType=0 );
 
    cursor: pointer;
}

.button_send:hover {    border: 1px solid #FFF;}

/* main content area */
.maincell {
	padding : 4px 4px 4px 4px;
	vertical-align : top;
	}
.maincell h1{
	font-size: 20px;
	font-weight: bold;
	margin: 0px 0px 4px 0px;
	}
.maincell h2{
	font-size: 16px;
	font-weight: bold;
	padding:1px 2px 1px 2px; 
	margin: 0px 0px 0px 0px;
	}
.maincell h3{
	font-size: 14px;
	font-weight: bold;
	color: #003366;
	margin:12px 0px 6px 0px;
	}
.maincell h4{
	font-size: 14px;
	font-weight: bold;
	color: #003366;
	border-bottom: 1px solid #000000;
	margin:6px 0px 6px 0px;
	}
.maincell h5{
	font-size: 12px;
	font-weight: bold;
	color: #003366;
	margin: 14px 0px 0px 0px;
	padding: 2px 0px 2px 0px;
	border-top: 1px solid #003366;
	border-bottom: 1px solid #003366;
	}	
.maincell p {
	color : #092632;
	font-size: 12px;
	margin: 2px 0px 4px 0px;
	padding: 4px 0px 4px 0px;
	}
.maincell a:hover {
	border-bottom: 1px solid #263982; 
	color: #263982;
	background-color: #E5EBFF;
}
.maincell .photo a:hover {
	border: 0px;
	background: none;
	}
	
/* outline of tables in main content area */

.taboutline {
	background: #ffffff;
	border: 1px solid #C0C0C0;
	padding-bottom: 0px;
	margin-bottom: 12px;
	font-size: 12px;
	}
.taboutline p {
	margin: 2px 4px 2px 4px;
	padding: 0px 0px 0px 0px;
	}
.taboutline h3 {
	font-size: 12px;
	margin-bottom : 5px;
	margin-top: 2px;
	text-indent: 4px;
	font-color: white;
	}
	
td.formphotobck {
	background-color: #F9ECCE;
	margin-bottom: 2px;
}

td.formleftbck {
	background-color: #6CAFF0;
	margin-bottom: 2px;
	width: 170px; 
}

.formleftbck p {
	color: white;
	font-weight: bold;
	text-align: right;
}

td.formrightbck {
	background-color: #6CAFF0;
	margin-bottom: 2px;
}

.formrightbck p {
	color: black;
	font-weight: normal;
	text-align: left;
}

.rounded-img {
	display: inline-block;
	border: solid 1px grey;
	overflow: hidden;
/*	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;*/
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

.arrow-n,
.arrow-e,
.arrow-s,
.arrow-w {
  /*
   * In Internet Explorer, The"border-style: dashed" will never be
   * rendered unless "(width * 5) >= border-width" is true.
   * Since "width" is set to "0", the "dashed-border" remains
   * invisible to the user, which renders the border just like how
   * "border-color: transparent" renders.
   */
  border-style: dashed;
  border-color: transparent;
  border-width: 0.53em;
  display: -moz-inline-box;
  display: inline-block;
  /* Use font-size to control the size of the arrow. */
  font-size: 12px;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: top;
  width: 0;
}

.arrow-n {
  border-bottom-width: 1em;
  border-bottom-style: solid;
  border-bottom-color: yellow;
  bottom: 0.25em;
}