@charset "UTF-8";
/* CSS Document for Main Site of djlute.com */
html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
	font-family: 'Zilla Slab', sans-serif;
	font-size: 14px;
	color: #555;
	min-height: 100%;
	background-color: #DADADA;
}

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

a, a:visited, a:active, a:hover {
    text-decoration: none;
    outline: none;    
}

h1 {
    background-color: #000;
    color: #fff;
    padding: 10px;
    margin: 0px 0px 30px 0px;
    text-align: center;
}

h2 {
    color: #000;
    margin: 0px 0px 20px 0px;
    padding: 0px;
}

#welcome {
	font-size: 14px;
    color: #000;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#container {
    width: 900px;
    margin: 0 auto;
}

#webpage {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	list-style-type: none;
}

#webpage li {
	float: left;
	width: 50%;
	padding: 10px;
	text-align: center;
	border-right: 1px solid #bbb;
	border-left: 1px solid #fff;	
}

#webpage li:nth-child(1) {
	border-left: none;
}

#webpage li:nth-child(2) {
	width: 45%;
	border-right: none;
}

button {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    background: #3b5998;
    background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b71c1),color-stop(100%,#3b5998));
    background-image: -webkit-linear-gradient(#4b71c1,#3b5998);
    background-image: -moz-linear-gradient(#4b71c1,#3b5998);
    background-image: -o-linear-gradient(#4b71c1,#3b5998);
    background-image: -ms-linear-gradient(#4b71c1,#3b5998);
    background-image: linear-gradient(#4b71c1,#3b5998);
    color: #DADADA;
    -moz-box-shadow: inset 0 1px 0 0 #5b8aeb;
    -webkit-box-shadow: inset 0 1px 0 0 #5b8aeb;
    -o-box-shadow: inset 0 1px 0 0 #5b8aeb;
    box-shadow: inset 0 1px 0 0 #5b8aeb;
    text-shadow: #3b5998 0 1px 0;
    -moz-background-clip: border;
    -webkit-background-clip: border;
    -o-background-clip: border-box;
    -ms-background-clip: border-box;
    -khtml-background-clip: border-box;
    background-clip: border-box;
    border: 1px solid #1A1A1A;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 6px;
    font-size: 24px;
    line-height: 48px;
    padding: 0 20px;
    -moz-transition: "color","0.3s";
    -webkit-transition: "color","0.3s";
    -o-transition: "color","0.3s";
    transition: "color","0.3s";
    cursor: pointer;
    margin: 0px;
    opacity: 0.99;
}

button:hover {
    opacity: 0.9;
}


