/* CSS Document */

* {
	/*font-family:Arial,Verdana,Tahoma,Helvetica,sans-serif;*/
 	font-family:"Times New Roman", Times, Georgia, serif;
	font-size:13px;
	color:#666666;

	/*font-family:Georgia, "Times New Roman", Times, serif;*/
	text-align:justify;
	line-height:1.7;
}

html {
	height: 100%;
}


body {
	/*background-color:#e6e6e6;*/
	/*background-color:#e9e9e9;*/
	/*background-color:#efefef;*/
	background-color:#f3f3f3;
	/*background-color:#f9f9f9;
	background-image:url('../img/bg-image.jpg');
	background-repeat:repeat-y;*/
	z-index:-20;
	padding:0;
	margin:0;
	line-height:1.5;
	
	height: 100%;
}









.txtIdentity {
	color:#c91a5d;
}

.txtHighlight {
	color:#ff6666;
}

.txtSmall {
	font-size:11px;
	font-style:italic;
}

.txtError {
	color:#ff0000;
	font-weight:bold;
}











H1 {
 	font-family:"Times New Roman", Times, Georgia, serif;
	font-size:15px;
	color:#c91a5d;
	font-weight:600;
	font-variant:small-caps;
}

H2 {
 	font-family:"Times New Roman", Times, Georgia, serif;
	font-size:12px;
	color:#c91a5d;
	font-weight:600;
}









a, a:link, a:visited {
	text-decoration:underline;
	color:#c91a5d;
	background-color:transparent;
}

a:hover, a:active {
	background-color:#fcebf1;
} 
/* Bug Firefox */
a:focus, a:focus:hover {
	background-color:#fcebf1;
}











.centerdiv{ /*IE method of centering a relative div*/
	text-align:center;
}

.centerdiv>div{ 
	margin:0 auto;
}

div#containerIndex {
  margin-left:auto;
  margin-right:auto;
	text-align:center;
  width:500px;
  height:450px;
	/*background-color:#fcebf1;*/
	/*border:1px dashed #c91a5d;*/
}

div#containerIndexLogo {
  margin-top:0px;
  width:500px;
  height:242px;
  background-image: url('../img/global-flower-trading-logo.gif') ;
	background-repeat:no-repeat;
	background-position:center center;
	/*border:1px dashed #c91a5d;*/
}

div#containerIndexLanguage {
  margin-top:0px;
  width:500px;
  height:200px;
  text-align:center;
	/*border:1px dashed #c91a5d;*/
	/*background-color:#f9f9f9;*/
}

div#containerIndexLanguageNL {
  float:left;
  width:240px;
  height:200px;
  text-align:center;
	/*border:1px dashed #c91a5d;*/
}

div#containerIndexLanguageEN {
  float:right;
  width:240px;
  height:200px;
  text-align:center;
	/*border:1px dashed #c91a5d;*/
}







.txtCopyright {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:10px;
	color:#c91a5d;
}

a.txtCopyright, a.txtCopyright:link, a.txtCopyright:visited {
	color:#c91a5d;
	text-decoration:underline;
}

a.txtCopyright:hover, a.txtCopyright:active {
	color:#c91a5d;
}
/* Bug Firefox */
a.txtCopyright:focus, a.txtCopyright:focus:hover {
	color:#c91a5d;
}











fieldset {
  clear:both; 									/* note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border:1px solid #c91a5d;
  padding:10px;									/* padding in fieldset support spotty in IE */
  margin:0;
  margin-top:5px;
  text-align:center;
}

fieldset legend {
	margin-top:0px;
	/*font-size:1.1em;*/ 					/* bump up legend font size, not too large or it'll overwrite border on left */
					   										/* be careful with padding, it'll shift the nice offset on top of border  */
 	font-family:"Times New Roman", Times, Georgia, serif;
	font-size:13px;
	color:#c91a5d;
	font-weight:600;
}

label { 
	display:block;  							/* block float the labels to left column, set a width */
	float:left; 
	width:150px; 
	padding:0; 
	margin:5px 0 0; 							/* set top margin same as form input - textarea etc. elements */
	text-align:right; 
}

fieldset label:first-letter { 	/* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
																/* pseudo-class on legend elements, but do support it on label elements */
																/* we instead underline first letter on each label element and accesskey */
																/* each input. doing only legends would  lessens cognitive load */
								   							/* opera breaks after first letter underlined legends but not labels */
}

br {
	clear:left; 									/* setting clear on inputs didn't work consistently, so brs added for degrade */
}