body {
	background-color: #dddddd;
	-webkit-backface-visibility: hidden;
}

.dev-center {
	margin-left: auto;
    margin-right: auto;
}

.table-container {
	width: 810px;
	margin: 15px;
}

.table-container-small {
	margin: 15px;
}

#container {
	position: absolute;
    left: 25px;
    top: 75px;
	width: 840px;
}

#dialog-holder {
	position: absolute;
    left: 885px;
    top: 75px;
	width: 460px;
}

.custom-dropdown {
	width: 400px;
	text-align: left;
}

.custom-dropdown-span {
	margin-top: 8px;
	float: right;
}

.custom-dropdown-items {
	width: 400px;
}

#confirm-dialog {
	height: 400px;
	margin-top: -75px;
	background-color: #000;
	border-radius: 5px;
	color: white;
}

.scrollable-menu {
    height: auto;
    max-height: 600px;
    overflow-x: hidden;
}

#loading-icon {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1500;
	background: rgba(3,3,3,0.6);
	text-align: center;
	padding-top: 175px;
}

#notification {
	position: fixed;
	left: 0;
	right:0;
	top: 55;
	margin: 10px;
	margin-top: 55px;
	display: none;
}

.glyphicon {
	text-align: center;
}

.loader-animate {
	height: 100px;
	width: 100px;
    -animation: spin .9s infinite linear;
    -webkit-animation: spin2 .9s infinite linear;
}

.leftHalf{
	width: 710px; 
	float: left; 
	padding-right: 5px;
}

.rightHalf{ 
	width: 90px; 
	float: left; 
	padding-left: 5px;
}

.edituserbutton {
	float: right;
	margin-top: 24px;
	width: 80px;
}

table#t01 tr:nth-child(even) {
    background-color: #eee;
}
table#t01 tr:nth-child(odd) {
   background-color:#fff;
}



@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}