﻿/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ===================
 *   Content Styling
 * ===================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) Wrappers
 * 2) Main Content
 * 3) Boxes
 *    a) Header
 *    b) Content
 *    c) Action Bar
 *    d) Tabs
 */

/* ==================================================
 * 1) Wrappers
 * ================================================== */
/* Let the body fill the window */
html, body {
	height: 100%;
	min-height: 100%;
	background-color: #fafafa;
}

/* Fill the window but let some space for the footer */
#height-wrapper {
	/*height: auto !important;
	height: 100%;
	margin: 0 auto -38px;*/
	min-height: 100%;
	
}

#main {
	height: 100%;
	position: relative;
	margin-bottom: 38px;
}

.push {
	height: 38px;
}

.webkit .push {
	height: 60px;
}

.webkit .clear  + .push {
	height: 38px;
}

.center-elements {
	text-align: center;
	font-size: 0;
}

.center-elements > * {
	float: none !important;
	display: inline-block !important;
	font-size: 12px;
}

.phone-only-inline, .phone-only-block {

	display: none;
}

/* ==================================================
 * 2) Main Content
 * ================================================== */
#content {
	/*padding: 20px; */
	/*overflow: overlay;
	height: 100%;
    display: block;
	*/
	
	width: auto!important;
    min-height: 300px;
    padding: 15px 0;
    padding-left: 205px;
    margin: 0!important;
    border-radius: 0 0 3px 3px;
}

#content > h2 {
	margin-top: 0;
	/*
	padding-bottom: 6px;
	margin-bottom: 4px;
	*/
	width: 100%;
	background: url(../img/main_content/title-underline.png) repeat-x bottom;
	
}

#content > h1 {
	margin-top: 20px;
	width: 100%;
	font-size: 1.5em !important;
	background: url(../img/main_content/title-underline.png) repeat-x bottom;
}

/* ==================================================
 * 3) Boxes
 * ================================================== */

.box {
	/*
	border-radius: 2px;
	border: 1px solid #b9b9b9;
	box-shadow: 0 1px 0px rgba(0,0,0,0.11);
	*/
	margin-top: 15px;
	margin-bottom: 15px;
	
}

.box.wizard, .box.full {
	margin-top: 0px;
}

.ui-dialog-content .box {
	margin-bottom: 0px;
}

/* ==================================================
 * 3a) Boxes: Header
 * ================================================== */

