
/* @group Globals */

*{
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Lucida Grande', Helvetica, Arial;
}



html, body{
	
}


a{
	color: rgb(109,179,242);
	text-decoration: none;
}

a:hover{
	/*text-decoration: underline;*/
}

h1{
	color: #666;
	border-bottom: 1px solid #F0F0F0;
	margin: 40px 0px 20px;
	font-weight: normal;
	font-size: 24px
}

h2{
	color: #004E9D;
	margin: 32px 0px 10px;
	font-weight: normal;
	font-size: 18px;
}


h3{
	color: #333;
	font-weight: normal;
	font-size: 16px;
	padding: 10px 0px;
}

hr{
    border-top: 1px solid #CCC;
    margin: 20px 0;
}

.txtr{
	text-align: right;
}
.txtc{
	text-align: center;
}


.error,
.success{
	font-size: 12px;
	padding: 2px 0;
	margin: 2px auto;
	border-radius: 3px;
}
.error{
	color: #C00;
	background-color: rgba(204, 0, 0, 0.1);
	
}
.success{
	color: #009604;
	background-color: rgba(0, 150, 4, 0.1);
}

span.error,
span.success{
	display: inline-block;
	border-radius: 5px;
	padding: 2px 6px;
}


/* @end */

/* @group Layout */

#wrapper{
	width: 980px;
	margin: auto;
}



