@charset "utf-8";

/* HTML */
body {
	font-family: Ubuntu, Verdana;
	font-size: 10pt;
	background-color: #f0f0f0;
	background-image: url('../images/background.png');
	background-repeat: repeat-y;
	background-position: center;
	color: #4c4c4c;
	margin-left: auto;
	margin-right: auto;
}

img {
	border: 0;
}

input[type=text],input[type=password],select,textarea {
	padding: 5px;
	/*border: 1px solid #ccc;
	background-color: #fff;*/
	border: none;
	background-color: #eee;
	color: #333;
	font-family: Consolas;
	
}

select {
	padding: 0;
}

pre {
	font-size: 8pt;
	font-family: Consolas;
}

button.action1 {
	background: -webkit-linear-gradient(top, #ffae00, #ff6e00);
	background: -moz-linear-gradient(top, #ffae00, #ff6e00);
 	background: -ms-linear-gradient(top, #ffae00, #ff6e00);
}

button.action2 {
	background: -webkit-linear-gradient(top, #ff6600, #ff1100);
	background: -moz-linear-gradient(top, #ff6600, #ff1100);
 	background: -ms-linear-gradient(top, #ff6600, #ff1100);
}

button {
	cursor: pointer;
	margin: 0;
	padding: 10px;
	border: hidden;
	border-radius: 2px;
	color: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	text-shadow: #888 1px 1px 0;
	background-color: #aaa;
	background: -webkit-linear-gradient(top,#bbb,#999);
	background: -moz-linear-gradient(top,#bbb,#999);
	background: -ms-linear-gradient(top,#bbb,#999);
	font-family: Ubuntu, Verdana;
	font-size: 10pt;
	font-weight: bold;
}

.button-icon {
	padding-left: 20px;
	position: relative;
}

.button-icon .ui-icon {
	position: absolute;
	left: 3px;
	background-image: url(http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/images/ui-icons_ffffff_256x240.png);
}

.button-small {
	padding: 2px 10px;
	font-size: 8pt;
}

td.submit {
	background-color: #666;
	text-align: center;
	padding: 5px;
}

span.info {
	color: #fff;
	font-weight: bold;
	padding: 4px 7px;
	background-color: #aaa;
	border-radius: 10px;
	cursor: default;
	font-size: 7pt;
}

/* jQuery UI override */
.ui-widget {
	font-size: 8pt;
}

/* LOGIN */
#boxLogin {
	width: 300px;
	background-color: #fcfcfc;
	border: 1px solid #bbb;
	margin: 200px auto;
	padding: 20px;
}

#boxLogin .field {
	width: 200px;
	margin: 5px auto;
}

#boxLogin .field input {
	width: 100%;
}

/* MENU */
#menu {
	width: 140px;
	background-color: #fcfcfc;
	border: 1px solid #bbb;
	padding: 5px;
	text-align: center;
	position: absolute;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

#menu .section {
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}

#menu .section:first-child {
	margin-top: 5px;
}

#menu a {
	display: block;
	margin-bottom: 5px;
	text-decoration: none;
	color: #4c4c4c;
	padding: 5px 0;
	border: 1px solid rgba(0,0,0,0);
}

#menu a:last-child {
	margin-bottom: 0;
}

#menu a.current, #menu a:hover {
	background-color: #fff;
	border: 1px solid #bbb;
}

/* TOP BAR */
#topbar {
	margin-left: 160px;
	background-color: #fcfcfc;
	border: 1px solid #bbb;
	padding: 5px;
	position: relative;
}

#topbar .user {
	position: absolute;
	right: 6px;
	bottom: 4px;
}

#topbar .balance {
	position: absolute;
	top: 9px;
	right: 4px;
}

#topbar .amount {
	font-weight: bold;
	background-color: #fff;
	padding: 4px;
	margin-left: 10px;
	border: 1px solid #f0f0f0;
}

/* ROOT */
#root {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}

/* CONTENT */
#content {
	margin-top: 10px;
	margin-left: 160px;
}

/* PUBLIC */
#public {
	max-width: 940px;
	margin: 0 auto;
	padding: 10px;
}

#public p {
	text-align: justify;
}

/* NOTIFICATIONS */
.notification_error {
	padding: 5px;
	background-color: #F63;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
}

.notification_success {
	padding: 5px;
	background-color: #36F;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	text-align: center;
}

/* NUMBERS */
.popup-edit {
	font-size: 8pt;
	display: none;
}

.popup-edit table {
	width: 100%;
}

/* table */
table.table {
	background-color: #fcfcfc;
	border: 1px solid #bbb;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	font-size: 9pt;
	border-spacing: 0;
	width: 100%;
	text-align: center;
}

table.table > tbody > tr > th {
	background: -webkit-linear-gradient(top, #fefefe, #f0f0f0);
	background: -moz-linear-gradient(top, #fefefe, #f0f0f0);
 	background: -ms-linear-gradient(top, #fefefe, #f0f0f0);
	padding: 5px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

table.table > tbody > tr > td {
	padding: 2px;
	border-right: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
}

table.table > tbody > tr:nth-child(odd) > td {
	background-color: #f0f0f0;
}

table.table > tbody > tr:hover > td {
	background-color: #ddd;
}

table.table > tbody > tr > td.actions {
	white-space: nowrap;
}

table.table td.text-overflow {
	cursor: default;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

table.table tr.highlight td {
	background-color: #feffc4 !important;
}

table.table tr.new td {
	background-color: #feffc4 !important;
}

table.table tr.level-request td {
}

table.table tr.selected td {
	background-color: #feffc4;
}

table.table-tr-select tr td {
	cursor: pointer;
}

table.table tr.total td {
	border-top: 1px solid #f0f0f0;
	font-weight: bold;
	background-color: #fff;
}

table.table tr.red td {
	font-weight: bold;
	color: #F70;
}

/* tip */
.tip {
	background-color: #fffec9;
	border-radius: 5px;
	padding: 2px;
}

/* bar */
.bar {
	border: 1px solid #bbb;
	background-color: #fcfcfc;
	padding: 10px;
	text-align: center;
}

.monitoring-bar {
	background: -webkit-linear-gradient(left, #FFAE00, #FF6E00);
	background: -moz-linear-gradient(top, #FFAE00, #FF6E00);
 	background: -ms-linear-gradient(top, #FFAE00, #FF6E00);
}
