/*******************************
* Styleguide
*
* Font: Helvetica Neue, Helvetica, Arial, sans-serif
* Font Size: 14px
* Font colour: #616161
* Line Height: 20px;
*
* Body background colour: #F7F7F7
* Main bar (top): #313E42
* Top bar button (active): #52676E
* Top bar button (normal): #3C4C51
* Blue buttons (normal): #00BFEF
* Blue buttons (hover): #3C4C51
* Green bar background: #A1E147
* Darker Green: #507B14
* Yellow bar background: #F9B705
* Darker Yellow: #FF7E00
* Grey button (active): #52676E
* Grey button (normal): #3C4C51
* Grey Text headings (no background): #616161
* Grey text headings (coloured background): #444444
*
*******************************/




body
{
	/*background-color: #8fd9ec;*/
	background-color: #eee;
	color: #616161;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

/* text styling */
.bold {
	font-weight: bold;
}

/* Margins */
.mt5 {	margin-top: 5px; }
.mt10 {	margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 {	margin-top: 20px;}
.mt25 {	margin-top: 25px;}
.mt30 {	margin-top: 30px; }
.mt40 {	margin-top: 40px; }
.mt50 {	margin-top: 50px; }

.mb10 {	margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 {	margin-bottom: 20px; }
.mb25 {	margin-bottom: 25px; }
.mb30 {	margin-bottom: 30px; }
.mb40 {	margin-bottom: 40px; }
.mb50 {	margin-bottom: 50px; }

.ml10 {	margin-left: 10px; }
.ml15 {	margin-left: 15px; }
.ml20 {	margin-left: 20px; }
.ml25 {	margin-left: 25px; }
.ml30 {	margin-left: 30px; }
.ml40 {	margin-left: 40px; }
.ml50 {	margin-left: 50px; }

.mr10 {	margin-right: 10px; }
.mr15 {	margin-right: 15px; }
.mr20 {	margin-right: 20px; }
.mr25 {	margin-right: 25px; }
.mr30 {	margin-right: 30px; }
.mr40 {	margin-right: 40px; }
.mr50 {	margin-right: 50px; }

/* Padding */
.pt10 {	padding-top: 10px; }
.pt15 { padding-top: 15px; }
.pt20 {	padding-top: 20px;}
.pt25 {	padding-top: 25px;}
.pt30 {	padding-top: 30px; }
.pt40 {	padding-top: 40px; }
.pt50 {	padding-top: 50px; }

.pb10 {	padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }
.pb20 {	padding-bottom: 20px; }
.pb25 {	padding-bottom: 25px; }
.pb30 {	padding-bottom: 30px; }
.pb40 {	padding-bottom: 40px; }
.pb50 {	padding-bottom: 50px; }

.pl10 {	padding-left: 10px; }
.pl15 {	padding-left: 15px; }
.pl20 {	padding-left: 20px; }
.pl25 {	padding-left: 25px; }
.pl30 {	padding-left: 30px; }
.pl40 {	padding-left: 40px; }
.pl50 {	padding-left: 50px; }

.pr10 {	padding-right: 10px; }
.pr15 {	padding-right: 15px; }
.pr20 {	padding-right: 20px; }
.pr25 {	padding-right: 25px; }
.pr30 {	padding-right: 30px; }
.pr40 {	padding-right: 40px; }
.pr50 {	padding-right: 50px; }

/*
* Text
*/
.bg-primary, .bg-warning, .bg-success, .bg-danger, .bg-info {
	padding: 10px 20px;
}

.bg-inactive {
	background-color: #CCC;
}

h1.company_name {
	font-size: 30px;
}

.well {
	overflow: hidden;
}

.well-no-overflow {
	overflow: unset;
}

.statement_unchanged {
	background:#99ccff;
	width:10px;
}

.statement_auto_changed {
	background:#ffffcc;
	width:10px;
}

.statement_duplicate {
	background:#ff0000;
	width:10px;
}

.statement_edited {
	background:#aaaaaa;
	width:10px;
}

.statement_none {
	background:#ffffff;
	width:10px;
}

.text-muted {
	color: #b9b9b9;
}

.top-logo {
	max-width: 300px;
	margin-top: 15px;
}

.fca-OVERDUE, .fca-DUE {
	color: #d9534f;
}

.fca-NOT {
	color: #52676E;
}

/* Registration Page Progress Bar */
.reg-progress-container {
	width:100%;
	height:1.5em;
	position:relative;
	background-color:#bbb;
}

.reg-progress-bar {
	background-color:#00bfef;
	height:100%;
	position:absolute;
	line-height:inherit
}

.reg-progress-bar span {
	margin-left: 20px;
	color: white;
}

.bank-account-card-title {
	min-height: 100px;
}

.table-responsive {
	overflow: inherit;
}

/* Icon Spinner */
.fa-spin-custom, .glyphicon-spin {
    -webkit-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/*
* Tables
*/
.table-striped>tbody>tr:nth-child(even)>td {
    background-color: #EAEAEA;


    

}

.table-hover>tbody>tr:hover>td {
	background-color: #CECECE;
	color: black;

    -moz-transition: all .2s ease-in !important;
    -o-transition: all .2s ease-in !important;
    -webkit-transition: all .2s ease-in !important;
    transition: all .2s ease-in !important;
}

.table-bg-grey {
	background: #eee;
	font-weight: bold;
}

/*
* Settings Links
*/
.settings-menu > ul {
  padding: 0;
  margin: 0;
}
.settings-menu > ul > li {
  padding: 0;
  margin: 0;
}
.settings-menu > ul > li {
  list-style: none;
}
.settings-menu > ul > li > a {
  display: block;
  padding-bottom:4px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: normal;
}
.settings-menu > ul > li > a:hover,
.settings-menu > ul > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.settings-disabled a {
	color:#ccc;
	cursor:wait;
}


/*
* Top Navigation
*/
.header-navigation {
	background-color: #313E42;
	color: #FEFEFE;
	padding-bottom:2px;
	border-bottom:1px solid #ccc;
}

.header-navigation a
{
	color: #fefefe;
}
.header-navigation .btn
{
	background-color: #3c4c51;
	box-shadow: none !important;
	moz-box-shadow: none !important;
	webkit-box-shadow: none !important;
}
.header-navigation .btn:hover
{
	background-color: #00bfef;
	color: #fefefe;
}
.header-navigation .welcome-message
{
	display: block;
	height: 23px;
	line-height: 23px;
	padding: 9px 14px;
}

.header-navigation .logo {
	margin-top: 20px;
	width: 150px;
}

@media (min-width: 900px) {
   .collapse {
       display: none !important;
   }
}

.navbar {
	margin-bottom: 10px;
}

.navbar-toggle {
	background-color: #52676e;
}

.navbar-toggle .icon-bar {
	color: #fff;
}

#st-navigation-menu {
	text-transform: uppercase;
	margin-top: 20px;
}

#st-navigation-menu a {
	color: #fff;
}

#st-navigation-menu a:hover {
	text-decoration: none;
}

#st-navigation-menu a.active
{
	/*background-color: #52676e;*/
	color: #fefefe;
}
#st-navigation-menu .btn
{
	padding-left: 14px;
	padding-right: 14px;
}
#st-navigation-menu > .btn-group
{
	float: left;
}
#st-navigation-menu > .btn-group .btn-large .caret
{
	border-bottom-color: #FFFFFF;
	border-top-color: #FFFFFF;
	margin-left: 5px;
	margin-top: 10px;
}
#st-navigation-menu > .btn-group > .btn.dropdown-toggle
{
	border-radius: 0;
	moz-border-radius: 0;
	ms-border-radius: 0;
	o-border-radius: 0;
	webkit-border-radius: 0;
}
#st-navigation-menu > .btn-group:last-child > .btn.dropdown-toggle
{
	border-left: 1px;
	margin-left: 0;
}
#st-navigation-menu > .btn-group:first-child > .btn.dropdown-toggle
{
	border-right: 1px;
	margin-right: 0;
}
#st-navigation-menu > .btn-group.dropdown + #st-navigation-menu > .btn-group.dropdown
{
	margin-left: 0;
}
#st-navigation-menu > .btn-group.dropdown .btn
{
	text-align: left;
}
#st-navigation-menu > .btn-group .dropdown-menu
{
	background-color: #3c4c51;
	border-radius: 0;
	moz-border-radius: 0;
	webkit-border-radius: 0;
}

.dropdown-menu {
	padding: 0px 0px 10px 0px!important;
}

.mobile-submenu ul {
	list-style: none;
	margin-left: 0px;
	-webkit-padding-start: 0px;
}

.mobile-submenu li {
	padding: 10px;
}

.mobile-submenu li > a:hover {
	color: #999!important;
}


/*
* Buttons
*/
.btn-group .btn-large {
	border-radius: 0;
	padding: 9px 0px;
}

.btn {
	border-radius: 0;
}

.btn:disabled, .btn:disabled:hover {
	background-color: #3C4C51;
	border-color: #3C4C51;
}

.btn-primary, .btn-primary:focus, .btn-primary:active {
	background-color: #00BFEF;
	border-color: #00BFEF;
}

.btn-primary:hover {
	background-color: #52676E;
	border-color: #52676E;
}


/* Change green success buttons to ST blue (remove below to change back to green) */
.btn-success, .btn-success:focus, .btn-success:active {
	/*background-color: #00BFEF;
	border-color: #00BFEF;*/
}

.btn-success:hover {
	background-color: #52676E;
	border-color: #52676E;
}

/* bring the green button back in as the 'save' button */
.btn-save, .btn-save:focus, .btn-save:active {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-save:hover {
	color: #fff;
	background-color: #449d44;
  	border-color: #398439;
}

.btn-currency {
	background-color: #A1E147;
	border-color: #A1E147;
	color: #fff;
}



.open > .dropdown-toggle.btn-primary:hover, 
.open > .dropdown-toggle.btn-primary:focus, 
.open > .dropdown-toggle.btn-primary:active {
	background-color: #52676E;
	border-color: #52676E;
}

.dropdown-menu > li > a {
	padding: 5px 20px;
}

/*
* Forms
*/
.form-control {
	border-radius: 0;
	margin-bottom: 20px;
	/*padding: 10px;*/
}

/* Signup Form */
.signup-form {
	background-color: #fff!important;
}

/* Login Form */

	form.login-form {
		margin: 10px 30px;
	}

	form.login-form label {
		font-size: 20px;
		font-weight: 200;
		color: #999999;
		margin-bottom: 0px;
	}


	form.login-form input[type="text"], form.login-form input[type="password"], form.login-form input[type="email"] {
		background-color: #E7E7E7;
		padding: 5px;
		font-size: 26px;
		height: auto;
		margin-top: 10px;
		margin-bottom: 25px;
	}

/*label {
	text-transform: uppercase;
}*/


input[type="checkbox"],input[type="radio"]{
  vertical-align:middle;
}

input[type="checkbox"]+label,input[type="radio"]+label{
  cursor:pointer;
}

input[type="checkbox"]+label:before,input[type="radio"]+label:before{
  content:"";
  display:inline-block;
  height:19px;
  margin:1px 4px 0 -18px;
  vertical-align:middle;
  width:19px;
}

input[type="checkbox"]+label:before{
  background:url('/angular/assets/img/check_radio_sheet.png')left top no-repeat;
}

input[type="checkbox"]:checked+label:before{
  background:url('/angular/assets/img/check_radio_sheet.png')-19px top no-repeat;
}

input[type="radio"]+label:before{
  background:url('/angular/assets/img/check_radio_sheet.png')-38px top no-repeat;
}

input[type="radio"]:checked+label:before{
  background:url('/angular/assets/img/check_radio_sheet.png')-57px top no-repeat;
}



/* 
Form Validation
*/
.ng-dirty.ng-valid {
	border-color: #3c763d;
}

.ng-dirty.ng-invalid-required {
	border-color: #a94442;
}

.help-block .text-danger {
	color: #a94442;
}

/*
* Modals
*/

.modal-header {
	background-color: #00BFEF;
	color: #FFF;
	height: 50px;
	padding: 10px;
}

.modal-content {
	border-radius: 0;
	overflow: hidden;
}

.modal-header h3 {
	font-weight: 200;
    /*line-height: 55px;*/
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: none;
    margin: 0;
    display: inline;
    opacity: 1;
}

.settings-modal-header {
	background-color: #f9b705;
}

.reports-modal-header {
	background-color: #f9b705;
}

.modal-body {
	margin-bottom: 30px;
}

/*
* Action Links
*/
.dropdown-menu > li > a:hover {
	cursor: pointer;
	background-color: #52676e;
	color: #fff;
}

/*
* Pagination
*/
.pagination > li > a {
	background-color: #00BFEF;
	border-color: #00BFEF;
	color: #fff;
}

.pagination > .active > a, .pagination > .active > a:hover,
 .pagination > .active > a:focus {
	background-color: #52676E;
	border-color: #52676E;
}

.pagination > .disabled > a, .pagination > .disabled > a:hover {
	background-color: #CECECE;
	color: #fff;
	border-color: #CECECE;
}

.pagination > li:first-child > a, .pagination > li:last-child > a {
	border-radius: 0;
}


/*
* Header Menu
*/
#header-navigation-menu a {
	color: #FFFFFF;
}

#header-navigation-menu a.active
{
	background-color: #52676e;
	color: #fefefe;
}
#header-navigation-menu .btn
{
	padding-left: 14px;
	padding-right: 14px;
}
#header-navigation-menu > .btn-group
{
	float: left;
}
#header-navigation-menu > .btn-group .btn-large .caret
{
	border-bottom-color: #FFFFFF;
	border-top-color: #FFFFFF;
	margin-left: 5px;
	margin-top: 10px;
}
#header-navigation-menu > .btn-group > .btn.dropdown-toggle
{
	border-radius: 0;
	moz-border-radius: 0;
	ms-border-radius: 0;
	o-border-radius: 0;
	webkit-border-radius: 0;
}
#header-navigation-menu > .btn-group:last-child > .btn.dropdown-toggle
{
	border-left: 1px;
	margin-left: 0;
}
#header-navigation-menu > .btn-group:first-child > .btn.dropdown-toggle
{
	border-right: 1px;
	margin-right: 0;
}
#header-navigation-menu > .btn-group.dropdown + #header-navigation-menu > .btn-group.dropdown
{
	margin-left: 0;
}
#header-navigation-menu > .btn-group.dropdown .btn
{
	text-align: left;
}
#header-navigation-menu > .btn-group .dropdown-menu
{
	background-color: #3c4c51;
	border-radius: 0;
	moz-border-radius: 0;
	webkit-border-radius: 0;
}

/*
* Top Submenu
*/
.submenu-container
{
	background-color: #fff;
	border-bottom: 1px solid #d5d5d5;
	/*border-top: 2px solid #d5d5d5;*/
	/*margin-bottom: 20px;*/
	text-align: center;
	padding-top:10px;
	padding-bottom:10px;
	margin-bottom:10px;

	/*-moz-animation-name: dropHeader;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in;
    -moz-animation-duration: 1s;

    -webkit-animation-name: dropHeader;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-duration: 1s;

    animation-name: dropHeader;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;*/
}

/*
@-moz-keyframes dropHeader {
    0% {
        -moz-transform: translateY(-70px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-webkit-keyframes dropHeader {
    0% {
        -webkit-transform: translateY(-70px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@keyframes dropHeader {
    0% {
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(0);
    }
}
*/


.submenu-container ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.submenu-container li {
	display: inline-block;
	margin-right: 20px;	
}

ul.dropdown-menu > li {
	margin-right: 0px;
}

.submenu-container li a, .submenu-container li .btn-submenu {
	display: inline-block;
	text-decoration: none;
	background-color: #00BFEF;
	color: #FFFFFF;
	padding: 10px 15px;
	width: 200px;
	height:40px;

    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}



@media (min-width: 768px) and (max-width: 1199px) {
	.submenu-container li a, .submenu-container li .btn-submenu {
		padding: 10px 10px;
	}
}

/*
.submenu-container li a:hover {
	text-decoration: none;
	background-color: #52676E;
	color: #fff;
}
*/

.submenu-container li a:hover {
    text-decoration: none;
    background-color: #52676E;
    color: #fff;
}

.submenu-container li a:active {
	text-decoration: none;
	background-color: #44565b;
}

.dropdown-menu li a {
	background-color: #fff;
	color: #000;
}

.dropdown-menu li a:hover {
	color: #fff;
}


/*
* Left Navigation Menu
*/
.left-nav-container {
	padding-left: 0;
	padding-top: 0;
	position: relative;
	margin-top: 0;
}

.left-nav-container ul {
	/*background-color: #ECECEC;*/
	background-color: #F7F7F7;
	border: 0;
	padding-bottom: 20px;
}

.left-nav-container>ul>li {
	height: 50px;
}

.nav > li > a {
	/*padding: 5px 15px;*/
	border-radius:0px;
	margin:0px;
	padding-left:20px;
	padding-bottom: 0px;
	/*line-height:80px;*/
	height:80px;
	border:0px;
}

.nav > li > a:hover {
	background-color: #52676E;
	border:0px;
}

.nav > li > a:active {
	background-color: #00bfef;
}

.nav > li:hover {
	background:#52676E;
}

.nav > li.year-end a {
	line-height: 40px;
	height: 60px;
	background-color: #D3ECF4;
}

.left-nav-menu-item a:hover {
	/*background-color: #D3ECF4;*/
}

.left-nav-menu-item h4 i {
	margin-right: 10px;
}



.side-menu {
	width: 200px;
	/*height: 350px;*/
	position: absolute;
	background: #52676E;
	left: -200px;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	z-index: 9999;
	
}

.side-menu ul {
	list-style: none;
}

.side-menu ul > li {
	padding: 10px 0px;
	color: #fff;
}

.side-menu ul > li a {
	color: #fff;
}

.side-menu-icon {
	padding: 10px 15px 10px 10px;
	background: #52676E;
	color: #fff;
	cursor: pointer;
	float: left;
	margin: 10px 6px 0 0;
}
#sidemenuToggle { display: none; }

#sidemenuToggle:checked ~ .side-menu { position: absolute; left: 0; margin-top: 50px; }




#searchclear {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	height: 38px;
	margin: auto;
	font-size: 18px;
	cursor: pointer;
	color: #999;
	margin-top: 7px;
}

