/*------------------------------------*\
	MAIN
\*------------------------------------*/
html{
	font-family: Questrial, "Helvetica Neue", Arial, sans-serif;
	color:#000;
	background:#E8F2F9;
}
body{
	background:none;
	padding-top:50px;
}

#header {
	text-align: center;
}

#page{
	margin:0 auto;
	float:none;
	text-align:center;
}

#footer {
	text-align: center;
	margin-top: 20px;
	font-size: 0.7em;
}

dd {
	margin: 0;
}

#shortener {
	width: 600px;
	border-radius: 20px;
	box-shadow: 0 0 10px #000;
	margin: 0 auto;
	padding: 24px 0 0 0;
	background: #87B5D8;
	color: #000;
}

#shortener label {
	font-weight: bold;
}

#shortener input[type=url] {
   border: 0;
   border-radius: 5px;
   box-shadow: 0 0 10px #3593DC;
   padding: 0 5px;
   width: 500px;
}

#shortener input[type=url]:focus {
	box-shadow: 0 0 10px #1D547E;
	outline: none;
}

#shortener input[type=submit] {
	cursor: pointer;
	margin: 24px 0;
	border-radius: 10px;
	border: 0;
	padding: 5px 10px;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.29, #1D547E), color-stop(0.74, #3084C5));
    background-image: -moz-linear-gradient(center bottom,#1D547E 29%, #3084C5 74%);
    color: #fff;
    font-weight: bold;
}

#shortener input[type=submit]:hover {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.29, #226191), color-stop(0.74, #3593DC));
    background-image: -moz-linear-gradient(center bottom,#226191 29%, #3593DC 74%);
}


/*------------------------------------*\
	TYPE
\*------------------------------------*/
h1{
	font-weight:bold;
	font-size:3em;
	line-height:1;
	text-align: center;
}
a{
	color: #195D91;
}





/*------------------------------------*\
	IMAGES
\*------------------------------------*/
#logo{
	margin-bottom:1.5em;
}





/*------------------------------------*\
	NARROW
\*------------------------------------*/
/*
CSS for tablets and narrower devices
*/





@media (min-width: 721px) and (max-width: 960px){}
/*--- END NARROW ---*/





/*------------------------------------*\
	MOBILE
\*------------------------------------*/
/*
CSS for mobile devices.
Linearise it!
*/





@media (max-width: 720px){
body{
	font-size:0.75em;
}
}
/*--- END MOBILE ---*/