.box .header {
	background: rgb(120,177,237); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(120,177,237,1) 0%, rgba(65,123,181,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(120,177,237,1)), color-stop(100%,rgba(65,123,181,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(120,177,237,1) 0%,rgba(65,123,181,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(120,177,237,1) 0%,rgba(65,123,181,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(120,177,237,1) 0%,rgba(65,123,181,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(120,177,237,1) 0%,rgba(65,123,181,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78b1ed', endColorstr='#417bb5',GradientType=0 ); /* IE6-9 */
	height: 34px;
	line-height: 34px;
	border: 1px solid #2B5177;
	border-radius: 3px 3px 0 0;
	border-bottom: none;
	box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.5);
}

.box .header.grey {
	background: url(../img/sprites/boxes/bg-header.png);
	filter: none;
	border-color: #C8C8C8;
}

.box .header.grey h3,.box .header.grey h2 {
	color: #383838;
	text-shadow: none;
}

.box.closed .header {
	border-bottom: 1px solid #2B5177;
	border-radius: 3px;
}

.box .header h3,.box .header h2 {
	float: left;
	display: inline-block;
	margin: 0;
	padding: 0;
	margin-left: 8px;
	padding-left: 10px;
	background: url(../img/sprites/boxes/divider-header.png) top left no-repeat !important;
}

.box .header.no-icon h3,.box .header.no-icon h2 {
	background: none !important;
	margin-left: 0;
}

.box .header img {
	display: inline-block;
	margin: 9px auto;
	margin-left: 8px;
	float: left;
	-moz-user-select: none;
}

.box .header span {
	background: url(../img/icons/packs/fugue/16x16/toggle.png) no-repeat;
    cursor: pointer;
    display: block;
    float: right;
    height: 16px;
    margin-right: 10px;
    margin-top: 10px;
    width: 16px;
}

.box.closed .header span {
    background: url(../img/icons/packs/fugue/16x16/toggle-expand.png) no-repeat;
}

/* ==================================================
 * 3b) Boxes: Content
 * ================================================== */

.box .content {
	padding: 0 10px;
	border: 1px solid #C8C8C8;
	border-radius: 0 0 3px 3px;
	border-top: 1px solid #2B5177;
	background: #fff;
}

.box.closed .content {
	display: none;
}

.box .content.grey {
	border-top-color: #C8C8C8;
}

.box .content:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.box .content.with-actions {
	border-radius: 0;
	border-bottom: 0;
}

.box .content.no-header {
	border-radius: 3px;
	border: 1px solid #C8C8C8;
}

.box .content.no-padding {
	padding: 0;
}

.border-radius-bottom {
	border-radius: 0 0 3px 3px;
}

/* ==================================================
 * 3c) Boxes: Actions Bar
 * ================================================== */
/* The actions bar */



.box .actions {
	border: 1px solid #c8c8c8;
	background: url(../img/sprites/boxes/bg-action.png) repeat-x #f7f7f7;
	border-radius: 0 0 3px 3px;
}

.box .actions:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.box .actions input {
	margin: 0;
}

.box .actions .left,.box .actions-left {
	float: left;
	margin: 5px;
	margin-left: 10px;
}

.box .actions .right,.box .actions-right {
	float: right;
	margin: 5px;
	margin-right: 10px;
}

/* ==================================================
 * 3d) Boxes: Tabs
 * ================================================== */
.box .header ul {
	font-size: 12px;
	height: 23px;
	padding: 0;
	margin: 7px 0;
	margin-right: 6px;
    margin-top: 6px;
	float: right;
}

.ie .header ul {
	overflow: hidden;
	border-radius: 5px;
}

.box .header ul li {
	display: inline;
	list-style: none;
}

.box .header ul li a {
	padding: 0 10px;
	margin: 0;
	border-bottom: 1px solid #C0C0C0;
	border-top: 1px solid #C0C0C0;
	/* Gradient */
	background: #fefefe; /* Old browsers */
	background: -moz-linear-gradient(top,  #fefefe 0%, #f7f7f7 80%, #ededed 96%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(80%,#f7f7f7), color-stop(96%,#ededed), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fefefe 0%,#f7f7f7 80%,#ededed 96%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fefefe 0%,#f7f7f7 80%,#ededed 96%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fefefe 0%,#f7f7f7 80%,#ededed 96%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(top,  #fefefe 0%,#f7f7f7 80%,#ededed 96%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

.box .header ul li:first-child a {
	border-radius: 5px 0 0 5px;
	border-bottom: 1px solid #C0C0C0;
    border-top: 1px solid #C0C0C0;
    border-left: 1px solid #C0C0C0;
}

.box .header ul li:last-child a {
	border-radius: 0 5px 5px 0;
	border-bottom: 1px solid #C0C0C0;
    border-top: 1px solid #C0C0C0;
    border-right: 1px solid #C0C0C0;
}

.box .header ul li.current a {
	background: rgb(46,86,129); /* Old browsers */
	background: rgb(46,86,129); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(46,86,129,1) 0%, rgba(88,130,175,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,86,129,1)), color-stop(100%,rgba(88,130,175,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(46,86,129,1) 0%,rgba(88,130,175,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(46,86,129,1) 0%,rgba(88,130,175,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(46,86,129,1) 0%,rgba(88,130,175,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(46,86,129,1) 0%,rgba(88,130,175,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e5681', endColorstr='#5882af',GradientType=0 ); /* IE6-9 */
	 -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; 
	/* The inset shadow */
	-webkit-box-shadow: inset 0px 0px 3px 0px #000;
	-moz-box-shadow: inset 0px 0px 3px 0px #000;
	box-shadow: inset 0px 0px 3px 0px #000;
}

.box .header ul li a {
	line-height: 21px;
	display: block;
	float: left;
}

.box .header ul li.current a {
	color: #FFFFFF;
}









/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ==================
 *   Header Styling
 * ==================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) Generic
 * 2) Header: Toolbar
 *    a) Small button
 * 	  b) Large button
 * 3) Header: Main
 */

/* ==================================================
 * 1) Generic
 * ================================================== */
header {
	position: relative;
}/* ==================================================
 * 2) Header: Toolbar: Generic styling
 * ================================================== */
#header_toolbar {
	height: 40px;
	/* The black toolbar gradient :) */
	background: #313131; /* Old browsers */
	background: -moz-linear-gradient(top,  #313131 0%, #101010 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#313131), color-stop(100%,#101010)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #313131 0%,#101010 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #313131 0%,#101010 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #313131 0%,#101010 100%); /* IE10+ */
	background: linear-gradient(top,  #313131 0%,#101010 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#101010',GradientType=0 ); /* IE6-9 */
}
#header_toolbar h1 {
	margin: 0 0;
}

#header_toolbar .phone {
	display: none;
}

#toolbar .left {
	float: left;
}

#toolbar .right {
	float: right;
}

/* The .grid_4 */
header > div > div > div {
	text-align: right;
	height: 40px;
}

.toolbar_small, .toolbar_large {
	display: inline-block;
	position: relative;
	margin-left: 5px;
}

/* ==================================================
 * 2a) Header: Toolbar: The small button
 * ================================================== */

.toolbar_small .toolbutton {
	cursor: pointer;
	position: relative;
	height: 25px;
	margin: 6px 0;
	/* The button styling */
	border-radius: 3px;
	border: 1px solid #000;
	/* The shadows */
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	-moz-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	background: url(../img/sprites/toolbar/bg-normal.png);
}

.toolbar_small .toolbutton:hover {
	background: url(../img/sprites/toolbar/bg-hover.png);
}

.toolbar_small .toolbutton img {
	margin: 7px 10px;
	margin-top: 5px;
	display: block;
}

.toolbar_small > .toolbutton > span {
	display: inline-block;
	height: 14px;
	width: 14px;
	background: url(../img/sprites/toolbar/bg-counter.png);
	/* Positioning */
	position: absolute;
	top: -5px;
	right: -5px;
	/* Center the text */
	text-align: center;
}

/* 
 * The toolbox
 */

.toolbox {
	text-align: left;
	position: absolute;
	width: 300px;
	left: -250px;
	top: 43px;
	z-index: 400;
	/* Styling */
	background: #ededed;
	border-radius: 3px;
	border: 1px solid #1e1e1e;
	/* Outer shadow */
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.17);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.17);
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.17);
	display: none; /* Initally hidden */
}

.toolbox h3 {
	background: url(../img/sprites/toolbar/toolbox/bg-header.png);
	height: 27px;
	margin: 0;
	padding: 0 10px;
	line-height: 27px;
	/* Inset shadow */
	-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
	-moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
	box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
}

.toolbox p {
	padding: 10px;
	margin: 0;
}

.toolbox .arrow {
	display: block;
	background: url(../img/sprites/toolbar/toolbox/arrow.png);
	width: 17px;
	height: 12px;
	position: absolute;
	right: 23px;
	top: -11px;
}

/*
 * Mails
 */
.toolbox .mail {
	padding: 0 10px;
}

.toolbox .mail li {
	list-style: none;
	display: block;
	margin-bottom: 10px;
	padding-left: 25px;
	background: url(../img/icons/packs/fugue/16x16/mail.png) left no-repeat;
}

.toolbox .mail a {
	color: #222222;
	font-size: 13px;
}

.toolbox .mail a:hover, .toolbox .mail a:active {
	color: #305883;
}

.toolbox .mail li.read, .toolbox .mail li:hover {
	background: url(../img/icons/packs/fugue/16x16/mail-open.png) left no-repeat;
}

.toolbox .mail li strong {
	margin-right: 5px;
	color: #164a7e;
}

.toolbox .mail li small {
	display: block;
	color: #58646D;
}

.toolbox .inbox {
	display: block;
	height: 30px;
	line-height: 30px;
	border-top: 1px solid #c8c8c8;
	background: url(../img/sprites/boxes/bg-action.png) repeat-x #f7f7f7;
	text-align: right;
	padding: 0 20px;
	color: #164a7e;
	border-radius: 0 0 3px 3px;
}

/* ==================================================
 * 2a) Header: Toolbar: The large button
 * ================================================== */

.toolbar_large .toolbutton {
	position: relative;
	height: 25px;
	line-height: 25px;
	margin: 6px 0;
	/* The button styling */
	border-radius: 3px;
	border: 1px solid #000;
	/* The shadows */
	-webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	-moz-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
	background: url(../img/sprites/toolbar/bg-normal.png);
}

.toolbar_large .toolbutton img {
	margin-top: 2px;
}

.toolbar_large .toolcaption:hover {
	background: url(../img/sprites/toolbar/bg-hover.png);
}

.toolbar_large .toolicon, .toolbar_large .toolcaption, .toolbar_large .toolmenu {
	float: left;
}

.toolbar_large .toolicon {
	display: inline-block;
	width: 30px;
	height: 25px;
	line-height: 20px;
	text-align: center;
	background: url(../img/sprites/toolbar/divider.png) no-repeat top right;
}

.toolbar_large .toolcaption {
	text-align: left;
	cursor: pointer;
	display: inline-block;
	height: 25px;
	padding: 0 5px 0 5px;
}

.toolbar_large .toolcaption span {
	position: relative;
}

/*
 * The menu
 */

.toolbar_large .toolcaption.active {
	background: url(../img/sprites/toolbar/bg-active.png);
	color: #000;
	text-shadow: none;
	border-radius: 0 3px 0 0;
}

.toolbar_large .dropdown {
	position: absolute;
	top: 25px;
	right: -1px;
	background: #fafafa;
	border-radius: 0 0 3px 3px;
	border: 1px solid #343434;
	border-top: none;
	text-align: left;
	padding: 0 4px;
	z-index: 400;
	display: none; /* Initally hidden */
}

.toolbar_large .dropdown ul {
	padding-left: 0;
	margin: 2px 0 5px 0;
}

.toolbar_large .dropdown li {
	list-style: none;
	height: 24px;
	border: 1px solid #fafafa;
}

.toolbar_large .dropdown a {
	font-size: 12px;
	padding-left: 5px;
}

.toolbar_large .dropdown li:hover, .toolbar_large .dropdown li:active {
	background: #000;
	border: 1px solid #232323;
	border-radius: 3px;
	background-image: url(../img/sprites/toolbar/bg-menu-hover.png);
	/* The inset shadow */
	-webkit-box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.24);
	-moz-box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.24);
	box-shadow: inset 1px 1px 1px 0px rgba(255, 255, 255, 0.24);
}

