/***********************************************/
/* General Typestyles                                 */
/***********************************************/

/*********** ya basic styles ***********/

/**body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;}  **/
td {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px}

p {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px}
a {  text-decoration: none}
a:hover {  text-decoration: underline}
h1 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 24px; color: #333333;}

/*********** ya custom styles ***********/

.sectnhd {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold}
.tiny {
	font-size: 8px;
	font-family: "Courier New", Courier, mono;
}
.big { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 24px ; font-weight: normal}
.error {color:#FF0000;}
.red {color:#CC0000;}
.white {color:#FFFFFF;}
.normal {font-size: 12px; color:#000000;}
.gray {color:#CCCCCC;}

.imgborder {
	border-top: 4px;
	border-right: 4px;
	border-bottom: 4px;
	border-left: 4px;
	border-color: #000000;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}


/***********************************************/
/* Layout Divs                                 */
/***********************************************/



/*********** Pop-up styles ***********/

.thumbnail_right{
position: relative;
z-index: 0;
}

.thumbnail_right:hover{
background-color: transparent;
z-index: 100;
}

.thumbnail_right span{ /*CSS for enlarged image*/
position: absolute;
background-color: #CCCCCC;
padding: 5px;
left: -1000px;
border: 1px solid red;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail_right span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail_right:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -75px;
left: -320px; /*position where enlarged image should offset horizontally */
}

.thumbnail_left{
position: relative;
z-index: 0;
}

.thumbnail_left:hover{
background-color: transparent;
z-index: 100;
}

.thumbnail_left span{ /*CSS for enlarged image*/
position: absolute;
background-color: #CCCCCC;
padding: 5px;
left: -1000px;
border: 1px solid red;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail_left span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail_left:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -100px;
left: 100px; /*position where enlarged image should offset horizontally */
}