/* Tabs */
.nav-tabs.nav-justified {
	margin-top: 20px;
}

.nav-tabs.nav-justified>li {
	cursor: pointer;
	padding: 10px 5px;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
	text-align: center;
}

.nav-tabs.nav-justified>li:hover {
	background-color: #D3ECF4;
	color: #000;
}

.nav-tabs.nav-justified>li.active {
	color: #000;
	background-color: #D3ECF4;
	padding: 10px 5px;
}

.tab-content {
	padding: 20px;
	border: 1px solid #ddd;
	border-top-color: transparent;
}

/* main menu */
.main-menu {
	padding-left:20px;
}

.main-menu a {
	color:#616161;
}

.main-menu ul {
	
}


/* If you change the menu item height, change the main-menu-arrow accordingly */
.main-menu ul li {
	/*background:#00bfef;*/
	background: #ECECEC;
	margin-bottom:10px;
	height:50px; 
	color:#616161;
}

.main-menu ul li a {
	background-color:#ECECEC;
}

.main-menu ul li a:active {
	background-color:#00bfef;
}

.main-menu ul li a.active {
	background-color:#00bfef;
	color: #fff;
}

.main-menu ul li a.active:hover {
	background-color:#00bfef;
	color: #fff;
}

.main-menu ul li a:hover {
	background-color: #D3ECF4;
}

