/*
	font-family: 'Open Sans', sans-serif;
	font-family: 'Montserrat', sans-serif;
*/

html, body {
	min-height: 100%;
}

body {
	color: #333333;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	margin: 0;
	padding: 0;
}

a {
	color: #1477cc;
	text-decoration: none;
}

a:hover {
	color: #333333;
	text-decoration: underline;
}

a img {	border: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
}

h1 {
	color: #4c4c4c;
	font-size: 26px;
}

h2 {
	font-size: 20px;
	margin: 0 0 20px 0;
}

h3 {
	color: #8c8c8c;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.25px;
	text-transform: uppercase;
	margin: 0 0 8px 0;
}

h4 {

}

h5 {

}

h6 {

}

p {

}

strong {
	font-weight: 700;
}

.wrapper {
	max-width: 1200px;
}

.hr {
	border-bottom: 1px solid #cccccc;
	margin: 15px 0;
}

.hr hr { display: none; }


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
	background: #262626;
	background: -moz-linear-gradient(top,  #262626 0%, #121212 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#262626), color-stop(100%,#121212));
	background: -webkit-linear-gradient(top,  #262626 0%,#121212 100%);
	background: -o-linear-gradient(top,  #262626 0%,#121212 100%);
	background: -ms-linear-gradient(top,  #262626 0%,#121212 100%);
	background: linear-gradient(to bottom,  #262626 0%,#121212 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#262626', endColorstr='#121212',GradientType=0 );
	border-left: 1px solid #282828;
	height: 58px;
	left: 178px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 12;
}

.header .logo {
	background: #282828;
	background: -moz-linear-gradient(top,  #282828 0%, #1a1a1a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#282828), color-stop(100%,#1a1a1a));
	background: -webkit-linear-gradient(top,  #282828 0%,#1a1a1a 100%);
	background: -o-linear-gradient(top,  #282828 0%,#1a1a1a 100%);
	background: -ms-linear-gradient(top,  #282828 0%,#1a1a1a 100%);
	background: linear-gradient(to bottom,  #282828 0%,#1a1a1a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#1a1a1a',GradientType=0 );
	border-bottom: 1px solid #080808;
	border-right: 1px solid #080808;
	display: block;
	left: -180px;
	position: absolute;
	transition: background .10s linear;
	-webkit-transition: background .10s linear;
	-moz-transition: background .10s linear;
	-o-transition: background .10s linear;
	width: 220px;
}

.header .logo .wrap {
	border-right: 1px solid #282828;
	display: block;
	height: 47px;
	padding-top: 10px;
}

.header .logo img {
	display: block;
	margin: 0 auto;
}

.header .logo:hover .wrap {
	background: rgba(255,255,255,0.04);
}

.header .wrapper {
	padding-left: 72px;
	max-width: 1200px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header Search Form ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header-search-form {
	background: rgba(0,0,0,0.85);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 14px;
	float: left;
	margin: 12px 0 0 0;
	padding: 0 5px;
	position: relative;
	transition: all .20s linear;
	-webkit-transition: all .20s linear;
	-moz-transition: all .20s linear;
	-o-transition: all .20s linear;
}

.header-search-form.focused,
.header-search-form:focus,
.header-search-form.results-displayed {
	border: 1px solid rgba(255,255,255,0.20);
	box-shadow: 0 0 10px rgba(255,255,255,0.1);
	-moz-box-shadow: 0 0 10px rgba(255,255,255,0.1);
	-webkit-box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.header-search-form.results-displayed {
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
}

.header-search-form .icon {
	vertical-align: middle;
	width: 20px;
}

.header-search-form input {
	background: none;
	border: 0;
	color: #808080;
	height: 28px;
	width: 320px;
	padding: 0 5px 0 0;
	transition: all .20s linear;
	-webkit-transition: all .20s linear;
	-moz-transition: all .20s linear;
	-o-transition: all .20s linearr;
}

.header-search-form input:focus {
    border: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
	color: #ffffff;
}

.header-search-results {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.20);
	border-top: 0;
	position: absolute;
	right: -1px;
	left: 11px;
}

.header-search-results a {
	border-bottom: 1px solid rgba(0,0,0,0.9);
	border-top: 1px solid rgba(255,255,255,0.06);
	color: #7a7a7a;
	display: block;
	padding: 5px 10px 5px 30px;
	position: relative;
	transition: all .10s linear;
	-webkit-transition: all .10s linear;
	-moz-transition: all .10s linear;
	-o-transition: all .10s linearr;
}

.header-search-results a:focus,
.header-search-results a.focused,
.header-search-results a:hover {
	background: rgba(0,0,0,0.4);
	color: #4ea5f0;
	text-decoration: none;
}

.header-search-results a .icon {
	left: 10px;
	position: absolute;
	top: 6px;
}

.header-search-results a strong {
	color: #ffffff;
}


.header-search-loader {
	display: none;
	font-size: 10px;
	text-indent: -9999em;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #ffffff;
	background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	opacity: .4;
	position: absolute;
	right: 8px;
	top: 7px;
	-webkit-animation: header-search-load .7s infinite linear;
	animation: header-search-load .7s infinite linear;
}

.header-search-loader:before {
	width: 50%;
	height: 50%;
	background: #FFF;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}

.header-search-loader:after {
	background: #000000;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

@-webkit-keyframes header-search-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes header-search-load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header Accounts Dropdown ---------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.account-dropdowns {
	float: right;
}

.account-dropdowns ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.account-dropdowns > ul {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #060606;
	height: 58px;
}

.account-dropdowns > ul > li {
	border-left: 1px solid #060606;
	float: left;
	position: relative;
}

.account-dropdowns > ul > li > a {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #1f1f1f;
	color: #ffffff;
	display: block;
	height: 58px;
	line-height: 58px;
	padding: 0 17px;
	text-decoration: none;
	transition: background .10s linear, color .10s linear;
	-webkit-transition: background .10s linear, color .10s linear;
	-moz-transition: background .10s linear, color .10s linear;
	-o-transition: background .10s linear, color .10s linear;
}

.account-dropdowns > ul > li > a .image {
	vertical-align: middle;
	margin-right: 8px;
}

.account-dropdowns > ul > li > a .wrap {
	display: inline-block;
	margin-left: 5px;
}

.account-dropdowns > ul > li > a .wrap .icon.oi[data-glyph]:before {
	border: 1px solid #ffffff;
	border-radius: 50%;
	display: inline-block;
	font-size: 7px;
	height: 14px;
	line-height: 12px;
	transition: border .10s linear;
	-webkit-transition: border .10s linear;
	-moz-transition: border .10s linear;
	-o-transition: border .10s linearr;
	vertical-align: middle;
	width: 14px;
}

.account-dropdowns > ul > li:hover > a {
	background: rgba(0,0,0,0.4);
	color: #4ea5f0;
}

.account-dropdowns > ul > li:hover > a .wrap .icon.oi[data-glyph]:before {
	border-color: #4ea5f0;
}

.account-dropdowns > ul > li > ul {
	background: #141414;
	display: none;
	min-width: 100%;
	position: absolute;
	right: 0;
	white-space: nowrap;
}

.account-dropdowns > ul > li:hover > ul {
}

.account-dropdowns > ul > li > ul > li {
	border-bottom: 1px solid rgba(0,0,0,0.9);
	border-top: 1px solid rgba(255,255,255,0.06);
}

.account-dropdowns > ul > li > ul > li.first {
	padding: 5px 10px;
	font-style: italic;
	font-size: 12px;
}

.account-dropdowns > ul > li > ul > li > a {
	color: #7a7a7a;
	display: block;
	padding: 5px 10px;
	transition: all .10s linear;
	-webkit-transition: all .10s linear;
	-moz-transition: all .10s linear;
	-o-transition: all .10s linearr;
}

.account-dropdowns > ul > li > ul > li.selected > a,
.account-dropdowns > ul > li > ul > li > a:hover {
	background: rgba(0,0,0,0.4);
	color: #4ea5f0;
	text-decoration: none;
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap,
.primary-nav-stick {
	background: #141414 url(/images/template/left-side-background.png) 0 0 repeat-x;
	bottom: 0;
	left: 0;
	padding-top: 58px;
	position: fixed;
	top: 0;
	width: 220px;
	z-index: 2;
}

.primary-nav-stick {
	z-index: 1;
}

.primary-navigation-wrap.non-fixed {
	position: absolute;
}

.primary-navigation-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation-wrap a {

}

.primary-navigation-wrap > ul {
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.primary-navigation-wrap > ul > li {
	border-bottom: 1px solid rgba(0,0,0,0.9);
	border-top: 1px solid rgba(255,255,255,0.06);
	position: relative;
}

.primary-navigation-wrap > ul > li > a {
	color: #7a7a7a;
	display: block;
	height: 33px;
	line-height: 33px;
	padding: 0 22px;
	transition: background .10s linear, color .10s linear, font-weight .10s linear;
	-webkit-transition: background .10s linear, color .10s linear, font-weight .10s linear;
	-moz-transition: background .10s linear, color .10s linear, font-weight .10s linear;
	-o-transition: background .10s linear, color .10s linear, font-weight .10s linear;
}

.primary-navigation-wrap > ul > li > a .icon {
	margin-right: 14px;
	font-size: 15px;
	vertical-align: middle;
}

.primary-navigation-wrap > ul > li:hover > a,
.primary-navigation-wrap > ul > li.active > a {
	background: rgba(0,0,0,0.4);
	border-left: 3px solid #4ea5f0;
	color: #4ea5f0;
	padding-left: 19px;
	text-decoration: none;
}

.primary-navigation-wrap > ul > li.active > a:after {
	background: #ffffff;
	content: ' ';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	right: -6px;
	top: 11px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.primary-navigation-wrap > ul > li.active > a {
	font-weight: 600;
}

.primary-navigation-wrap > ul > li > ul {
	border-top: 1px solid rgba(0,0,0,0.9);
	display: none;
	padding: 3px 0 6px 0;
}

.primary-navigation-wrap > ul > li.active > ul {
	display: block;
}

.primary-navigation-wrap > ul > li > ul > li {

}

.primary-navigation-wrap > ul > li > ul > li > a {
	color: #7a7a7a;
	display: block;
	padding: 4px 10px 4px 53px;
	font-size: 14px;
}

.primary-navigation-wrap > ul > li > ul > li > a:hover,
.primary-navigation-wrap > ul > li > ul > li > a.secondaryactive {
	color: #4ea5f0;
	text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Main Content Area/Heading Area ---------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.main-content {
	background: #ffffff;
	min-height: 100%;
	margin: 58px 0 0 220px;
}

.main-content .wrapper {
	max-width: 1400px;
	padding: 36px 72px 100px 32px;
}

.main-content .wrapper.has-filters {
	padding-top: 19px;
}

.main-content h1 {
	margin-bottom: -4px;
	float: left;
}

.main-content h1 .icon {
	vertical-align: middle;
	margin-left: -40px;
	font-size: 30px;
}

.main-content .button-wrap {
	float: right;
}

.main-content .button-wrap .button {
	margin-left: 8px;
}

.heading-area {
	padding: 36px 72px 0 0;
	max-width: 1432px;
}

.heading-area h1,
.heading-area .sub-header {
	padding-left: 72px;
}

.sub-header {
	clear: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
}

td {
	hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Third Level Navigation ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.third-level-hr {
	border-bottom: 1px solid #c4c4c4;
	margin: 35px 0 0 0;
}

.third-level-navigation-wrap {
	background-color: #f2f2f2;
	background-image: -moz-linear-gradient(top, #fafafa, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #fafafa, #e6e6e6);
	background-image: -o-linear-gradient(top, #fafafa, #e6e6e6);
	background-image: linear-gradient(to bottom, #fafafa, #e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#e6e6e6', GradientType=0);
	margin: 25px 0 0 0;
	overflow: hidden;
}

.third-level-navigation-wrap .inner {
	border-bottom: 1px solid #c4c4c4;
	border-top: 1px solid #c4c4c4;
	padding-left: 35px;
}

.third-level-navigation {
	list-style: none;
	margin: 0;
	padding: 0;
}

.third-level-navigation > li {
	float: left;
}

.third-level-navigation > li > a {
	border-right: 1px solid rgba(0,0,0,0.07);
	color: #858585;
	display: block;
	font-size: 14px;
	height: 34px;
	line-height: 34px;
	padding: 0 15px;
	position: relative;
	transition: all .10s linear;
	-moz-transition: all .10s linear;
	-webkit-transition: all .10s linear;
	-o-transition: all .10s linear;
	z-index: 2;
}

.third-level-navigation > li > a .icon {
	margin-right: 7px;
	font-size: 14px;
	vertical-align: middle;
}

.third-level-navigation > li > a:hover,
.third-level-navigation > li > a.secondaryactive {
	background: rgba(0,0,0,0.03);
	color: #4ea5f0;
	text-decoration: none;
}

.third-level-navigation > li > a.secondaryactive:after {
	background: #ffffff;
	border: 1px solid #c4c4c4;
	bottom: -8px;
	content: ' ';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	left: 50%;
	margin-left: -6px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 3;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Display Table --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.display-table {
	background: #eaebec;
	border: #cccccc 1px solid;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px #d1d1d1;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;	
	text-shadow: 1px 1px 0px #ffffff;
	width: 100%;
}

.display-table th {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
	border-bottom: 1px solid #e0e0e0;
	border-top: 1px solid #fafafa;
	padding: 10px;
	text-align: left;
}

.display-table th.tar {
	text-align: right;
}

.display-table th:first-child {
}

.display-table th.current {
	background: rgba(0,0,0,0.1);
}

.display-table th.current a:after {
	background: url(/images/icons/small-black-arrow-down.png) 0 0 no-repeat;
	content: ' ';
	display: inline-block;
	height: 5px;
	margin-left: 8px;
	opacity: .7;
	vertical-align: middle;
	width: 9px;
}

.display-table th.current.desc a:after {
	background-image: url(/images/icons/small-black-arrow-up.png);
}

.display-table tr:first-child th:first-child {
	border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
}

.display-table tr:first-child th:last-child {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}

.display-table tr {
}

.display-table td:first-child {
	border-left: 0;
}

.display-table td {
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #ffffff;
	padding: 10px;
}

.display-table tr:nth-child(2n+2) td {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}

.display-table tr:last-child td {
	border-bottom: 0;
}

.display-table tr:last-child td:first-child {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}

.display-table tr:last-child td:last-child {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}

.display-table tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}

.display-table tr.totals-row td,
.display-table tr.totals-row th,
.view-table tr.totals td,
.view-table tr.totals th {
	border-top: 3px double #cccccc;
}

.display-table tr.inactive td,
.display-table tr.inactive td a {
	color: #a4a4a4;
}

.display-table tr.expiring-soon td,
.display-table tr.expiring-soon td a {
	color: orange;
	font-weight: bold;
}

.display-table tr.expiring-very-soon td,
.display-table tr.expiring-very-soon td a {
	color: red;
	font-weight: bold;
}

.display-table tr.expiring-soon .button.table-action,
.display-table tr.expiring-very-soon .button.table-action {
	font-weight: normal;
}

.display-table .dragHandle img {
	cursor: move;
}

.display-table .dragClass {
	background: #d9ecff;
}

.display-table .dragClass td {
	background: #d9ecff;
	border-bottom: 1px solid #000000;
	border-top: 1px solid #000000;
	opacity: .5;
}

.display-table .table-seperator td {
	border-top: 1px solid #333;
}

.display-table tr.highlight-red td {
	background: rgba(255,0,0,0.005);
}

.display-table tr.highlight-red td:first-child {
	border-left: 3px solid red;
	padding-left: 7px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* View Table ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.view-table {
	background: #eaebec;
	border: #cccccc 1px solid;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px #d1d1d1;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;	
	text-shadow: 1px 1px 0px #ffffff;
	width: 100%;
}

.view-table tr:first-child th {
	border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
}

.view-table tr:first-child td {
	-moz-border-radius-topright:3px;
	-webkit-border-top-right-radius:3px;
	border-top-right-radius:3px;
}

.view-table th {
	border-left: 0;
	color: #808080;
	font-size: 13px;
	font-weight: normal;
	padding-right: 10px;
	text-align: left;
	text-transform: uppercase;
	width: 140px;
}

.view-table td,
.view-table th {
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
	border-bottom:1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	border-top: 1px solid #ffffff;
	padding: 6px;
}

.view-table tr:nth-child(2n+2) td,
.view-table tr:nth-child(2n+2) th {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
}

.view-table tr:last-child td,
.view-table tr:last-child th {
	border-bottom: 0;
}

.view-table tr:last-child th {
	-moz-border-radius-bottomleft:3px;
	-webkit-border-bottom-left-radius:3px;
	border-bottom-left-radius:3px;
}

.view-table tr:last-child td {
	-moz-border-radius-bottomright:3px;
	-webkit-border-bottom-right-radius:3px;
	border-bottom-right-radius:3px;
}

.view-table tr:hover td,
.view-table tr:hover th {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);	
}

.view-table tr.totals-row td,
.view-table tr.totals-row th {
	border-top: 3px double #cccccc;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Estimate Table -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#estimate-table td {
    background: #ffffff;
    border: 0;
}

#estimate-table tr:hover td,
#estimate-table td:hover {
    background: #ffffff;
}

#estimate-table tr.dragClass td {
}

#estimate-table .sub-items {
	padding: 0;
}

#estimate-table .sub-sort {
	border-top: 1px solid #cccccc;
}

#estimate-form input, 
#estimate-form textarea {
    background: none repeat scroll 0 0 #ffffff;
    border: 1px solid #ffffff;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

#estimate-form input.title-field {
    font-weight: bold;
}

#estimate-form .section-heading,
#estimate-form .title-field {
    width: 100%;
}

#estimate-form textarea.title-field {
    color: #333333;
    height: 32px;
    min-height: 32px;
}

#estimate-form textarea {
    border-top: 1px solid #cccccc;
    font-size: 10px;
    resize: none;
}

#estimate-form .section-heading {
    font-size: 120%;
    font-weight: bold;
}

#estimate-form input:hover, 
#estimate-form input:focus, 
#estimate-form textarea:hover, 
#estimate-form textarea:focus {
    border: 1px solid #cccccc;
}

#estimate-table .totals td {
    border-top: 3px double #cccccc;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Images ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	height: 60px;
	overflow: hidden;
	position: relative;
	width: 60px;
}

.image.cover img {
	display: none;
}

td .image {
	margin-left: 2px;
	margin-right: 2px;
}

.image img {
	opacity: 0;
	filter: alpha(opacity=0);
	display: block;
	width: 100%;
}

.image.round {
	border: 1px solid #ffffff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 0 1px 1px rgba(0,0,0,0.65);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.65);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.65);
}

.image.small {
	height: 36px;
	width: 36px;
}

.image.medium {
	height: 50px;
	width: 50px;
}

.image.big {
	height: 150px;
	width: 150px;
}

.image.round.small {
	border: 1px solid #ffffff;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button,
.submit,
.pager {
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #bbbbbb;
	border-bottom-color: #a2a2a2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	color: #333333;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	line-height: 15px;
	margin-bottom: 0;
	padding: 11px 15px;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	vertical-align: middle;
}

.button .icon,
.submit .icon {
	font-size: 15px;
	margin: 0 6px 0 0;
	vertical-align: middle;
}

.button .icon.right,
.submit .icon.right {
	margin: 0 0 0 5px;
}

.button:hover,
.button:active,
.button.active,
.button.disabled,
.button[disabled],
.submit:hover,
.submit:active,
.submit.active,
.submit.disabled,
.submit[disabled],
.pager:hover,
.pager:active,
.pager.active,
.pager.disabled,
.pager[disabled],
.pager.on {
	color: #333333;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
.button:active,
.button.active,
.pager:active,
.pager.active,
.pager.on {
	background-color: #cccccc \9;
}
.button:first-child {
	*margin-left: 0;
}
.button:hover,
.submit:hover,
.pager:hover,
.pager.on {
	color: #333333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}
.button:focus,
.submit:focus {
}

.button.blue {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #006dcc;
	background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
	background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
	background-image: -o-linear-gradient(top, #0088cc, #0044cc);
	background-image: linear-gradient(to bottom, #0088cc, #0044cc);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
	border-color: #0044cc #0044cc #002a80;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	*background-color: #0044cc;
	/* Darken IE7 buttons by default so they stand out more given they won't have borders */

	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.button.blue:hover,
.button.blue:active,
.button.blue.active,
.button.blue.disabled,
.button.blue[disabled] {
	color: #ffffff;
	background-color: #0044cc;
	*background-color: #003bb3;
}
.button.blue:active,
.button.blue.active {
	background-color: #003399 \9;
}

.button.big {
	font-size: 18px;
}

.button.black {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	*background-color: #222222;
	/* Darken IE7 buttons by default so they stand out more given they won't have borders */

	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.button.black:hover,
.button.black:active,
.button.black.active,
.button.black.disabled,
.button.black[disabled] {
	color: #ffffff;
	background-color: #222222;
	*background-color: #151515;
}
.button.black:active,
.button.black.active {
	background-color: #080808 \9;
}


.right-arrow-down {
	background: url(/images/icons/black-arrow-down.png) 100% 50% no-repeat;
	display: inline-block;
	padding-right: 15px;
}

.right-arrow-down-white {
	background: url(/images/icons/white-arrow-down.png) 100% 50% no-repeat;
	display: inline-block;
	padding-right: 15px;
}

.submit.small,
.button.small,
.pager {
	padding: 5px 10px;
}

.button.table-action {
	background: none;
	border: 0;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	color: #1477cc;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	display: block;
	font-size: 14px;
	margin: 2px 0;
	padding: 3px 3px 3px 23px;
	position: relative;
	text-align: left;
	text-shadow: none;
	transition: color .15s linear;
	-moz-transition: color .15s linear;
	-webkit-transition: color .15s linear;
	-o-transition: color .15s linear;
}

.button.table-action.dib {
	display: inline-block;
	margin: 0;
}

.display-table .button.table-action {
	color: #afafaf;
}

.display-table tr:hover .button.table-action {
	color: #1477cc;
}	

.button.table-action:hover,
.display-table tr:hover .button.table-action:hover {
	background: #1477cc;
	color: #ffffff;
}

.jqueryFileTree .button.table-action.delete,
.display-table tr:hover .button.table-action.delete {
	color: #cf3434;
}

.button.table-action.delete:hover,
.display-table tr:hover .button.table-action.delete:hover {
	background: #cf3434;
	color: #ffffff;
}

.button.table-action .icon {
	font-size: 11px;
	position: absolute;
	left: 5px; 
	top: 4px;
}

.jqueryFileTree LI {
	background-position: 2px 5px !important;
}

.jqueryFileTree LI:hover {
	background-color: rgba(0,0,0,0.05) !important;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Filters --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.filters-wrap {
	margin: 0 0 10px -72px;
	border-bottom: 1px solid #c4c4c4;
	padding: 0 0 10px 72px;
}

.filters-wrap h3 {
	display: none;
}

.filters-wrap form {
	margin: 0;
	padding: 0;
	position: relative;
}

.filters-wrap form .filter {
	float: left;
	margin: 0 8px 8px 0;
}

.filters-wrap form .filter#main-filter input {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 200px;
	transition: all .25s linear;
	-moz-transition: all .25s linear;
	-webkit-transition: all .25s linear;
	-o-transition: all .25s linear;
	padding: 5px;
}

.filters-wrap.engaged form .filter#main-filter input,
.filters-wrap form .filter#main-filter input:focus {
 	box-shadow: 0 0 4px rgba(82, 168, 236, 0.5);
 	-moz-box-shadow: 0 0 4px rgba(82, 168, 236, 0.5);
 	-webkit-box-shadow: 0 0 4px rgba(82, 168, 236, 0.5);
 	width: 300px;
 	position: relative;
 	z-index: 11;
}

.filters-wrap form .filter.show-more-filters-link-wrap {

}

.filters-wrap form .show-more-filters-link-wrap .button,
.filters-wrap form .persistent-submit {
	padding: 6px 10px;
	font-size: 13px;
}

.filters-wrap.engaged form .show-more-filters-link-wrap {
	display: none;
}

.filters-wrap form .secondary-filters {
	background: #f5f5f5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	display: none;
	left: -15px;
	position: absolute;
	top: -15px;
	padding: 60px 15px 15px 15px;
	width: 50%;
	z-index: 10;
}

.filters-wrap form .secondary-filters .filter {
	margin: 0 8px 8px 0;
}

.filters-wrap form .filter label {
	color: #808080;
	display: block;
	font-size: 10px;
	margin: 0 0 4px 0;
	text-transform: uppercase;
}

.filters-wrap form .filter input,
.filters-wrap form .filter select {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 7px;
}

.filters-wrap form .filter input.date,
.filters-wrap form .filter input.datepicker { 
	padding-right: 28px;
}

.filters-wrap form .filter select {
	max-width: 190px;
}

.filters-wrap form .filter .chosen-container {
	max-width: 190px;
}

.chosen-container {
	font-size: 15px;
	min-width: 140px;
}

#close-filters-link {
	background: url(/images/icons/small-x-close.png) 0 0 no-repeat;
	height: 10px;
	opacity: .4;
	filter: alpha(opacity=40);
	position: absolute;
	top: 15px;
	right: 20px;
	width: 10px;
}

#close-filters-link:hover {
	opacity: .8;
	filter: alpha(opacity=80);
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Detail Page ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.detail-page {

}

.detail-page .sub-heading {
	color: #808080;
	font-style: italic;
	font-weight: bold;
	margin: -18px 0 30px 0;
}

.detail-page .col,
.split-layout .col {
	float: left;
	width: 48%;
}

.detail-page .col.narrow,
.split-layout .col.narrow {
	width: 32%;
}

.detail-page .col.narrow.middle {
	margin-left: 2%;
}

.detail-page .col.wide,
.split-layout  .col.wide {
	width: 64%;
}

.detail-page .col.last,
.split-layout .col.last {
	float: right;
}

.detail-page.work-item .col {

}

.content-box {
	background: #f5f5f5;
	border-radius: 8px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.25);
	padding: 20px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Graph Table ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.graph-table {

}

.graph-table td {
    font-size: 11px;
    text-align: center;
}

.graph-table tr.bar td {
	background: rgba(0,0,0,0.05);
}

.graph-item {
	background: #91cf7c;
	background: -moz-linear-gradient(top,  #91cf7c 0%, #54af46 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#91cf7c), color-stop(100%,#54af46));
	background: -webkit-linear-gradient(top,  #91cf7c 0%,#54af46 100%);
	background: -o-linear-gradient(top,  #91cf7c 0%,#54af46 100%);
	background: -ms-linear-gradient(top,  #91cf7c 0%,#54af46 100%);
	background: linear-gradient(to bottom,  #91cf7c 0%,#54af46 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#91cf7c', endColorstr='#54af46',GradientType=0 );
    width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Work Item Detail ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.detail-page.work-item .complete-wrap {
	color: #40b549;
	float: right;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	margin-top: -2px;
	text-transform: uppercase;
}

.detail-page.work-item .complete-wrap .icon {
	vertical-align: middle;
}

.summary-grid,
.detail-page.work-item .work-item-summary {
	background: #fafafa;
	border: 1px solid #dedede;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	margin: 0 0 35px 0;
}

.summary-grid {
	display: flex;
}

.summary-grid-item,
.detail-page.work-item .work-item-summary .col {
	border-right: 1px solid #dedede;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #808080;
	float: left;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	line-height: 11px;
	padding: 14px 0;
	text-align: center;
	text-transform: uppercase;
	width: 24.5%;
}

.summary-grid-item {
	flex: 1;
	float: none;
	width: auto;
}

.detail-page.work-item .work-item-summary .col .icon {
	color: #cccccc;
	vertical-align: middle;
	margin: 0 3px 0 0;
}

.detail-page.work-item .work-item-summary.five .col {
	width: 19.5%;
}

.detail-page.work-item .work-item-summary.three .col {
	width: 33%;
}

.detail-page.work-item .work-item-summary .col.first {
	width: 26.5%;
}

.detail-page.work-item .work-item-summary.five .col.first {
	width: 22%;
}

.detail-page.work-item .work-item-summary.three .col.first {
	width: 34%;
}

.detail-page.work-item .work-item-summary .col.last {
	border-right: 0;
	float: right;
}

.detail-page.work-item .work-item-summary .col big {
	color: #2c2c2c;
	display: block;
	font-size: 25px;
	font-weight: 700;
	line-height: 25px;
	margin: 0 0 8px 0;
}

.summary-grid-item .label {
	display: block;
	min-height: 0;
	padding: 0;
}

.summary-grid-item .value {
	color: #2c2c2c;
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin: 11px 0 0;
	
}

.detail-page.work-item .invoice-description {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 35px;
	padding-bottom: 35px;
}

.timebill-part {
	background: #f5f5f5;
	border-radius: 8px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.25);
	margin-bottom: 20px;
	position: relative;
}

.timebill-part .status {
	color: #808080;
	height: 28px;
	line-height: 28px;
	padding-right: 8px;
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	text-align: right;
	text-transform: uppercase;
}

.timebill-part .stripe {
	background: #dcdcdc;
	color: #333333;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	height: 37px;
	line-height: 37px;
	position: relative;
}

.timebill-part .stripe .image {
	float: left;
	margin: -15px 12px 0 12px;
}

.timebill-part .stripe .image img {

}

.timebill-part .stripe .name {
	float: left;
}

.timebill-part .stripe .info {
	float: right;
}

.timebill-part .stripe .info .icon {
	vertical-align: middle;
	font-size: 18px;
}

.timebill-part .stripe .info .icon.small {
	font-size: 70%;
	margin-right: 3px;
	vertical-align: middle;
}

.timebill-part .stripe .info .date {
	float: left;
	margin-right: 25px;
}

.timebill-part .stripe .info .duration {
	float: left;
	margin-right: 25px;
}

.timebill-part .bottom {
	padding: 14px 20px;
	position: relative;
}

.timebill-part .bottom .description {
	color: #000000;
	font-size: 13px;
	padding-right: 130px;
	line-height: 18px;
}

.timebill-part .bottom .description .message {
	bottom: 0;
	display: none;
	color: #40b549;
	font-weight: 700;
	font-size: 10px;
	position: absolute;
}

.timebill-part .bottom .description textarea {
	font-size: 13px;
	min-height: 70px;
	resize: vertical;
	width: 100%;
}

.timebill-part .bottom .chart-wrap {
	position: absolute;
	right: 30px;
	height: 90px;
	margin-top: -45px;
	top: 50%;
}

.timebill-part .bottom .chart-wrap .percentage {
	bottom: 0;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	left: 0;
	line-height: 90px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
}

.timebill-part .bottom .chart-wrap canvas {

}

.display-table .dib {
	display: inline-block;
	vertical-align: middle;
}

.display-table .chart-wrap {
	position: relative;
	height: 50px;
	width: 50px;
}

.display-table .chart-wrap .percentage {
	bottom: 0;
	color: #000000;
	font-size: 8px;
	left: 0;
	line-height: 50px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	
}

.timebill-comment {
	margin-bottom: 15px;
	padding-left: 70px;
	position: relative;
}

.timebill-comment .image {
	position: absolute;
	left: 0;
}

.timebill-comment .content {
	border: 1px solid #dfdfdf;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.timebill-comment .content:before,
.timebill-comment .content:after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #f5f5f5;
	content: ' ';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	left: 62px;
	top: 8px;
	z-index: 2;
}

.timebill-comment .content:after {
	border-bottom: 15px solid #dfdfdf;
	left: 60px;
	top: 9px;
	z-index: 1;
}

.timebill-comment .content .who {
	background: #f5f5f5;
	border-bottom: 1px solid #dfdfdf;
	color: #808080;
	font-size: 10px;
	padding: 7px 10px;
	position: relative;
	z-index: 3;
}

.timebill-comment .content .who strong {
	font-size: 11px;
}

.timebill-comment .content .who strong:before,
.timebill-comment .content .who strong:after {
	background: #ffffff;
	content: ' ';
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	left: 25px;
	top: 27px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 4;
}

.timebill-comment .content .who strong:after {
	background: #dfdfdf;
	z-index: 3;
	top: 25px;
}

.timebill-comment .content .who a {

}

.timebill-comment .content .comment {
	font-size: 12px;
	line-height: 18px;
	padding: 10px;
}

.timebill-comment-form {
	padding-left: 70px;
}

.timebill-comment-form h3 {

}

.timebill-comment-form .textarea-wrap {
	position: relative;
}

.timebill-comment-form .textarea-wrap .image {
	position: absolute;
	left: -70px;
}

.timebill-comment-form textarea {
	font-size: 12px;
	height: 80px;
	padding-left: 10px;
	position: relative;
	z-index: 2;
	width: 100%;
}

.timebill-comment-form .textarea-wrap:before,
.timebill-comment-form .textarea-wrap:after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 15px solid #ffffff;
	content: ' ';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	left: -8px;
	top: 8px;
	z-index: 3;
}

.timebill-comment-form .textarea-wrap:after {
	border-bottom: 15px solid #a5aeb5;
	left: -10px;
	top: 9px;
	z-index: 1;
}

.timebill-comment-form .send-notification-email-wrap {
	float: left;
	margin: 8px 0;
	font-size: 10px;
	line-height: 40px;
	text-transform: uppercase;
}

.timebill-comment-form .send-notification-email-wrap label {
	cursor: pointer;
}

.timebill-comment-form .send-notification-email-wrap label input {
	vertical-align: middle;
	margin: 0 3px 0 0;
}

.timebill-comment-form .recipients-list {
	clear: both;
	display: none;
}


.timebill-comment-form .submit-wrap {
	float: right;
	margin-top: 10px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Dashboard ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.dashboard {

}

.dashboard .col {

}

.dashboard .col.first {

}

.dashboard .col.last {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Icons ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.icon.image {
	height: auto;
	width: auto;
}

.icon.small {
	font-size: 80%;
}

.edit, .duplicate, .email, .viewfull, .start, .pause, .timebill {
	background: url(/images/icons/edit.gif) 0 0 no-repeat;
	display: inline-block;
	height: 16px;
	width: 16px;
}

.text { 
	line-height: 18px;
	padding-left: 20px; 
	text-decoration: none;
	width: auto;
}

.duplicate { background: url(/images/icons/duplicate.gif) 0 0 no-repeat; }
.email { background: url(/images/icons/email.gif) 0 0 no-repeat; }
.viewfull { background: url(/images/icons/viewfull.gif) 0 0 no-repeat; }
.start { background: url(/images/icons/start.gif) 0 0 no-repeat; }
.pause { background: url(/images/icons/pause.gif) 0 0 no-repeat; }
.timebill { background: url(/images/icons/timebill.gif) 0 0 no-repeat; }

.edit:hover, .duplicate:hover, .email:hover, .viewfull:hover, .start:hover, .pause:hover, .timebill:hover { background-position: 0 -16px; }

.rightPanelToggleOn, .rightPanelToggleOff {
	background: url(/images/template/right_panel_toggle.png) 0 0 no-repeat;
	display: inline-block;
	height: 13px;
	width: 11px;
	margin-left: -10px;
}	
.rightPanelToggleOff { background-position: 0 -13px; }

.newComment {
	background: url(/images/icons/icon_chat.png) 1px 0 no-repeat;
	color: #ffffff;
	display: inline-block;
	font-size: 9px;
	height: 24px;
	padding: 2px 0 0 0;
	opacity: .80;
	filter: alpha(opacity=80);
	text-align: center;
	text-decoration: none;
	width: 24px;
	margin: 0 0 -15px 5px;
}

.newComment:hover{
	opacity: 1;
	filter: alpha(opacity=100);
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Back to Top button ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#back-to-bottom,
#back-to-top {
	background: url(/images/icons/back-to-top.png) 0 0 no-repeat;
	bottom: 18px;
	display: none;
	height: 46px;
	position: fixed;
	right: 12px;
	width: 46px;
	z-index: 9999;
}

#back-to-bottom {
	background-image: url(/images/icons/back-to-bottom.png);
}

#back-to-bottom:hover,
#back-to-top:hover {
	background-position: -46px 0;
}

.org-payments  {
	border: 1px solid #e8e8e8;
	font-size: 11px;
	margin: 20px 0 0 0;
	padding: 15px;
	text-align: center;
}

.org-payments .button {
	border: 1px solid #cccccc;
	margin-top: 5px;
	font-size: 10px;
}

.org-payments div {
	margin: 4px 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* CT Overlay ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.ct-underlay {
	background: #000000;
	display: none;
	bottom: 0;
	left: 0;
	opacity: .7;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 200;
}

.ct-overlay {
	background: #ffffff;
	box-shadow: 0 0 20px rgba(0,0,0,.50);
	-moz-box-shadow: 0 0 20px rgba(0,0,0,.50);
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,.50);
	display: none;
	left: 50%;
	margin: 0 0 0 -200px;
	padding: 15px;
	position: absolute;
	top: 100px;
	min-width: 100px;
	z-index: 201;
}

.ct-overlay .ct-overlay-close,
.overlay-close {
	background: url(/images/icons/x-close.png);
	position: absolute;
	top: 18px;
	right: 18px;
	width: 25px;
	height: 26px;
	cursor: pointer;
	z-index: 201;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Site Feedback --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#feedback {
	background: url(/images/icons/button_feedback.png) 13px 0 no-repeat;
	height: 105px;
	position: fixed;
	right: 0;
	top: 30px;
	transition: background-position .15s linear;
	-o-transition: background-position .15s linear;
	-moz-transition: background-position .15s linear;
	-webkit-transition: background-position .15s linear;
	width: 53px;
	z-index: 9997;
}

#feedback:hover { background-position: 5px 0; }

#feedback span { display: none; }


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Forms ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
form, fieldset, form fieldset ol, form fieldset li {
	margin: 0;
	padding: 0;
}

form { margin-top: 10px; }

form, input, textarea, option, select {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	max-width: 100%;
}

#timebill-part-form select,
#timebill-part-form textarea {
	width: 100%;
}

#timebill-part-form textarea {
	height: 100px;
}

#timebill-part-form .submit-wrap {
	line-height: 37px;
	padding: 10px 0 0 0;
}

#timebill-part-form .submit-wrap .submit {
	float: right;
}

input, textarea, select {
	border: 1px solid #cccccc;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}

input:focus, textarea:focus, select:focus {
    border-color: #66AFE9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
	transition: all .20s linear;
	-moz-transition: all .20s linear;
	-webkit-transition: all .20s linear;
	-o-transition: all .20s linear;
}

fieldset {
	background: #f5f5f5;
	border: 1px solid #dfdfdf;
	box-shadow: 0 0 5px rgba(0,0,0,.05);
	-moz-box-shadow: 0 0 5px rgba(0,0,0,.05);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.05);
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	margin: 0 0 15px 0;
	padding: 10px 0;
	position: relative;

}

.sectionHeading {
	background: #f2f2f2 url(/images/template/section_heading.gif) 0 100% repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e9e9e9));
	background: -moz-linear-gradient(top,  #f2f2f2,  #e9e9e9);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#e9e9e9');
	background-image: -o-linear-gradient(#f2f2f2,#e9e9e9);
	border: 1px solid #d7d7d7;
	border-bottom: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #4b4b4b;
	font-weight: bold;
	padding: 5px 7px;
}

legend {
	color: #569de0;
	font-size: 14px;
	font-weight: bold;
}

form fieldset ol {
	list-style: none;
}

form fieldset li {
	border-bottom: 1px solid #e7e7e7;
	border-top: 1px solid #ffffff;
	min-height: 20px;
	padding: 8px 5px 3px 5px;
}

.form { 
	border-spacing: 0;
	width: 100%;
}

.form.timebill-form select {
	width: 200px;
}
.form.timebill-form .chosen-container {
	min-width: 200px;
}

.form td {
	border-bottom: 1px solid #e7e7e7;
	border-top: 1px solid #ffffff;
	padding: 3px 10px;
	position: relative;
}

.form .helper-tooltip-message {
	background: #333333;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #ffffff;
	font-size: 12px;
	padding: 15px;
	position: absolute;
	z-index: 9;
	width: 200px;
}

.form .helper-tooltip-message .arrow {
	background: url(/images/icons/tooltip-arrow-left.png) 0 0 no-repeat;
	top: 50%;
	left: -29px;
	position: absolute;
	margin: -12px 0 0 0;
	width: 30px;
	height: 24px;
}

.form td.first {
	width: 150px;
}

.form tr:last-child td { border-bottom: 0; }

fieldset label {
	color: #808080;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.table-description-cell p {
	margin: 0 0 15px 0;
	padding: 0;
}

form em {
	color: red;
	font-style: normal;
	padding: 0 0 0 2px;
}

textarea, input, select { 
	padding: 6px; 
}

select { padding: 5px; }

input.date,
input.datepicker {
	background: #ffffff url(/images/icons/calendar.gif) 85px 48% no-repeat;
	padding-right: 28px;
	width: 110px;
	cursor: pointer;
}

textarea { 
	background: #ffffff;
	border: 1px solid #a5aeb5;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	line-height: 15px;
	max-width: 100%;
}

#selected-staff textarea {
	width: 100%;
}

span.checkbox-wrap {
	background: #ffffff;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.25);
	display: inline-block;
	margin: 3px;
	padding: 5px 10px 5px 5px;
}

span.checkbox-wrap input {
	border: 0;
	padding: 0;
	vertical-align: middle;
}

span.checkbox-wrap select {
	margin-left: 5px;
	padding: 0;
}

span.checkbox-wrap img {
	margin: -1px 4px 0 0;
	float: left; 
	padding: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.25);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.25);
	width: 20px;
}

span.checkbox-wrap img.billing {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	float: none;
	margin: 0;
	padding: 0;
	width: auto;
}

.checkbox-wrap label.unchecked,
.checkbox-wrap label.checked {
	background: url(/images/icons/checkbox.png) 0 50% no-repeat;
	cursor: pointer;
	display: block;
	float: none;
	padding-left: 27px;
	line-height: 25px;
	min-height: 25px;
	opacity: 1;
	width: auto;
}

span.checkbox-wrap label.checked {
	background: url(/images/icons/checkbox-checked.png) 0 50% no-repeat;
}

span.checkbox-wrap label.unchecked:hover,
span.checkbox-wrap label.checked:hover {
	opacity: .60;
	filter: alpha(opacity=60);
}

.checkbox-wrap label .text {
	line-height: 100%;
	padding-left: 0; 
	text-decoration: none;
	width: auto;
}	

.address-last-row td {
	border-bottom: 4px solid #cccccc;
}

.radio-wrap input {
	border: 0;
	padding: 0;
}

input.has-helper {
	padding-left: 10px;
	float: left;
}

input.has-helper.right {
	padding-right: 10px;
}

.input-helper {
	background: #f2f2f2 url(/images/template/section_heading.gif) 0 100% repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e9e9e9));
	background: -moz-linear-gradient(top,  #f2f2f2,  #e9e9e9);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#e9e9e9');
	background-image: -o-linear-gradient(#f2f2f2,#e9e9e9);
	border: 1px solid #d7d7d7;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: #333333;
	font-size: 12px;
	float: left;
	height: 32px;
	line-height: 32px;
	margin-right: -5px;
	padding: 0 8px;
	position: relative;
}

.input-helper.right {
	-webkit-border-radius: 5px;
	-webkit-border-top-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius: 5px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-bottomleft: 0;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -5px;
	margin-right: 0;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	height: 26px;
}

.chosen-container-multi .chosen-choices li.search-choice {
	display: block;
	float: none;
	min-height: 1px;
	width: auto;
}


/* 
Used for forms where you don't want to display a submit button
but you still want the enter key to work.
*/
.hidden_submit_button {
  position: absolute; 
  left: -9999px; 
  width: 1px; 
  height: 1px;
}

.label {
	display: inline-block;
	min-height: 16px;
	padding-right: 20px;
	text-decoration: none;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Alerts ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.good-alert, 
.bad-alert,
.notification {
	background: #e7ffe6;
	border: 1px solid #beffbb;
	color: #000000;
	display: none;
	margin: 10px 0;
	position: relative;
	z-index: 9999;
}

.notification {
	display: block;
	padding: 30px;
	z-index: 1;
}

.notification.neutral {
	background: #fffae0;
	border: 1px solid #ffe153;
}

.notification li {
	margin: 5px 0;
}

.thealert .wrapper {
	margin: 0 auto;
}

.alert-inside {
	margin: 0 auto;
	font-size: 18px;
	padding: 15px 25px 15px 10px;
}

.bad-alert,
.notification {
	background: #ffe6e6;
	border: 1px solid #ffbbbb;
}

.close-it {
	background: url(/images/icons/hide.png) 0 0 no-repeat;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 56px;
}

.close-it span {
	display: none;
}

.good-alert.fixed, 
.bad-alert.fixed {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	cursor: pointer;
	left: 0;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

.good-alert.fixed .alert-inside, 
.bad-alert.fixed .alert-inside {
	margin: 0 auto;
	padding: 10px 15px;
	position: relative;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Spinning Timer Clock -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.loadingclock {
	display: inline-block;
	position: relative;
	width: 15px;
	height: 15px;
	line-height: 15px;
	border: 2px solid #333333;
	border-radius: 100%;
	vertical-align: middle;
	margin-top: -1px;
}
.loadingclock:before {
  display: block;
  position: absolute;
  left: 6.875px;
  top: 2px;
  width: 2px;
  height: 6.25px;
  background-color: #333333;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  content: "";
  -webkit-transform-origin: 1px 6.25px;
      -ms-transform-origin: 1px 6.25px;
          transform-origin: 1px 6.25px;
}
.loadingclock:after {
  display: block;
  position: absolute;
  left: 6.875px;
  top: 3px;
  width: 2px;
  height: 5.625px;
  background-color: #333333;
  -webkit-animation: spin 9s linear infinite;
          animation: spin 9s linear infinite;
  content: "";
  -webkit-transform-origin: 1px 5.625px;
      -ms-transform-origin: 1px 5.625px;
          transform-origin: 1px 5.625px;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Invoice/Receivable Error Handling ------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.receivable-amount-field.error {
	border-color: red;
	color: red;
}

.receivable-amount-available-td.error {
	color: red;
	font-weight: bold;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Login Page ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.page-login {
	background: #141414 url(/images/template/kulixir-logo-white-big.png) 50% 80px no-repeat;
}

body.page-login .header,
body.page-login .footer {
	display: none;
}

#LoginBox {
	background: #ffffff;
	border-radius: 5px;
	max-width: 300px;
	margin: 160px auto 0 auto;
	padding: 35px;
}

body.page-login .homepage {
	padding: 0 10px;
}

#LoginBox input.text {
	padding: 5px 8px;
	width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* On/Off Togglers ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
/* <div class="on-off-toggler on"></div>  and <div class="on-off-toggler off"></div> */
select.yes-no-select {
	display: none;
}

.on-off-toggler {
	background: #e9e9eb;
	border-radius: 15px;
	cursor: pointer;
	display: inline-block;
	height: 30px;
	position: relative;
	transition: background 0.3s ease;
	width: 55px;
}

.on-off-toggler:before {
	background: #fff;
	border-radius: 100%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.43);
	content: '';
	height: 26px;
	left: 2px;
	position: absolute;
	top: 2px;
	transition: left 0.3s ease;
	width: 26px;
}

.on-off-toggler.on {
	background: #3dc45e;
}

.on-off-toggler.on:before {
	left: 27px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Miscellaneous --------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.cb { clear: both; }
.fl { float: left; }
.fr { float: right; }

.dn { display: none; }
.dib { display: inline-block; }

.vsmt { margin-top: 3px; }
.smt { margin-top: 10px; }
.mt { margin-top: 20px; }
.bmt { margin-top: 30px; }
.smb { margin-bottom: 10px; }
.mb { margin-bottom: 20px; }
.bmb { margin-bottom: 30px; }
.sml { margin-left: 10px; }

.negmt { margin-top: -7px; }

.showtip { cursor: help; }
a.showtip, a .showtip { cursor: pointer; }

.green { color: #40b549; }

.small { font-size: 90%; }
.g { color: #808080; }
.red { color: red; }

.uc { text-transform: uppercase; }

.tac { text-align: center; }
.tar { text-align: right; }

.padding { padding: 10px; }