/* ==================================================
 * 3) Header: Main
 *    The blue bar :)
 * ================================================== */
#header_main {
	height: 60px;
	border-top: 1px solid #7a9cc0;
	border-bottom: 1px solid #04172b;
	padding-top: 29px;
	/* The beautiful blue gradient :) */
	background: rgb(54,111,172); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(54,111,172,1) 0%, rgba(24,75,130,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(54,111,172,1)), color-stop(100%,rgba(24,75,130,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#366fac', endColorstr='#184b82',GradientType=0 ); /* IE6-9 */
}


/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ===================
 *   Sidebar Styling
 * ===================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) Generic
 *    a) Top box
 * 	  b) Content
 *    c) Divider
 * 2) Sidebar Navigation
 *    a) Generic
 *    b) Submenu
 * 3) User Info Box
 */

/* ==================================================
 * 1) Generic
 * ================================================== */

aside {
	border-right: 1px solid #c0c0c0;
	width: 200px;
	height: 100%;
	float: left; 
	/* A very light grey gradient */
	background: rgb(250,250,250); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(250,250,250,1) 0%, rgba(235,235,235,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(250,250,250,1)), color-stop(100%,rgba(235,235,235,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* IE10+ */
	background: linear-gradient(left,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ebebeb',GradientType=1 ); /* IE6-9 */
}

aside .buttons {
	margin: 5px 0;
	overflow: hidden;
}

aside .buttons * {
	display: block;
	width: 80%;
	margin: 3px 10%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	
	text-align: center;
}

aside .progress .bar {
	margin: 10px 15px;
	font-size: 11px;
}

aside .progress .bar:last-child {
	margin-bottom: 15px;
}

aside .progress .bar strong {
	display: block;
	float: left;
}

aside .progress .bar small {
	display: block;
	float: right;
	
	font-size: 11px;
}

aside .progress .bar .ui-progressbar {
	margin-top: 5px;
}

/* The main content toolbar */
#main .toolbar {
	height: 47px;
	
	border: 1px solid #114885;
	border-bottom: 0;
	border-radius: 3px 3px 0 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
	
	margin-left: -1px;
	margin-right: -1px;
	margin-bottom: 0;
	/*
	background: url('../img/layout/content/toolbar/bg.png');
	*/
}


/* The shortcuts list */
#main .toolbar .shortcuts {
	margin: 0;
	/*margin-left: 210px;
	margin-right: 200px;*/
	padding: 0;
	float: right;
    position: absolute;
    top: 1px;
    right: 205px;
}

#main .toolbar .shortcuts > li {
	display: inline-block;
	position: relative;
}

#main .toolbar .shortcuts > li > a {
	display: inline-block;
	
	padding: 0 8px;
	
	line-height: 45px;
	
	border: 1px solid transparent;
	border-radius: 2px;
	margin: 3px;
	padding: 0 5px;
	line-height: 39px;
}

#main .toolbar .shortcuts > li > a:hover {
	border: 1px solid #0b396c;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#main .toolbar .shortcuts > li > a:hover:active, #main .toolbar .shortcuts > li.active > a {
	border: 1px solid rgba(17,16,13,0.6);
	/* background: url('../img/layout/content/toolbar/bg-shortcuts.png'); */
	box-shadow: 0 -1px 8px 4px rgba(0, 0, 0, 0.45) inset;
}

#main .toolbar .shortcuts > li a span.icon {
	display: block;
	
	height: 24px;
	width: 24px;
	
	margin: 7.5px 0;
	
	text-decoration: none;
}

#main .toolbar .shortcuts > li a span.icon:before {
	position: absolute;
	
	top: 7px;
	left: 0;
	right: 0;
	
	text-align: center;

	font-size: 24px;
	color: #f1f5fa;
	text-shadow: 0 1px 0 #000, 0 -1px 0px rgba(0,0,0,0.5);
}

/* The shortcut popup */
#main .toolbar .shortcuts > li > div {
	position: absolute;
	display: none;
	
	top: 57px;
	
	border: 1px solid #949494;
	border-radius: 3px;
	background: #cad2de;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	
	z-index: 105;
}

#main .toolbar .shortcuts > li > div, #main .toolbar .shortcuts > li > div.small {
	width: 220px;
	right: -92px;
}

#main .toolbar .shortcuts > li > div.medium {
	width: 250px;
	right: -107px;
}

#main .toolbar .shortcuts > li > div.large {
	width: 300px;
	right: -132px;
}