header{
	border-radius: 0 0 10px 10px;
	padding: 0 10px 0 180px;
	position: relative;
    height: 40px;
	
	background: rgb(109,179,242); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(109,179,242,1) 0%, rgba(84,163,238,1) 50%, rgba(54,144,240,1) 51%, rgba(30,105,222,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(109,179,242,1)), color-stop(50%,rgba(84,163,238,1)), color-stop(51%,rgba(54,144,240,1)), color-stop(100%,rgba(30,105,222,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(109,179,242,1) 0%,rgba(84,163,238,1) 50%,rgba(54,144,240,1) 51%,rgba(30,105,222,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(109,179,242,1) 0%,rgba(84,163,238,1) 50%,rgba(54,144,240,1) 51%,rgba(30,105,222,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(109,179,242,1) 0%,rgba(84,163,238,1) 50%,rgba(54,144,240,1) 51%,rgba(30,105,222,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(109,179,242,1) 0%,rgba(84,163,238,1) 50%,rgba(54,144,240,1) 51%,rgba(30,105,222,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6db3f2', endColorstr='#1e69de',GradientType=0 ); /* IE6-9 */
}

header ul{
	display: inline-block;
}

header ul li{
	list-style-type: none;
	/*display: inline-block;*/
	float: left;
}

header a{
	display: inline-block;
	color:  #FFF;
	text-decoration: none;
	padding: 10px;
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(0,0,0,0.1);
	font-size: 14px;
}

header a:hover,
header a.active{
	background: rgb(59,103,158); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(59,103,158,1) 0%, rgba(43,136,217,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,103,158,1)), color-stop(50%,rgba(43,136,217,1)), color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b679e', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}

a#logout{
	float: right;
}

#logo{
	position: absolute;
	width: 148px;
	height: 38px;
	top:  0px;
	left:  10px;;
	background-image: url(../images/logo.png);
}

aside{
    float: left;
    width: 160px;
    padding: 20px 10px 0;
    margin: 20px 0;
}

aside h3{
    font-size: 12px;
    font-weight: normal;
    color: #999;
    padding-bottom: 0;
}

aside ul li{
    display: block;
    padding: 4px 0 4px 8px;
    list-style-type: none;
}
aside ul li a{
    display: inline-block;
    font-size: 14px;
    color: #333;
}

aside ul li a:hover{
    padding-left: 10px;
}
aside ul li a.active,
aside ul li a.active:hover{
    padding-left: 5px;
    font-weight: bold;
}

#main{
    float: right;
    width: 750px;
}

div.spacedPart{
	margin: 20px 0;
}

div.messages{
	width: 90%;
	margin: 10px auto;
}

/* @end */

/* @group Subnavigation */

ul.subnav{
	margin-bottom: 20px;
}

ul.subnav li{
	display: inline-block;
	margin: 4px;
	list-style-type: none;
}

ul.subnav li a{
	display: inline-block;
	background-color: #F9F9F9;
	border: 1px solid #E3E3E3;
	padding: 2px 8px;
	color: #666;
	font-weight: bold;
	border-radius: 3px;;
}

ul.subnav li a:hover,
ul.subnav li a.active{
	color: #10B7F4;
	border-color: #10B7F4;
}

/* @end */

/* @group Tables */

table.dataTable{
	width: 100%;
	border: 1px solid #EEE;
}

table.dataTable th,
table.dataTable td{
	padding: 4px 6px;
	border-right: 1px solid #eee;
	overflow: hidden;
    vertical-align: top;
}

table.dataTable th:last-child,
table.dataTable td:last-child{
	border-right: 0;
}

table.dataTable th{
	font-weight: normal;
	color: #666;
	font-size: 12px;
	
	text-shadow: 0 1px 0 #FFF;

	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
	
}

table.dataTable td{
	font-size: 12px;
	vertical-align: top;
}

table.dataTable td a.button{
	font-size: 11px;
	color: #666;
	text-shadow: 0 1px 0 #FFF;
	padding: 2px 6px;
}

table.dataTable tr.even{
	background-color: #fffffe;
}

table.dataTable tr.odd{
	background-color: #f2f6fa;
}

/* @end */




/* @group Forms */

fieldset{
	padding: 20px;
	margin: 60px auto;
	border: 1px solid #EEE;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #999;
}

fieldset.midform{
	width: 380px;
}

fieldset.largeform{
	width: 90%;
}

fieldset.midform div.error{
	text-align: center;
	margin: 20px 0;
}

label{
	display: inline-block;
	width: 120px;
	text-align: right;
	padding: 8px 20px;
	color: #333;
	font-size: 14px;
    background-color: #F8F8F8;
    margin: 1px;
    margin-right: 10px;
}

label.checkbox{
    text-align: left;
    width: 220px;
    padding-left: 4px;
    background-color: #f0f9fb;
    border-radius: 5px;
    margin: 2px;
}

fieldset.longLables label{
    width: 420px;
}

.button,
input,
textarea{
	border-radius: 5px;
	border: 1px solid #BBB;
	font-size: 14px;
	padding: 4px 10px;
}

textarea.mce{
    width: 450px;
    height: 220px;
}

input.date, input.beatpicker-input-to {
	width:80px;
}

#wrapper .button,
#wrapper input[type="button"],
#wrapper input[type="submit"]{
	padding: 4px 18px;
	cursor: pointer;
	
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(243,243,243,1)), color-stop(51%,rgba(237,237,237,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	
}
#wrapper .button:hover,
#wrapper input[type="button"]:hover,
#wrapper input[type="submit"]:hover{
	text-decoration: none;
	color:  #000;
	background: rgb(246,248,249); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(246,248,249,1) 0%, rgba(229,235,238,1) 50%, rgba(215,222,227,1) 51%, rgba(245,247,249,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(246,248,249,1)), color-stop(50%,rgba(229,235,238,1)), color-stop(51%,rgba(215,222,227,1)), color-stop(100%,rgba(245,247,249,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
	
}

#wrapper .button.small {
	padding: 4px 5px;
}

.nowrap {white-space:nowrap}

div.options{
	margin: 20px 0px;
	padding: 10px;
	border: 1px solid #BBB;
	background-color: #F9F9F9;
}
div.options div.head{
	color: #333;
	font-size: 14px;
}

div.options label{
	margin-left: -10px;
}

.desc{
	font-size: 12px;
	color: #666;
}

div.greyline{
    border-color: #DDD;
    border-style: solid;
    border-width: 0 0 1px 0;
    padding-top: 20px;
    margin-bottom: 20px;
}

/* @end */

/* @group Pager */

.pager{
	
}

.pager li {
	list-style-type: none;
	float: left;
}
.pager span, 
.pager a{
	float: left;
	font-size: 12px;
	display: inline-block;
	padding: 4px 6px;
	border-radius: 3px;
	background-color: #F2F2F4;
	margin: 0 2px;
	font-weight: bold;
}

.pager a,
.pager span.spacer{
	color: #333;
}

.pager a:hover,
.pager span{
	color: rgb(109,179,242);;
}


.labelrow{
    font-size: 12px;
}

/* Fabian */

img.templatePreview {float:right;height:75px;margin-right:46px}
img.templatePreview + img.templatePreview { clear: right;margin-top: 50px;}

.clearfix:after{content:"\0020";display:block;height:0;visibility:hidden;}
.clearfix:after{clear:both}
.clearfix{zoom:1}

.float_right {float:right;}
/* @end */



