/* forms */

form {
	xdisplay: inline-block;
	padding: 0;
}

div.filter {
	margin-bottom: 1em;
}

div.filter select {
	width: auto;
}

input::-moz-focus-inner, button::-moz-focus-inner /*Remove button padding in FF*/ { 
  border: 0;
  padding: 0;
}

input, select, button, textarea, .button {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border-width: 1px;
	margin: 0;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 100%;
	vertical-align: top;
	width: 100%;
}

.button, .minbutton, .disabled, .mindisabled {
	background-color: #00d2fd;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	padding: 0.2em 0.5em;
	text-align: center;
}

.button:hover, .minbutton:hover {
	background-color: #5de2ff;
}

.button:active, .minbutton:active  {
	background: #6ef0ff;
}

.minbutton, .mindisabled {
	width: auto;
	font-size: 80%;
	padding: 2px 5px;
	margin: 0 0.1em;
}

.disabled, .disabled:hover, .mindisabled, .mindisabled:hover {
	background: #6F6F6F;
	cursor: default;
}

a.button, a.minbutton {
	display: inline-block;
	vertical-align: top;
}

a.button:visited, a.minbutton:visited {
	color: #ffffff;
}

div.pass {
	display: inline-block;
	position: relative;
}

textarea {
	height: 6em;
}

input[type='checkbox'], input.check {
	width: auto;
	vertical-align: middle;
}

.redbutton {
	background-color: #ff2d2d;
	border: none;
}

.redbutton:hover {
	background-color: #ff2d2d;
}

.redbutton:active  {
	background: #ff8746;
}


/* messages */

div.errors {
	border: 1px solid #FF0000;
	color: #FF0000;
}

div.warnings {
	border: 1px solid #AFAF00;
	color: #AFAF00;
}

div.messages {
	border: 1px solid #00AF00;
	color: #00AF00;
}

div.errors ul, div.warnings ul, div.messages ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* general */

a {
	display: inline;
	cursor: pointer;
	color: #008eb2;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

a:visited {
	color: #2187d2;
}

img {
	vertical-align: middle;
	border: none;
}

.small {
	font-size: 70%;
	line-height: 1.5em;
}

table{
	border-collapse:collapse;
	margin: 0 auto;
}

td, th {
	padding: 0.3em 0.6em;
}

span.req {
	display: inline-block;
	color: #FF0000;
}

span.reqnote {
	color: #FF0000;
	width: 210px;
	font-size: 80%;
	margin: 0 0 0.5em 0;
}

ul {
	margin: 0;
	padding-left: 1.5em;
}

.ib {
	display: inline-block;
	vertical-align: middle;
	margin-top: 30px;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.tr {
	position: absolute;
	top: 0;
	right: 0;
}

.empad {
	padding: 1em;
}

.tm {
	margin: 30px;
}


.hidden {
	display: none;
}

.center {
	position: relative;
	text-align: center;
	clear: both;
}

.right {
	text-align: right;
	width: 100%;
}

.hidehack {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
}

br {
	xclear: both;
}

.block {
	display: block;
}

.nw {
	white-space : nowrap;
}

.cl {
	clear: both;
}

.bspace {
	margin-bottom: 2em;
}

/* user info */

img.userpic {
	margin-bottom: 0.5em;
	max-width: 100%;
}

/* Modal */

div.modalback {
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 999;
	background-color: rgba(99,99,99,0.6);
	overflow: auto;
	padding: 1em;
}

div.modal {
	display: inline-block;
	margin: 10% auto 1em auto;
	border: 1px solid #4d4d4d;
	background-color: #ffffff;
	padding: 0px 2em 2em 2em;
	border-radius: 0.3em;
}

div.modal div.section {
	background-color: #ffffff;
	padding: 0px;
}

div.modal div.section label {
	width: 9em;
}

.waitCursor {
	cursor: wait !important;
}

ol {
	counter-reset: ilist;
	margin-left: 0px;
	padding-left: 0px;
}

ol li {
	position: relative;
	margin: 0px 0px 1em 2em;
	list-style: none;
}

ol li:before {
	font-weight: bold;
	content: counter(ilist) "/";
	counter-increment: ilist;
	position: absolute;
	left: -2em;
}

.indagree {
	text-align: left;
}

.indagree label {
	font-weight: bold;
}

.indagree a {
	font-weight: bold;
}

.wauto {
	width: auto;
}

.textpage {
	text-align: left;
}