.main-menu-arrow {
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #00bfef;
	float: right;
	position: relative;
	bottom: 65px;
	left: 15px;
}


/*
.main-menu ul li h4 {
	font-weight: 200;
    line-height: 55px;
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: none;
    margin: 0;
    display: inline;
    opacity: 1;
}
*/

.panel {
	border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.panel-login {
	border: none!important;
}

.panel-heading {
	padding: 15px 20px;
}

.panel-income {
	border-color: #A1E147!important;
}

.panel-income > .panel-heading {
	background-color: #A1E147!important;
	border-color: #A1E147!important;
}

.panel-expenses {
	border-color: #EEEBE2!important;
}

.panel-expenses > .panel-heading {
	background-color: #EEEBE2!important;
	border-color: #EEEBE2!important;
	color: #616161!important;
}

.panel-primary {
  border-color: #00bfef;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #00bfef;
  border-color: #00bfef;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #00bfef;
}
.panel-primary > .panel-heading .badge {
  color: #00bfef;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #00bfef;
}

.panel-body-no-bg {
	border: none;
	border-color: #F7F7F7;
	background-color: #F7F7F7;
}

.page-header-income {
	padding-left:10px;
	height:60px;
	background: #a1e147;
	font-size: 1.6em;
	line-height: 60px;
	font-weight: 200;
	color: #444444;
	margin-bottom: 5px;
	text-transform: uppercase;
    letter-spacing: 2px;
    border:1px solid #ddd;
}

.page-header-general {
	padding-left:10px;
	height:60px;
	background: #FCE74E;
	font-size: 1.6em;
	line-height: 60px;
	font-weight: 200;
	color: #444444;
	margin-bottom: 5px;
	text-transform: uppercase;
    letter-spacing: 2px;
    border:1px solid #ddd;
}

.page-header-expenses {
	padding-left:10px;
	height:60px;
	background: #F9B705;
	font-size: 1.6em;
	line-height: 60px;
	font-weight: 200;
	color: #444444;
	margin-bottom: 5px;
	text-transform: uppercase;
    letter-spacing: 2px;
    border:1px solid #ddd;
}



.table-header {
	height:30px;
	background: #00bfef;
	font-size: 14px;
	line-height: 30px;
	font-weight: bold;
	color: #ffffff;
}

.currency-input {
	width:100px;
	text-align:right;
}

.currency-totals {
	width:120px;
	text-align:right;
	padding-right:12px;
}

.form-control {
	margin-bottom:5px;
}


#sysadmin-info {
	margin-top:120px;
    height:60px;
    background:#FCE74E;
    border-top:1px solid #cccccc;
    padding:10px;
}


