body {
	font: sans-serif;
	margin: 0px 25px;
	background-color: #d2d2d2;
	background-image: url('/images/logo-icon.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: bottom right;
	background-size: contain;
	background-blend-mode: color;
}

.ui-autocomplete {
	max-height: 400px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	/* add padding to account for vertical scrollbar */
	padding-right: 20px;
}

.hrclass {
	width: 75%;
	float: left;
}

#tabs {
	width: 75%;
}

.buttons-display {
	float: right;
	margin-right: 75px;
	position: static;
}

.buttons-display-old {
	float: right;
	position: static;
}

.status-display {
	float: right;
	margin-right: 100px;
	position: static;
	padding: 6px;
}

.status-success {
	background-color: lightgreen;
	color: black;
}

.status-fail {
	background-color: red;
	color: white;
}

#ppg-display {
	float: right;
	margin-right: 100px;
	position: static;
	padding: 6px;
	background-color: #f9fafb;
}

.ppg-outer {
	list-style: none;
    float: right;
    margin: 0;
    padding: 0
}

.ppg-outer ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px
}

#ppgtable tr:hover {
	background-color: #62bbe8; 
}

.container {
	float: left;
	width: 100%;
}

#account {
	font-weight: bold;
	line-height: 25px;
}

tr.selected td {
	background-color: #DEEDF7;
}

#version {
	float: right;
	color: #f2f5f7;
	font-style: italic;
	font-size: .8em;
	
}

tr.proc td {
	background-color: gray;
}

/* login form */
.ui-dialog .ui-state-error { padding: .3em; }
fieldset { padding:0; border:0; margin-top:25px; }
.validateTips { border: 1px solid transparent; padding: 0.3em; }

/* validation */
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }

/* sorted table */
table.tablesorter thead tr .header {
	background-image: url(images/bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
	padding-right: 20px;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url(images/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(images/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
	background-color: #5c9ccc;
}

/* http://atomicrobotdesign.com/blog/htmlcss/an-animated-expanding-search-input-is-easy-with-the-css-focus-pseudo-class/ */
.stretch {
	width: 75px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.stretch:focus {
	width: 200px;
}