#main .toolbar .shortcuts > li > div:after {
	display: block;
	position: absolute;
	
	width: 28px;
	height: 13px;
	
	top: -12px;
	right: 50%;
	
	margin-right: -14px;
	
	content: ' ';
	background: url('../img/layout/content/toolbar/popup-arrow.png');
}

#main .toolbar .shortcuts > li > div h3 {
	padding: 10px 0;
	
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
	/*background: url('../img/layout/content/toolbar/popup-header.png');*/
	border-radius: 3px 3px 0 0;
	
	text-align: center;
	
	margin-top: 0px;
    margin-bottom: 0px;
}

#main .toolbar .shortcuts > li .content {
	margin: 5px;
	margin-top: 0;
	/* padding: 5px; */
	
	background: #fcfcfc;
	border: 1px solid #99a7bc;
	border-radius: 3px;
	box-shadow: inset 0 0 5px #becbdf;
}

#main .toolbar .shortcuts > li .content .full-width {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}


#main .toolbar input[type="search"], #main .toolbar input.search {
	float: right;
	position: absolute;
	top: 11px;
	right: 15px;
}

/* General Popup */
#toolbar li div.popup .button.left, #main .toolbar .shortcuts li > div .button.left {
	position: absolute;
	top: 5px;
	left: 5px;
}

#toolbar li div.popup .button.right, #main .toolbar .shortcuts li > div .button.right {
	position: absolute;
	top: 5px;
	right: 5px;
}


/* ==================================================
 * 1a) Generic: Top box
 * ================================================== */

#sidebar_top {
	background-color: #fafafa;
	padding: 2px;
}

/* ==================================================
 * 1b) Generic: Content
 * ================================================== */

#sidebar_content {
	width: 100%;
	background: url(../img/sidebar/seperator.png) top right no-repeat;
}

#sidebar_content h2 {
	margin-top: 0px;
	padding-top: 40px;
	padding-left: 10%;
}

#sidebar_content p {
    padding-left: 10%;
    padding-right: 10%;
    margin-right: 0;
}

/* ==================================================
 * 1c) Generic: Divider
 * ================================================== */

 #sidebar_content .divider {
	height: 2px;
	width: 194px;
	background: url(../img/sidebar/divider.png);
	margin: 20px auto;
 }
 
/* ==================================================
 * 2) Sidebar Navigation: Generic
 * ================================================== */

nav.phone {
	display: none;
}

@media screen and (min-width:651px){
	nav.phone[style] {
		display: none !important;
	}
}

aside nav > ul {
	/*margin: 1px auto; lmwy*/
	margin-bottom: 20px;
	background: #f6f6f6;
	border: 1px solid #cdcdcd;
	border-radius: 0px;
	width: 199px;
	/*overflow: hidden;*/
}

aside nav > ul > li > a {
	border-bottom: 1px solid #cdcdcd;
	-webkit-box-shadow: inset 1px 1px 1px 0px #ffffff;
	-moz-box-shadow: inset 1px 1px 1px 0px #ffffff;
	box-shadow: inset 1px 1px 1px 0px #ffffff; 
}

aside nav a {
	display: block;
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
    line-height: 35px;
	/*width: 100%; */
	/*text-indent: 15px;*/
	background: #f6f6f6;
}

aside nav > ul > li img {
    margin-right: 10px;
    user-select: none;
    -moz-user-select: none;
}

aside nav a.with_sub {
    position: relative;
}

a.with_sub:hover:after {
    color: #fff;
}

aside nav a.with_sub:after {
    display: block;
    position: absolute;
    right: 6px;
    top: 0;
    content: '▼';
    font-size: 10px;
    color: #8f8f8f;
}

aside nav > ul > li:last-child > a {
	/*border-bottom: none;*/
}

aside nav > ul > li > a:hover, aside nav > ul > li.current > a:hover {
	background: url(../img/sprites/sidebar-navigation/bg-hover.png);
	box-shadow: none;
}

aside nav > ul > li.current > a {
	background: url(../img/sprites/sidebar-navigation/bg-active.png);
}

/* ==================================================
 * 2a) Sidebar Navigation: Submenu
 * ================================================== */
aside nav span.arrow {
	position: relative;
	top: -1px;
	left: 10px;
}

aside nav ul.sub {
	display: none; /* Initially hidden */
}

aside nav ul.sub a {
    display: block;
    padding-left: 15px;
    height: 34px;
    line-height: 34px;
	background: #eff3f6;
}

aside nav ul.sub a {
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    /* background: #eff3f6; */
}

aside nav ul.sub a span.icon {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: -4px;
    width: 16px;
    height: 16px;
    line-height: 24px;
}

aside nav ul.sub li.with-icon .icon {
    margin-left: -9px;
}

