/******************************************\
	>>> PADDEF Admin main stylesheet <<<

	- Used colors:
		#d7d9dc = clearer grey
		#282425 = clear grey
		#1e1e1e = fade grey
		#191919 = dark grey
		#ffc50a = yellow
		#ff0000 = red

\******************************************/

/***************
 * GLOBAL RESET
 ***************/
* {
    margin: 0;
    padding: 0;
}

/***************
 * GENERIC HTML 
 ***************/

@font-face {
	font-family: Gotham Light;
	font-style: normal;
	src: url( ../fonts/gotham-light-1361523255.eot ); /*if IE */
	src: url("../fonts/gotham-light-1361523255.ttf") format("truetype"); /* non-IE */
}

@font-face {
	font-family: Gotham Bold;
	font-style: normal;
	src: url( ../fonts/gotham-bold-1361523260.eot ); /*if IE */
	src: url("../fonts/gotham-bold-1361523260.ttf") format("truetype"); /* non-IE */
}

body {
	background: #191919;
	width: 100%;
	height: 100%;
	font-family: Gotham Light;
	color: #d7d9dc;
}

aside {
	background: #282425;
	position: fixed;
	top: 0;
	left: 0;
	width: 240px;	
	height: 100%;
}

main {
	position: absolute;
	display: block;
	left: 240px;
	right: 0;
	height: 100%;
}

a:link, a:visited, a:active {
	text-decoration: none;
	color: #d7d9dc;
}

li {
	list-style-type: none;
}


/****************************
 * MAIN ELEMENTS OF THE PAGE 
 ****************************/

#user-info-block {
	margin: 10px;
	font-size: 90%;
}

#user-info-block #username,
#user-info-block #admin-name
{
	font-style: italic;
}

#title {
	color: #ffc50a;
	font-size: 24px;
	text-align: center;

	padding: 20px;

	background: #191919; /* Old browsers */
	background: -moz-linear-gradient(top, #191919 0%, #6e471a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#191919), color-stop(100%,#6e471a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #191919 0%,#6e471a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #191919 0%,#6e471a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #191919 0%,#6e471a 100%); /* IE10+ */
	background: linear-gradient(to bottom, #191919 0%,#6e471a 100%); /* W3C */

	-moz-box-shadow:    inset 0 -1px 0 0 #ffc50a;
	-webkit-box-shadow: inset 0 -1px 0 0 #ffc50a;
	box-shadow:         inset 0 -1px 0 0 #ffc50a;

	cursor: pointer;
}

#title>a:link,
#title>a:visited,
#title>a:active {
	color: #ffc50a;
}

#title #firstElementTitle {
	font-family: Gotham Bold;
	color: #ffc50a;
}

.content {
	position: relative;
	display: block;
	margin: 80px 15% 80px 15%;
	width: 900px;
}

#overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width:100%;
	height:100%;
	z-index: 1000;
	background: #111;
	opacity: 0.8;
	filter: alpha(opacity=80); /* For IE8 and earlier */
	text-align:center;
}


/*****************
 * GLOBAL ERRORS 
 *****************/

.global-error h3 {
	color: #ffc50a;
}

.global-error ul {
	padding-left: 20px;
}

.global-error ul li {
	font-size: 10pt;
}
