/* 
  -----------------------------------
  SeaMore Travel - Tabellen Stylesheet
  by SeaMore Travel - Chris Hornbogner
  www.seamore-travel.com 
  -----------------------------------
*/

/* 
  -----------------------------------
	CSS zur Gestaltung der Tabelle
  -----------------------------------
*/

.pricelist table {
	width: 560px;
	border-collapse: collapse;
	background: white;
	color: #666666;
}
/* Überschrift gestalten */
.pricelist caption {  
   font-size: 12px;
   font-weight: bold; 
   background-color: white; 
   color: #666666; 
   text-align: left;
   padding: 1em;
   padding-left: 0; 
}
/* Tabellenzellen gestalten */
.pricelist th, td {  
   padding: 0.5em 1em; 
   text-align: left;
   vertical-align: top;  
}
.pricelist th { 
   font-family: Arial, Helvetica, sans-serif; 
   font-size: 12px;
   font-weight: bold; 
}
.pricelist thead { 
   background-color: #CCCCCC; 
   color: white;
}
.pricelist tfoot { border-top: 1px dotted #99999; }

/* Zebrastreifen und Hovern */
.pricelist tr.zebrastreifen { background-color: #EFEFEF; color: #666666; }

.pricelist tr:hover { background-color: #530029; color: white; }
.pricelist thead tr:hover{ background-color: #CCCCCC; color: white; }
.pricelist tfoot tr:hover { 
   background-color: white; 
   color: #666666;
}