aside nav span.badge {
	/*position: absolute;
	right: 24px;
	top: 8px;
	*/
	z-index: 102;
	cursor: pointer;
	
	border: 1px solid #214a7b;
	border-radius: 3px;
	box-shadow: none;
	padding: 2px 8px;
	
	line-height: 12.5px;
	
	background: #5c8ed1; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjOGVkMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMDVmOTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #5c8ed1 0%, #305f95 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5c8ed1), color-stop(100%,#305f95)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #5c8ed1 0%,#305f95 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #5c8ed1 0%,#305f95 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #5c8ed1 0%,#305f95 100%); /* IE10+ */
	background: linear-gradient(top,  #5c8ed1 0%,#305f95 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5c8ed1', endColorstr='#305f95',GradientType=0 ); /* IE6-8 */
}

aside nav > ul > li > ul a span.badge {
	top: 6px;
}

.wf-loading aside nav span.badge, .wf-inactive aside nav span.badge {
	top: 8px;
}

.wf-loading aside nav > ul > li > ul a span.badge, .wf-inactive aside nav > ul > li > ul a span.badge {
	top: 6px;
}

aside nav span.badge.grey {
	border-color: #959595;
	
	background: #e7e7e7; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U3ZTdlNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZWNlY2UiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #e7e7e7 0%, #cecece 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e7e7), color-stop(100%,#cecece)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e7e7e7 0%,#cecece 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e7e7e7 0%,#cecece 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e7e7e7 0%,#cecece 100%); /* IE10+ */
	background: linear-gradient(top,  #e7e7e7 0%,#cecece 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#cecece',GradientType=0 ); /* IE6-8 */
}

aside nav span.badge.red {
	border-color: #6f2828;
	
	background: #ae2b2b; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FlMmIyYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4NzIwMjAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #ae2b2b 0%, #872020 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ae2b2b), color-stop(100%,#872020)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ae2b2b 0%,#872020 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ae2b2b 0%,#872020 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ae2b2b 0%,#872020 100%); /* IE10+ */
	background: linear-gradient(top,  #ae2b2b 0%,#872020 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ae2b2b', endColorstr='#872020',GradientType=0 ); /* IE6-8 */
}

aside nav span.badge.green {
	border-color: #285024;
	
	background: #2f8635; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJmODYzNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTViMWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #2f8635 0%, #215b1b 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2f8635), color-stop(100%,#215b1b)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #2f8635 0%,#215b1b 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #2f8635 0%,#215b1b 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #2f8635 0%,#215b1b 100%); /* IE10+ */
	background: linear-gradient(top,  #2f8635 0%,#215b1b 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f8635', endColorstr='#215b1b',GradientType=0 ); /* IE6-8 */
}

/*
aside nav ul.sub a {
	text-indent: 35px;
}


aside nav ul.sub a {
	text-shadow: none;
	/*
	background: url(../img/sprites/sidebar-navigation/submenu/arrow-normal.png) no-repeat #f6f6f6;
	background-position: 20px 10.5px;
	
}

aside nav ul.sub a:hover {
	background: url(../img/sprites/sidebar-navigation/submenu/arrow-hover.png) no-repeat #f6f6f6;
	background-position: 20px 10.5px;
}

aside nav ul.sub a.current {
	background: url(../img/sprites/sidebar-navigation/submenu/arrow-active.png) no-repeat #f6f6f6;
	background-position: 20px 10.5px;
}

lmwy
	*/

/* ==================================================
 * 3) User Info Box
 * ================================================== */

.userinfo {
	padding: 0 5px;
}

.userinfo .info {
	float: left;
	padding: 5px;
	background: url(../img/sprites/userinfo/bg-info.png) repeat-x #e5e5e5;
	border: 1px solid #c0c0c0;
	border-radius: 3px;
	/*
	 * Inset shadow
	 */
	-webkit-box-shadow: inset 1px 1px 1px 0px #fff;
	-moz-box-shadow: inset 1px 1px 1px 0px #fff;
	box-shadow: inset 1px 1px 1px 0px #fff;
}

.userinfo .info-wrap {
	border-radius: 3px;
	overflow: hidden;
	margin-top: 5px;
}

.userinfo .avatar {
	border: 1px solid #aaaaaa;
}

.userinfo .info a {
	display: block;
	margin-top: 5px;
	padding: 5px;
	background: url(../img/sprites/userinfo/bg-button.png) repeat-x #e2e2e2;
	border: 1px solid #b5b5b5;
	border-radius: 3px;
	text-align: center;
	/*
	 * Inset shadow
	 */
	-webkit-box-shadow: inset 1px 1px 1px 0px #fff;
	-moz-box-shadow: inset 1px 1px 1px 0px #fff;
	box-shadow: inset 1px 1px 1px 0px #fff;
}

.userinfo .info-wrap a {
	margin-top: 0;
}

.userinfo .info a:hover {
	background: url(../img/sprites/userinfo/bg-button-active.png) repeat-x #f7f7f7;
}

.userinfo .links {
	/* Prevent collapsing margins */
	border-top: 1px solid rgba(0,0,0,0);
	margin-top: 9px;
	list-style: none;
	margin-left: 100px;
	padding-left: 0px;
}

.userinfo .links li {
	overflow: hidden;
	margin: 10px 0;
	padding: 0 0 10px 10px;
	background: url(../img/sprites/userinfo/links-divider.png) no-repeat bottom left;
}






/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ======================
 *   Navigation Styling
 * ======================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) Main Navigaion
 *    a) Buttons
 * 2) Sub Navigaion
 */

/* ==================================================
 * 1) Main Navigatoin
 * ================================================== */
#nav_main {
	position: relative;
}

#nav_main li {
	display: inline-block;
	margin-right: 2px;
}
/* ==================================================
 * 1a) Main Navigation: Buttons
 * ================================================== */
#nav_main > li > a, #nav_main > li > a:visited, #nav_main > li > a:focus {
	display: table-cell;
	/* #header_main height + 1, to move it 1px into the header_main strip */
	height: 61px;
	width: 120px;
	background: url(../img/navigation/main/bg-normal.png) no-repeat;
	/* Concerning fonts/text */
	line-height: 26px;
	/* Concerning text align */
	text-align: center;
	vertical-align: bottom;
}
#nav_main > li > a img, #nav_main > li > a:visited img, #nav_main > li > a:focus img {
	display: block;
    margin: 0 auto;
	opacity:0.58;
	filter:alpha(opacity=58); /* For IE8 and earlier */
}
#nav_main > li > a:hover {
	background: url(../img/navigation/main/bg-hover.png) no-repeat;
}
#nav_main > li.current > a {
	background: url(../img/navigation/main/bg-active.png) no-repeat;
}
#nav_main > li > a:hover img, #nav_main > li.current > a img {
	opacity:1;
	
}


#nav_main li ul {
	width: 100%;
	position: absolute;
	line-height: 38px;
	left: 0;
	display: none; /* Initially hidden */
}

#nav_main > li.current ul {
	display: block;
}

.ie7 #nav_main li ul {
	top: 45px;
}

#nav_main li ul li {
	display: inline-block;
	padding: 0 30px;
	background: url(../img/navigation/sub/seperator.png) no-repeat right;
	float: left;
}

.ie7 #nav_main li ul li {
	zoom: 1
	display: inline;
}

#nav_main li ul li:first-child {
	padding-left: 5px;
}

#nav_main li ul li:last-child, #nav_main ul li.last-child {
	background: none;
}

/* ==================================================
 * 2) Sub Navigation
 * ================================================== */
#nav_sub {
	height: 37px;
	border-bottom: 1px solid #b2b2b2;
	/* The sub-navigation gradient */
	background: #e8e8e8; /* Old browsers */
	background: -moz-linear-gradient(top,  #e8e8e8 0%, #d4d4d4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e8e8e8), color-stop(100%,#d4d4d4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e8e8e8 0%,#d4d4d4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e8e8e8 0%,#d4d4d4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e8e8e8 0%,#d4d4d4 100%); /* IE10+ */
	background: linear-gradient(top,  #e8e8e8 0%,#d4d4d4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8e8', endColorstr='#d4d4d4',GradientType=0 ); /* IE6-9 */
}

#nav_sub ul.user {
	/*width: 100%;*/
	position: absolute;
	/*line-height: 38px;*/
	left: 0;
	display: none; /* Initially hidden */
}

