body { font-family: "Gotham", sans-serif; font-size:16px; color:#000000; /*background-color:#42A0FF;*/ margin:0; padding:0; width:100%; height:100%; }

ul { list-style-type:none; padding:0; margin:0; }
/*li { float:left; overflow:hidden; }*/

.container {
	position: relative;
	min-height: 100%;
	margin:0 0 0 0;
}

.clearfix:after { /* Fix */
	visibility: hidden;
	display: block;
	font-size: 0px;
	content: ".";
	clear: both;
	height: 0px;
}

.frame {
	width:100%;
	padding: 0px 0 15px 0;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

.main { margin:20px 0 0 20px; }
.main #title { float:left; margin: 0 0 10px 10px; font-size:24px; color:#FFFFFF; }
.main #error { clear:both; color:#FFFF00; height:14px; padding:4px 2px 6px 2px; margin }

/* Button Bar */
.buttonbar li {
	margin:0 0 20px 20px; color:#F5F5F5; line-height:30px;
	cursor:pointer;

	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	user-select:none;

	transition: color 0.4s linear;
	-moz-transition: color 0.4s linear; /* Firefox 4 */
	-webkit-transition: color 0.4s linear; /* Safari and Chrome */
	-o-transition: color 0.4s linear; /* Opera */
}

.buttonbar li:hover {
	color:#FFFFAE;
}

.buttonbar li img { margin-right:5px; height:15px; }

/* End Button Bar */


/* Form */
/*.forminput { position:relative; font-size:18px; margin-bottom:10px; }
.forminput input[type="text"], input[type="password"] { font-size:18px; }
.forminput label {
	position:absolute;
	top:11px;
	left:9px;
	color: #777777;

	transition: color 0.200s ease-in-out;
	-moz-transition: color 0.200s ease-in-out;
	-webkit-transition: color 0.200s ease-in-out;
	-o-transition: color 0.200s ease-in-out;
}
.forminput.focus label { color:#CCCCCC; }
.forminput.populated label { display: none; }

input, select {
	outline: 0;
	border-style:none;
	border:2px solid #2B95FF;
}

input[type="text"], input[type="password"], select  {
	width:400px;
	margin:0 5px 10px 0;
	padding:10px 8px 10px 8px;

	box-sizing: border-box;

	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
input.errorvalidate {border-color: #FF0000; }

input[type=button], input[type=reset] {
	margin: 1em 1.5em 1.2em 0;
	padding: 0 2em 0 2em;

	height: 3em;

	font-size: 18px;
	line-height: 29px;
	vertical-align: bottom;

	border: 1px solid #BFBFBF;
	color: #fff;
	text-shadow: 0 1px rgba(0,0,0,0.1);
	background-color: #2B95FF;

	display: inline-block;

	text-align: center;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: all 0.218s;
	transition: all 0.218s;
	-moz-transition: all 0.218s;
	-ms-transition: all 0.218s;
	-o-transition: all 0.218s;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: default;
	-webkit-appearance: push-button;
}
*/
/* End Form */


/* Location Items - Account */
.locationitems { background-color:#F5F5F5; min-width:700px; }
.locationitems li { float:none; }
.locationitems .listgroup { margin-top:20px; padding-left:5px; background-color:#007AF4; color:#F5F5F5; line-height:40px; }
.locationitems .listgroup:first-child { margin-top:0; }

.locationitems .subitems { margin-left:20px; font-size:14px; line-height:30px; }
.locationitems .subitems span { float:left; white-space:nowrap; overflow:hidden; padding-left:5px; }
.locationitems .subitems span:nth-child(1) { width:140px; }	/* Column 1 */
.locationitems .subitems span:nth-child(2) { width:280px; }	/* Column 2 */

.locationitems .subitems:hover { color: #007AF4; } /* Creates a hover for the entire row. */

.itembuttons {
	padding:0 5px 0 5px;
	margin:4px 5px 0 0;
	line-height:20px;
	font-size:11px;
	border:1px solid #000000;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;

	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	user-select:none;

	cursor:pointer;
}

.itembuttons:hover {
	border-color: #007AF4;
	color: #007AF4;
}

.itembuttons:active {
	-moz-box-shadow:0px 1px 5px #999999;
	-webkit-box-shadow:0px 1px 5px #999999;
	box-shadow:0px 1px 5px #999999;
}

.locationitems .disable:hover { color:#CECECE; border-color:#CECECE; cursor:default; } /* Disable */
.locationitems .disable:active {  /* Disable */
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
}
.locationitems .disable { color:#CECECE; border-color:#CECECE; cursor:default; } /* Disable */
/* background-color:#FFF123; */

/* End Location Items - Account */


/* Edit Popup */
.editpopup {
	position:absolute;
	top:100px; left:-250px;
	width:500px;
	height:auto;
	margin:0 50% 0 50%;
	background-color:#FFFFFF;
	border:1px solid #000000;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

.editpopup .forminput { margin-left:50px; }
.editpopup .buttons { min-height:30px; margin:0 0 30px 50px; }
.editpopup .buttons span {
	float:left;
	padding:7px 5px 7px 5px;
	width:60px;
	margin:4px 5px 0 0;	/* testing */
	border:1px solid #000000;
	cursor:pointer;
	text-align:center;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;

	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-o-user-select:none;
	user-select:none;
}
.editpopup .buttons span:first-child { margin-right:20px; }
.background  { position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,.6); }
.editpopup .titlebar { height:20px; width:100%; background-color:#007AF4; margin-bottom:30px; }
.editpopup .label { font-size:14px; }


.editpopup .popupmsg { margin:0 50px 20px 50px; }
.editpopup .popuperror { margin:0 50px 20px 50px; color:#A80000;  }


/* Dropdown */
#cbolocation {
	cursor:pointer;
	font-size:18px;
	background-color:#FFFFFF;
 	-webkit-transition: border 0.3s ease-out, -webkit-box-shadow 0.3s ease-out; transition: border 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}





/* End Dropdown */


/* End Edit Popup */
.hide  { display:none; }