.reconcile-well {
	border: 1px solid #000;
	background-color: #fff;
	/*position:absolute;*/
	z-index:100;
}

.borderless tr td {
    border: none !important;

}


.currency_field {
	text-align: right;
}


/*
* Accounting
*/
.etb-head-centred {
	text-align: center !important;
}
.etb-currency {
	text-align: right !important;
}
.etb-currency-center {
	text-align: center !important;
}
.super-thin {
	height:1px !important;
}



/*
* Income
*/
.full button span {
	background-color: limegreen;
    border-radius: 32px;
    color: black;
}

.partially button span {
    background-color: orange;
    border-radius: 32px;
    color: black;
}

#income-notifications-bar {
	background: #ff0000;
	color:#ffffff;
	height:30px;
	padding:4px;
	text-align:center;
}

.hilite-bkgross {
	background-color: #D6947E;
}


/*
* alt menu
*/
.alt-main-menu {
	padding-left:20px;
	/*width:300px;*/
}
.alt-main-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.alt-main-menu ul li {
	margin-bottom: 5px;
}

.alt-main-menu ul li a{
	text-decoration: none;
	color: #666;
	padding-top:20px;
	padding-left:20px;
	background-color: #ECECEC;
	display:block;
	height:60px;
	/*border-bottom:1px solid #ccc;*/
	font-size:17px;
	/*font-weight:bold;*/

    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}