#nav_sub ul.user {
	display: block;
}

.ie7 #nav_sub ul.user {
	top: 45px;
}

#nav_sub ul.user li {
	display: inline-block;
	padding: 0 30px;
	background: url(../img/navigation/sub/seperator.png) no-repeat right;
	float: left;
}

.ie7 #nav_sub ul.user li {
	zoom: 1
	display: inline;
}

#nav_sub ul.user li:first-child {
	padding-left: 5px;
}

#nav_sub ul.user li:last-child {
	background: none;
}






/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ================
 *   Special Page
 * ================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) General Styling
 * 2) Top Background
 * 3) Content
 * 4) Title
 * 5) Box
 * 6) Error
 */

/* ==================================================
 * 1) General Styling
 * ================================================== */

.special_page {
	background-color: #fafafa;
}

/* ==================================================
 * 2) Top Background
 * ================================================== */

.special_page > .top {
	height: 359px;
	width: 100%;
	position: absolute;
	/* The blue background gradient */
	background: #608dbe; /* Old browsers */
	background: rgb(54,111,172); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(54,111,172,1) 0%, rgba(24,75,130,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(54,111,172,1)), color-stop(100%,rgba(24,75,130,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(54,111,172,1) 0%,rgba(24,75,130,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#366fac', endColorstr='#184b82',GradientType=0 ); /* IE6-9 */
	/* Other colorfull stuff */
	border-bottom: 1px solid #0d3259;
	box-shadow: 0 2px 5px rgba(17, 16, 13, 0.5);
}

.special_page > .top .gradient {
	position: absolute;
	width: 100%;
	top: 360px;
	height: 270px;
	/* The light grey gradient */
	background: #e3e3e3; /* Old browsers */
	background: -moz-linear-gradient(top,  #e3e3e3 0%, #fafafa 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e3e3e3), color-stop(100%,#fafafa)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #e3e3e3 0%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e3e3e3 0%,#fafafa 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e3e3e3 0%,#fafafa 100%); /* IE10+ */
	background: linear-gradient(top,  #e3e3e3 0%,#fafafa 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e3e3', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
}

.special_page > .top .white {
	position: absolute;
	height: 1px;
	width: 787px;
	top:358px;
	margin: 0 auto;
	left: 0px; right: 0px;
	background: url(../img/special-page/white-line.png);
	z-index: 99;
}

.special_page > .top .shadow {
	z-index: 80;
	background: url(../img/special-page/white-line-shadow.png);
	height: 25px;
	width: 460px;
	position: absolute;
	top: 360px;
	margin: 0 auto;
	left: 0px; right: 0px;
	z-index: 99;
	
}

/* ==================================================
 * 3) Content
 * ================================================== */

.special_page > .content .background {
	z-index: 99;
	position: absolute;
	top: 0;
	left: 0; right: 0;
	margin: 0 auto;
	width: 790px;
	height: 167px;
	background: url(../img/special-page/header.png);
	
}

/* ==================================================
 * 4) Title
 * ================================================== */

.special_page h1 {
	position: absolute;
	top: 60px;
	left: 0; right: 0;
	margin: 0;
	z-index: 101;
}

.special_page h1 {
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	text-shadow: 0 0 5px rgba(10, 50, 92, 0.75);
}

/* ==================================================
 * 5) Box
 * ================================================== */

.special_page .wrapper {
	position: absolute;
	width: 400px;
	top: 250px;
	left: 0; right: 0;
	margin: 0 auto;
	z-index: 101;
}

.special_page .box {
	z-index: 110;
	margin: 0 auto;
	position: relative;
}

.special_page .wrapper .shadow {
	width: 372px;
	height: 18px;
	bottom: -10px;
	margin: 0 auto;
	margin-top: -7px;
	background: url(../img/special-page/box-shadow.png);
	z-index: 99;
	
}

/* ==================================================
 * 6) Error
 * ================================================== */

.error_nr h1 {
	margin-top: 50px;
	color: #FFFFFF;
    font-size: 200px;
    text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #C9C9C9, 0 3px 0 #BBBBBB, 0 4px 0 #B9B9B9, 0 5px 0 #AAAAAA, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

.error_text {
	position: absolute;
	top: 380px;
	width: 100%;
	text-align: center;
}

.error_text a.button {
	display: inline-block;
}





/*
 * Peach - Clean & Smooth Admin Template
 * by Stammi <http://themeforest.net/user/Stammi>
 * 
 * ==================
 *   Footer Styling
 * ==================
 * 
 * -----------------
 * TABLE OF CONTENTS
 * -----------------
 * 
 * 1) Generic Buttons
 * 2) Header: Toolbar
 *    a) Small button
 * 	  b) Large button
 * 3) Header: Main
 */

/* ==================================================
 * 1) Generic
 * ================================================== */

footer {
	width: 100%;
	height: 37px;
	line-height: 36px;
	float: left;
	position: relative;
	z-index: 101;
	
	border-bottom: 1px solid #353535;
	/* The black gradient */
	background: #353535; /* Old browsers */
	background: -moz-linear-gradient(top,  #353535 0%, #101010 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#353535), color-stop(100%,#101010)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #353535 0%,#101010 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #353535 0%,#101010 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #353535 0%,#101010 100%); /* IE10+ */
	background: linear-gradient(top,  #353535 0%,#101010 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#353535', endColorstr='#101010',GradientType=0 ); /* IE6-9 */
}

/* ==================================================
 * 1a) Generic: Button Bar
 * ================================================== */

footer #button_bar {
	display: inline;
	float: right;
	/* The seperator on the very right */
	padding-right: 2px;
	background: url(../img/footer/button_bar-seperator.png) right no-repeat;
}

footer #button_bar li, footer #button_bar ul {
	display: table-cell;
	padding: 0;
}

footer #button_bar a {
	display: inline-block;
	height: 100%;
	padding: 0 15px;
	margin: 0; 
}

footer #button_bar a:active, footer #button_bar a:hover {
	/* The inverse black gradient */
	background: #101010; /* Old browsers */
	background: -moz-linear-gradient(top,  #101010 0%, #353535 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#101010), color-stop(100%,#353535)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #101010 0%,#353535 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #101010 0%,#353535 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #101010 0%,#353535 100%); /* IE10+ */
	background: linear-gradient(top,  #101010 0%,#353535 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#101010', endColorstr='#353535',GradientType=0 ); /* IE6-9 */
}

footer #button_bar span {
	display: inline-block;
	height: 100%;
	/* The seperator */
	padding-left: 2px;
	background: url(../img/footer/button_bar-seperator.png) left no-repeat;
}



/*
 * FullCalendar v1.5.2 Stylesheet
 *
 * Copyright (c) 2011 Adam Shaw
 * Dual licensed under the MIT and GPL licenses, located in
 * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
 *
 * Date: Sun Aug 21 22:06:09 2011 -0700
 *
 */
@media screen {


.fc {
	direction: ltr;
	text-align: left;
	}
	
.fc table {
	border-collapse: collapse;
	border-spacing: 0;
	}
	
html .fc,
.fc table {
	font-size: 1em;
	}
	
.fc td,
.fc th {
	padding: 0;
	vertical-align: top;
	}



/* Header
------------------------------------------------------------------------*/

.fc-header td {
	white-space: nowrap;
	}

.fc-header-left {
	width: 25%;
	text-align: left;
	}
	
.fc-header-center {
	text-align: center;
	}
	
.fc-header-right {
	width: 25%;
	text-align: right;
	}
	
.fc-header-title {
	display: inline-block;
	vertical-align: top;
	}
	
.fc-header-title h2 {
	margin-top: 0;
	white-space: nowrap;
	}
	
.fc .fc-header-space {
	padding-left: 10px;
	}
	
.fc-header .fc-button {
	margin-bottom: 1em;
	vertical-align: top;
	}
	
/* buttons edges butting together */

.fc-header .fc-button {
	margin-right: -1px;
	}
	
.fc-header .fc-corner-right {
	margin-right: 1px; /* back to normal */
	}
	
.fc-header .ui-corner-right {
	margin-right: 0; /* back to normal */
	}
	
/* button layering (for border precedence) */
	
.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
	z-index: 2;
	}
	
.fc-header .fc-state-down {
	z-index: 3;
	}

.fc-header .fc-state-active,
.fc-header .ui-state-active {
	z-index: 4;
	}
	
	
	
/* Content
------------------------------------------------------------------------*/
	
.fc-content {
	clear: both;
	}
	
.fc-view {
	width: 100%; /* needed for view switching (when view is absolute) */
	overflow: hidden;
	}
	
	

/* Cell Styles
------------------------------------------------------------------------*/

.fc-widget-header,    /* <th>, usually */
.fc-widget-content {  /* <td>, usually */
	border: 1px solid #ccc;
	}
	
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
	background: #ffc;
	}
	
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
	background: #9cf;
	opacity: .2;
	filter: alpha(opacity=20); /* for IE */
	}
	


/* Buttons
------------------------------------------------------------------------*/

.fc-button {
	position: relative;
	display: inline-block;
	cursor: pointer;
	}
	
.fc-state-default { /* non-theme */
	border-style: solid;
	border-width: 1px 0;
	}
	
.fc-button-inner {
	position: relative;
	float: left;
	overflow: hidden;
	}
	
.fc-state-default .fc-button-inner { /* non-theme */
	border-style: solid;
	border-width: 0 1px;
	}
	
.fc-button-content {
	position: relative;
	float: left;
	height: 1.9em;
	line-height: 1.9em;
	padding: 0 .6em;
	white-space: nowrap;
	}
	
/* icon (for jquery ui) */
	
.fc-button-content .fc-icon-wrap {
	position: relative;
	float: left;
	top: 50%;
	}
	
.fc-button-content .ui-icon {
	position: relative;
	float: left;
	margin-top: -50%;
	*margin-top: 0;
	*top: -50%;
	}
	
/* gloss effect */
	
.fc-state-default .fc-button-effect {
	position: absolute;
	top: 50%;
	left: 0;
	}
	
.fc-state-default .fc-button-effect span {
	position: absolute;
	top: -100px;
	left: 0;
	width: 500px;
	height: 100px;
	border-width: 100px 0 0 1px;
	border-style: solid;
	border-color: #fff;
	background: #444;
	opacity: .09;
	filter: alpha(opacity=9);
	}
	
/* button states (determines colors)  */
	
.fc-state-default,
.fc-state-default .fc-button-inner {
	border-style: solid;
	border-color: #ccc #bbb #aaa;
	background: #F3F3F3;
	color: #000;
	}
	
.fc-state-hover,
.fc-state-hover .fc-button-inner {
	border-color: #999;
	}
	
.fc-state-down,
.fc-state-down .fc-button-inner {
	border-color: #555;
	background: #777;
	}
	
.fc-state-active,
.fc-state-active .fc-button-inner {
	border-color: #555;
	background: #777;
	color: #fff;
	}
	
.fc-state-disabled,
.fc-state-disabled .fc-button-inner {
	color: #999;
	border-color: #ddd;
	}
	
.fc-state-disabled {
	cursor: default;
	}
	
.fc-state-disabled .fc-button-effect {
	display: none;
	}
	
	

/* Global Event Styles
------------------------------------------------------------------------*/
	 
.fc-event {
	border-style: solid;
	border-width: 0;
	font-size: .85em;
	cursor: default;
	}
	
a.fc-event,
.fc-event-draggable {
	cursor: pointer;
	}
	
a.fc-event {
	text-decoration: none;
	}
	
.fc-rtl .fc-event {
	text-align: right;
	}
	
.fc-event-skin {
	border-color: #36c;     /* default BORDER color */
	background-color: #36c; /* default BACKGROUND color */
	color: #fff;            /* default TEXT color */
	}
	
.fc-event-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-style: solid;
	border-width: 0;
	overflow: hidden;
	}
	
.fc-event-time,
.fc-event-title {
	padding: 0 1px;
	}
	
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
	display: block;
	position: absolute;
	z-index: 99999;
	overflow: hidden; /* hacky spaces (IE6/7) */
	font-size: 300%;  /* */
	line-height: 50%; /* */
	}
	
	
	
/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
	border-width: 1px 0;
	margin-bottom: 1px;
	}
	
