/*  =========================================================
Stylesheet mit grundlegender Formatierung
Datei: style.css
Datum: 2011-04-17
Autor: Dennis Hilgers
Validiert:
========================================================== */

@media all {

    /* HTML5 HACK  */  
    header, section, footer, aside, nav, article {  
        display: block;  
    }


    /* Allgemeine Formatierungen */
    body {

        font-family: Arial,Helvetica,sans-serif;
        font-size: 12px;
        color: black;
        background: #f7f8f9;
        text-align: left;
        line-height: 20px;
    }

    h1 {
        font-size: 18px;
        margin-bottom: 10px;
		font-weight: normal;
    }

    h2 {
        font-size: 16px;
        margin-bottom: 10px;
		font-weight: normal;
		border-bottom: 1px dashed black;
    }

    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 10px;
    }

    p {
        margin-bottom: 10px;
    }

    ul {
        margin-bottom: 10px;
        list-style-type: disc;
        padding-left: 20px;
    }

    ol {
        margin-bottom: 10px;
        list-style-type: decimal;
        padding-left: 20px;
    }

    hr {
        margin: 10px 0;
        border: none;
        border-bottom: 1px dashed #d9d9d9;
    }
	
	a {
		color: black;
	}
	
	a :hover {
		text-decoration: underline;
		color: #960000;
	}


    /* Grundaufbau des Layouts */
    #wrapper {
        width: 960px;
        margin: 0 auto;
    }

    header {
        height: 150px;
    }
	 
	 header #logo {
		 margin: 25px 0 0 30px; 
	 }

    aside {
        width: 214px;
		padding: 7px 13px 7px 0;
    }
	
	#contentwrap {
		margin-bottom: 10px;
		width: 960px;
	}
	
	#contentwrap #wrap {
		overflow: hidden;
		background: url(../img/content_body.png) repeat-y;
	}
	
	#contentwrap header {
		height: 30px;
		color: white;
		background: url(../img/content_head.png) no-repeat;
	}
	
	#contentwrap header a {
		color: white;	
	}
	
	#contentwrap footer {
		clear: both;
		height: 30px;
		border: none;
		padding: 0;
		background: url(../img/content_foot.png) no-repeat;
		margin-bottom: 0;
		width: 100%;
	}
	
	#contentwrap footer .info {
		line-height: 26px;
	}
	
	.info  {
		font-size: 12px;
		margin: 0;
		color: white;
		line-height: 30px;
		font-weight: bold;
		padding-left: 20px;
	}

	#content {
      width: 707px;
		padding: 7px 0 7px 13px;
    }

    footer {
      padding: 10px 0px 10px 20px;
		position: relative;
		background: url(../img/footer.png) no-repeat;
		color: white;
		height: 84px;
		margin-bottom: 10px;
		width: 940px;
    }
	
	footer a {
		color: white;
	}
	
	footer a:hover {
		text-decoration: underline;
	}
	
	footer .partner {
		text-align: center;
		position: absolute;
		top: 65px;
		width: 920px;
		font-size: 12px;
	}
	
	footer .sozial {
		list-style: none;
		position: absolute;
		top: 25px;
		left: 10px;
		margin: 0;
		overflow: hidden;
	}
	
	footer .sozial li {
		float: left;
	}
	
    #footer p {
        margin-bottom: 0;
    }

    /* Navigation */
    #navwrap {
        background: url(../img/nav_bg.png);
        float: left;
        width: 960px;
		height: 72px;
        margin-bottom: 10px;
    }
	
	#gruss {
		color: white;
		font-size: 12px;
		line-height: 26px;
		padding-left: 20px;
		font-weight: bold;
		float: left;
	}
	
	.submenu {
		list-style: none;
      padding: 0 20px 0 0;
		float: right;
		width: auto;
		overflow: hidden;
		margin: 0;
		color: white;
		font-size: 12px;
		line-height: 26px;
		font-weight: bold;
	}
	
	.submenu li {
		float: left;
	}
	
	.submenu li a {
		color: white;
	}
	
	#nav {
		list-style: none;
		clear: both;
        padding: 0;
		width: 100%;
		margin: 1px 0 0 4px;
		float: left;
	}

    #nav li {
        float: left;
        position: relative;
    }

    #nav li a,
    #nav li span{
        padding: 0 18px;
		line-height: 44px;
		border: 1px solid transparent;
		border-width: 1px 1px 0px;
        display: block;
        color: white;
		font-size: 16px;
        float: left;
        cursor: pointer;
    }

    #nav li a:hover,
    #nav li span:hover,
	#nav li.active a,
    #nav li.active span {
        color: #222222;
        background: url(../img/menu_hover.png) repeat-x;
		border-color: #6f6f6f;
    }
	
	#nav li a:hover {
		height: 45px;
	}
	
	body #nav li.single.first a:hover {
		border-radius: 0 0 0 5px;
	}
	
	body #nav li.single a:hover {
		height: 43px;
	}

    #nav li ul,
    #nav li div {
        display: none;
        background: #eee;
        border: 1px solid #6f6f6f;
        border-top: none;
        -webkit-border-radius: 0 0 5px 5px;
        -moz-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px;
        left: 0px;
        top: 100%;
        position: absolute;
        padding-left: 0;
        list-style: none;
		width: 200px;
    }

    #nav li div {
        width: 300px;
        padding: 10px;
    }

    #nav li:hover > ul,
    #nav li:hover > div {
        display: block;
		  z-index: 999;
    }

    #nav li ul li {
        _display: inline; /* for IE6 */
        float: none;
        border: none;
    }

    #nav li ul li a {
		font-size: 14px;
        padding: 0 20px;
		background: #eee !important;
        border-width: 0;
        float: none;
        border-bottom: 1px solid #6f6f6f;
		color: #6f6f6f;
        text-shadow: none;
        display: block;
		line-height: 34px;
    }
	
	body #nav li ul li a:hover	{
      background: #f1f1f1 !important;
		height: 34px;
		color: #960000;
    }
	 
	 /* Content */
	 .entryrow {
		 margin-bottom: 10px; 
	 }
	 
	 .entryhead {
		 height: 33px;
		 line-height: 35px;
		 background: url(../img/entry_head.png) no-repeat;
		 color: white;
		 padding: 0 20px;
		 font-weight: bold;
	 }
	 
	 .entryhead a {
		 color: white; 
	 }
	 
	 .entrybody {
		 background: url(../img/entry_body.png) repeat-y;
		 padding: 5px 20px 2px;
		 overflow: hidden;
	 }
	 
	 .entrybody a:hover {
		 color: #960000;
		 text-decoration: underline;
	 }
	 
	 .entryfoot {
		 background: url(../img/entry_foot.png) no-repeat;
		 height: 13px;
	 }
	 
	
	/* Boxen */
	.aside .entryrow.boxes {
		margin-bottom: 5px;
	}
	
	.entryrow.boxes .entryhead {
		background: url(../img/box_head.png) no-repeat;
		height: 29px;
		line-height: 28px;
		color: white;
		margin: 0;
		font-size: 12px;
		padding: 0 20px;
	}
	
	.entryrow.boxes .entrybody {
		background: url(../img/box_content.png) repeat-y;
		padding: 2px 11px;
	}
	
	.entryrow.boxes .entrybody p {
		margin: 0;	
	}
	
	.entryrow.boxes .entryfoot {
		background: url(../img/box_foot.png) no-repeat;
		height: 10px;
	}
	
	#moreboxes, .moreboxes {
		overflow: hidden;
	}
	
	.contentbox {
		width: 320px;
		overflow: hidden;
	}
	
	.contentbox.left {
		margin-left: 23px;
	}
	
	.contentbox-right {
		margin-right: 20px;
	}
	
	.contentboxhead {
		background: url(../img/contentbox_head.png) no-repeat;
		height: 27px;
		line-height: 26px;
		color: white;
		margin: 0;
		font-size: 12px;
		padding: 0 20px;
		font-weight: bold;
	}
	
	.contentboxbody {
		background: url(../img/contentbox_body.png) repeat-y;
		padding: 2px 11px;
		overflow: hidden;
	}
	
	.contentboxbody a:hover {
		text-decoration: underline;
		color: #960000;
	}
	
	.contentboxfoot {
		background: url(../img/contentbox_foot.png) no-repeat;
		height: 9px;
		margin-bottom: 10px;
	}
	
	.games {
		margin: 0;
		padding-top: 4px;
		border-bottom: 1px dashed #d9d9d9;
		overflow: hidden;
	}
	
	.games:hover {
		background: #F4F4F4;
	}
	
	.games img {
		margin: 9px 5px 0 0;
	}
	
	.gameort,
	.warbericht {
		color: #960000;
		font-size: 10px;
	}
	
	.gametime,
	.versus {
		color: #960000;
		font-weight: bold;
	}
	
	.gameteams {
		clear: both;
		margin-top: -5px;
		margin-bottom: 5px;
	}
	
	.calenderbox {
		border-radius: 8px;
		padding: 1px;
		border: 1px solid #d9d9d9;
	}
	
	.calenderhead td {
		border-bottom: 1px solid #d9d9d9;
		background: #f4f4f4;
	}
	
	.calenderbox td:hover,
	#event .e_entry:hover {
		background-color: #f4f4f4;
	}
	
	.calenderbox b {
		color: #960000;
	}
	
	#event .e_entry {
		padding: 5px 0 5px 30px;
		line-height: 14px;
		border-bottom: 1px solid #d9d9d9;
		background-image: url(../img/event.png);
		background-repeat: no-repeat;
		background-position: 2px 8px;
	}
	
	#event .e_date {
		font-weight: bold;
		color: #960000;
		display: block;
	}
	
	.avatarimage {
		width: 150px;
		padding: 1px;
		background: white;
		border: 1px solid #d9d9d9;
		min-height: 150px;
		margin: 0 auto 10px;
	}

    /* Formulare */
    fieldset {
        border-width: 0;
    }
    
    label {
        float: left;
        width: 150px;
    }
	
	#dh_profileedit label {
		line-height: 28px;
	}
	
	label img {
		margin-right: 5px;
		vertical-align: middle;
	}
	
	label span {
		display: block;
		margin-top: -10px;
	}
	
    .formrow {
        margin-bottom: 5px;
        clear: both;
    }
    
    input[type="text"],
    input[type="password"],
    select {
        width: 400px;
        padding: 5px;
        border: 1px solid #d9d9d9;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
	 
	#dh_profileedit input[type="text"],
	#dh_profileedit input[type="password"],
	#dh_profileedit textarea {
		width: 250px;
	}
	
	#dh_profileedit select {
		width: 262px;
	}

	 .slidinglogin input[type="text"],
    .slidinglogin input[type="password"] {
			width: 270px; 
	 }
	 
	 .formright {
		 float: right;
		 width: 516px;
	 }
    
    select {
        width: 412px;
    }

    textarea {
        font-family: Arial,Helvetica,sans-serif;
        font-size: 12px;
        width: 400px;
        padding: 5px;
        border: 1px solid #d9d9d9;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    input[type="submit"],
    button,
	 .button a {
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        border: 1px solid #cccccc;
        padding: 4px 10px;
    }
    
    input:focus, input:hover,
    textarea:focus, textarea:hover,
    select:focus, select:hover {
        background: #f7f8f9;
    }

    input[type="submit"]:hover, input[type="submit"]:focus,
    button:hover, button:focus,
	 .button a:hover, .button a:focus {
        background: #dfdfdf;
        background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0.40, #dfdfdf),
            color-stop(0.80, #a3a3a3)
            );
        background: -moz-linear-gradient(
            center top,
            #dfdfdf 40%,
            #a3a3a3 80%
            );
    }
	
	/* Spiele */
	ul.spieltage {
		display: inline;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	ul.spieltage li {
		display: inline;
	}
	
	.lastwarplayer {
		width: 320px;
		margin: 5px 0 10px 0;
	}
	
	.lastwarplayer .Cdark,
	.lastwartable .Cdark,
	.stats .Cdark {
		background: white;
		font-weight: bold;
	}
	
	.lastwartable {
		width: 320px;
		margin: 0 0 10px 0;
	}
	
	.lastwartable.number1,
	.lastwartable.number3 {
		float: left;
	}
	
	.lastwartable.number2,
	.lastwartable.number4 {
		float: right;
	}
	
	.statsentry {
		min-width: 35px;
		text-align: center;
	}


    /* Helferklassen */
    .hide {
        display: none;
        visibility: hidden;
    }

    .left {
        float: left;
    }

    .right {
        float: right;
    }

    .clear {
        clear: both;
    }
	 
	 .nomargin {
		 margin: 0;
	 }
	 
	 .lineheight {
		 line-height: 12px;
		 display: block; 
	 }

    .width100 {
        width: 100%
    }

    .width75 {
        width: 75%
    }

    .width50 {
        width: 50%
    }
	 
	 .green {
		 background: #C8E1B8;
	 }
	 
	 .red {
		 background: #D8B9B9;
	 }
	 
	 .yellow {
		 background: #FDFBB7;
	 }
	 
	 .greenfont {
		 color: green;
	 }
	 
	 .redfont {
		 color: red;
	 }
	 
	 .yellowfont {
		 color: yellow;
	 }
	 
	 .center {
		 text-align: center; 
	 }

} /* Ende @media - nicht löschen */

/* =======================================
   E N D E   style.css
   ======================================= */