.alt-main-menu ul li a:hover{
	color: #666;
	background-color: #D3ECF4;
}

.alt-main-menu ul li a.active {
	color: #fff;
	background-color: #00bfef;
}

.alt-main-menu-arrow {
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #00bfef;
	float: right;
	position: relative;
	bottom: 46px;
	left: 15px;
}

.alt-main-menu-header {
	height:60px;
	background-color: #ddd;
	padding-top:20px;
	/*padding-left:10px;*/
	text-align: center;
	color:#666;
	font-size:14px;
	font-weight:bold;
	/*border-bottom:1px solid #ccc;*/
	margin-bottom: 5px;
}


/*
* alt settings menu
*/
.alt-settings-menu {
	padding-left:20px;
	/*width:300px;*/
}
.alt-settings-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.alt-settings-menu ul li a{
	text-decoration: none;
	color: #666;
	padding-top:20px;
	padding-left:20px;
	background-color: #ECECEC;
	display:block;
	height:60px;
	border-bottom:1px solid #ccc;
	font-size:17px;
	/*font-weight:bold;*/
	text-transform: uppercase;
	letter-spacing:2px;
}


.alt-settings-menu ul li a:hover{
	color: #666;
	background-color: #D3ECF4;
}

.alt-settings-menu ul li a.active {
	color: #fff;
	background-color: #00bfef;
}