/* resizable */
	
.fc-event-hori .ui-resizable-e {
	top: 0           !important; /* importants override pre jquery ui 1.7 styles */
	right: -3px      !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: e-resize;
	}
	
.fc-event-hori .ui-resizable-w {
	top: 0           !important;
	left: -3px       !important;
	width: 7px       !important;
	height: 100%     !important;
	cursor: w-resize;
	}
	
.fc-event-hori .ui-resizable-handle {
	_padding-bottom: 14px; /* IE6 had 0 height */
	}
	
	
	
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
	
.fc-corner-left {
	margin-left: 1px;
	}
	
.fc-corner-left .fc-button-inner,
.fc-corner-left .fc-event-inner {
	margin-left: -1px;
	}
	
.fc-corner-right {
	margin-right: 1px;
	}
	
.fc-corner-right .fc-button-inner,
.fc-corner-right .fc-event-inner {
	margin-right: -1px;
	}
	
.fc-corner-top {
	margin-top: 1px;
	}
	
.fc-corner-top .fc-event-inner {
	margin-top: -1px;
	}
	
.fc-corner-bottom {
	margin-bottom: 1px;
	}
	
.fc-corner-bottom .fc-event-inner {
	margin-bottom: -1px;
	}
	
	
	
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS
-----------------------------------------------------------------*/
	
