/*
    Stylesheet vthc.de
	V. 2010-04-06
*/

* {
	font-family: verdana,arial,helvetica;	
}


.site {
    background-color: #708777;
    margin:0 auto;
	width: 1000px;
}

.sitetennis{
    background-color: #B8859D;
    margin:0 auto;
	width: 1000px;
}

.header {
    background-image: url(/images/bgheader.png);
	height: 136px;
	width: 1000px;
}

.headercontent{
    float: left; 
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 70px 0px 0px 30px;
}

.logo{
    float: right;
    margin: 8px 65px 0px 0px;
}

.navigation {
	background-color: #8A2A64;
	height: 26px;
	width: 980px;
	padding: 6px 10px 0px 10px;
}

.sitein{
    clear:both;
    width: 1000px;
}

.subnavigation {
	float: left;
	margin: 20px 15px 0px 10px;
	width: 140px;
}

.content {
	float: left;
	padding-top: 20px;
	width: 600px;
	color: white;
}

.headline{
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
}

.contenttexthome{
    color: white;
}

.bild{
   margin-bottom: 15px; 
}

.newsevents {
	float: right;
	padding: 20px 10px 0px 0px;
	width: 200px;
}

.eventtext{
    background-color: #8A2A64;
    color: white;
    width: 184px;
}

.events{
    font-size: 12px;
    background-color: white;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    width: 170px;
    padding: 5px;
}

.newstext{
    background-color: #8A2A64;
    color: white;
    width: 184px;
}

.news{
    background-color: white;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    width: 170px;
    padding: 5px;
    
}

.footer {
    clear: both;
    font-size: small;
	background-color: #8A2A64;
	height: 20px;
	width: 980px;
	padding: 0px 10px 0px 10px;
}

.date{
    color: white;
}

h1.error{
    color: white;
}

span.error{
    color: white;
}

.laenderspielheadlines{
    color: #8A2A64;
    text-decoration: underline;
}

div.spieler{
  font-size: 12px;
  margin: 0px 10px;
}

.clear{
  clear: both;
}



/* Bilder vergrößern */
p {
  /* In order to create the proper effect with hover we should use display inline-table
  This will display the big picture right next to its thumbnail
  */
  list-style:none;
  display:inline-table;
}


/* This is the pic to display when the hover action occur over the li that contains the thumbnail  */
p .pic{
  /* Animation with transition in Safari and Chrome */
  -webkit-transition: all 0.6s ease-in-out;
  /* Animation with transition in Firefox (No supported Yet) */
  -moz-transition: all 0.6s ease-in-out;
  /* Animation with transition in Opera (No supported Yet)*/
  -o-transition: all 0.6s ease-in-out;
  /* The the opacity to 0 to create the fadeOut effect*/
  opacity:0;
  visibility:hidden;
  position:absolute;
  margin-top:00px;
  margin-left:10px;
  border:1px solid black;

}


p .mini:hover{
  cursor:pointer;
}


/* This create the desired effect of showing the imagen when we mouseover the thumbnail*/
p:hover .pic {
  /* width and height is how much the picture is going to growth with the effect */
  width:250px;
  opacity:1;
  visibility:visible;
  float:right;
}




