/* Global */
body {
    background-color: #e1e1e1;
    background-image: url("/image/darts_bg.jpg");
    background-size: cover;
    font-family: arial;
    margin: 0;
}

body div#bg {
    background-image: url("/image/g_50.png");
    border-radius: 10px;
    box-shadow: 5px 5px 10px #454545;
	float: left;
    margin: 15px;
    padding: 10px;
}

/* Spielfläche */
div#dart table.playboard {
    background-color: #ffffff;
    border: 1px solid #565656;
    border-radius: 5px;
    float: left;
    margin: 20px;
    padding: 10px;
}

div#dart table.playboard.active {
    box-shadow: 2px 2px 3px #565656;
}

div#dart table.playboard td{
	vertical-align: top;
}

div#dart table.playboard td h3 {
    margin-bottom: 5px;
}

div#dart table.playboard td.counter {
    font-size: 25px;
}

form.scoringForm {
    background-color: #ddebf9;
    border: 1px solid #aabccf;
    border-radius: 5px;
    display: none;
    margin-bottom: 0;
    padding: 5px;
}

form.frm_player {
    background-color: #ffffff;
    border: 1px solid #565656;
    border-radius: 5px;
    float: left;
    line-height: 35px;
    margin: 20px;
    padding: 10px;
	width: 300px;
}

form.frm_player table{
	width: 100%;
}

form.frm_player input[type="text"]{
	width: 100%;
}

form.frm_player input[type="submit"] {
    height: 30px;
    margin-top: 15px;
    width: 100%;
}

/* Button */
input[type="submit"], input[type="button"] {
    border: 1px solid #aabccf;
    border-radius: 2px;
    padding: 2px 10px;
	cursor: pointer;
	height: 30px;
    width: 100%;
}

input[type="submit"]:HOVER, input[type="button"]:HOVER{
    background-color: #E7F2FC;
}

/* Menu */
div.menu{
	clear: both;
}

/* shaddow */
div.shaddow{
    background: none repeat scroll 0 0 rgba(128, 128, 128, 0.6);
    bottom: 0;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 1000;
}

/* error */
#shaddow div#error {
    background-color: #ffffff;
    border: 2px solid #ff0000;
    border-radius: 5px;
    margin: 100px auto auto;
    opacity: 1;
    padding: 5px;
    width: 250px;
}

#shaddow div#error input {
    margin-bottom: 15px;
    margin-left: 15px;
    margin-top: 15px;
}

/* Impressum */
div.impressum, div.impressum a{
	font-size: 12px;
	color: #aabccf;
	margin-top: 10px;
}