.fc-corner-left .fc-event-inner {
	border-left-width: 1px;
	}
	
.fc-corner-right .fc-event-inner {
	border-right-width: 1px;
	}
	
.fc-corner-top .fc-event-inner {
	border-top-width: 1px;
	}
	
.fc-corner-bottom .fc-event-inner {
	border-bottom-width: 1px;
	}
	
	
	
/* Reusable Separate-border Table
------------------------------------------------------------*/

table.fc-border-separate {
	border-collapse: separate;
	}
	
.fc-border-separate th,
.fc-border-separate td {
	border-width: 1px 0 0 1px;
	}
	
.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
	border-right-width: 1px;
	}
	
.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
	border-bottom-width: 1px;
	}
	
.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
	border-top-width: 0;
	}
	
	

/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid th {
	text-align: center;
	}
	
.fc-grid .fc-day-number {
	float: right;
	padding: 0 2px;
	}
	
.fc-grid .fc-other-month .fc-day-number {
	opacity: 0.3;
	filter: alpha(opacity=30); /* for IE */
	/* opacity with small font can sometimes look too faded
	   might want to set the 'color' property instead
	   making day-numbers bold also fixes the problem */
	}
	
.fc-grid .fc-day-content {
	clear: both;
	padding: 2px 2px 1px; /* distance between events and day edges */
	}
	
/* event styles */
	
.fc-grid .fc-event-time {
	font-weight: bold;
	}
	
/* right-to-left */
	
.fc-rtl .fc-grid .fc-day-number {
	float: left;
	}
	
.fc-rtl .fc-grid .fc-event-time {
	float: right;
	}
	
	

/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/

.fc-agenda table {
	border-collapse: separate;
	}
	
.fc-agenda-days th {
	text-align: center;
	}
	
.fc-agenda .fc-agenda-axis {
	width: 50px;
	padding: 0 4px;
	vertical-align: middle;
	text-align: right;
	white-space: nowrap;
	font-weight: normal;
	}
	
.fc-agenda .fc-day-content {
	padding: 2px 2px 1px;
	}
	
/* make axis border take precedence */
	
.fc-agenda-days .fc-agenda-axis {
	border-right-width: 1px;
	}
	
.fc-agenda-days .fc-col0 {
	border-left-width: 0;
	}
	
/* all-day area */
	
.fc-agenda-allday th {
	border-width: 0 1px;
	}
	
.fc-agenda-allday .fc-day-content {
	min-height: 34px; /* TODO: doesnt work well in quirksmode */
	_height: 34px;
	}
	
/* divider (between all-day and slots) */
	
.fc-agenda-divider-inner {
	height: 2px;
	overflow: hidden;
	}
	
.fc-widget-header .fc-agenda-divider-inner {
	background: #eee;
	}
	
/* slot rows */
	
.fc-agenda-slots th {
	border-width: 1px 1px 0;
	}
	
.fc-agenda-slots td {
	border-width: 1px 0 0;
	background: none;
	}
	
.fc-agenda-slots td div {
	height: 20px;
	}
	
.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
	border-top-width: 0;
	}

.fc-agenda-slots tr.fc-minor th,
.fc-agenda-slots tr.fc-minor td {
	border-top-style: dotted;
	}
	
.fc-agenda-slots tr.fc-minor th.ui-widget-header {
	*border-top-style: solid; /* doesn't work with background in IE6/7 */
	}
	


/* Vertical Events
------------------------------------------------------------------------*/

.fc-event-vert {
	border-width: 0 1px;
	}
	
.fc-event-vert .fc-event-head,
.fc-event-vert .fc-event-content {
	position: relative;
	z-index: 2;
	width: 100%;
	overflow: hidden;
	}
	
.fc-event-vert .fc-event-time {
	white-space: nowrap;
	font-size: 10px;
	}
	
.fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .3;
	filter: alpha(opacity=30);
	}
	
.fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
.fc-select-helper .fc-event-bg {
	display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
	}
	
/* resizable */
	
.fc-event-vert .ui-resizable-s {
	bottom: 0        !important; /* importants override pre jquery ui 1.7 styles */
	width: 100%      !important;
	height: 8px      !important;
	overflow: hidden !important;
	line-height: 8px !important;
	font-size: 11px  !important;
	font-family: monospace;
	text-align: center;
	cursor: s-resize;
	}
	
.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
	_overflow: hidden;
	}
	
}

@media print {
/*
 * FullCalendar v1.5.2 Print Stylesheet
 *
 * Include this stylesheet on your page to get a more printer-friendly calendar.
 * When including this stylesheet, use the media='print' attribute of the <link> tag.
 * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.
 *
 * Copyright (c) 2011 Adam Shaw
 * Dual licensed under the MIT and GPL licenses, located in
 * MIT-LICENSE.txt and GPL-LICENSE.txt respectively.
 *
 * Date: Sun Aug 21 22:06:09 2011 -0700
 *
 */
 
 
 /* Events
-----------------------------------------------------*/
 
.fc-event-skin {
	background: none !important;
	color: #000 !important;
	}
	
/* horizontal events */
	
.fc-event-hori {
	border-width: 0 0 1px 0 !important;
	border-bottom-style: dotted !important;
	border-bottom-color: #000 !important;
	padding: 1px 0 0 0 !important;
	}
	
.fc-event-hori .fc-event-inner {
	border-width: 0 !important;
	padding: 0 1px !important;
	}
	
/* vertical events */
	
.fc-event-vert {
	border-width: 0 0 0 1px !important;
	border-left-style: dotted !important;
	border-left-color: #000 !important;
	padding: 0 1px 0 0 !important;
	}
	
.fc-event-vert .fc-event-inner {
	border-width: 0 !important;
	padding: 1px 0 !important;
	}
	
.fc-event-bg {
	display: none !important;
	}
	
.fc-event .ui-resizable-handle {
	display: none !important;
	}
}