/* used by mygabriel report */
.dead-input {
	width:100px !important;
	border:1px solid #ccc !important;
	background: #eee !important;
	color:#aaa !important;
}





/*
* Notifications
*/
#notifications-bar {
    height:30px;
    background:#ffffcc;
    border-bottom:1px solid #ccc;
    padding-left:10px;
    padding-top:3px;
}

#system-message-bar {
    height:auto;
    background:#ffffcc;
    border-bottom:1px solid #ccc;
    padding-left:10px;
    padding-top:3px;
}

/* ETB modal printing */
@media screen {
    #printSection {
        display: none;
    }
}
@media print {
	@page {
		margin: 0.5cm;
	}
    html, body * {
        visibility:hidden;
    }
    #printSection, #printSection * {
        visibility:visible;
    }
    #printSection {
        width: 95%!important;
        margin: 0 0;
        position:absolute;
        left:0;
        top:0;
    }

    #printSection > table.table {
    	width: 95%!important;
    	margin-bottom: 0px!important;
    }
}

.print-button-position-hack-income {
	position: absolute;
	/*
    top: -64px;
	left: 140px;
    */
    top: 135px;
    left: 145px;
}

.print-button-position-hack-expenses {
	position: absolute;
	top: -64px;
	left: 140px;
}

.print-button-position-hack-bank {
	position: absolute;
	/*
    top: -54px;
	left: 110px;
    */
    top: -70px;
    left: 161px;
    
}


.wizard-field-error {
	border:3px solid;
	background:#ffe0e0;
}

.btn-bank-default {
	color:#666;
	font-size:1em;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:6px;
	padding-right:6px;
}
