.btn {
    display: inline-block;
    background: none repeat scroll 0 0 #7bcdff;
    border-radius: 4px;
    color: white;
    outline: medium none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn:hover, .btn:focus {
    background-color: #3b7b9e;
}
select,
input[type="text"],
textarea {
	display: block;
	padding: 5px 8px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 2px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s , -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s , box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s , box-shadow ease-in-out .15s;
	outline: none;
}
input[type="submit"] {
	border: 1px solid #fff;
	background-color: #4a8aae;
	color: #FFF;
	padding: 10px 18px;
	font-weight: 600;
	cursor: pointer;
}
table {
	border-spacing: 0!importnat;
}
.gridView td, th,
.gridView td:first-child, th:first-child {
	background-color: #4a8aae;
	color: #FFF;
}
.panel_cell_title {
	background-color: #3b7b9e;
	border: 0!important;
	color: #FFF;
}
.panel_cell_title a {
	color: #fff;
}
.panel_cell_title td,
.panel_cell_header th {
	padding: 4px;
}
#AppointmentScheduleUC_WeekCalendarGW {
	border: 0;
}
.panel_cell_header th {
	border-color: #4a8aae;
}
.panel_cell_par {
	background: #FFF;
	border: 1px solid #DDD;
	background: #EEE;
}
.panel_cell_par td {
	border: 1px solid #DDD;
}
.panel_cell_impar {
	background: #FFF;
	border: 1px solid #DDD;
}
.panel_cell_impar td {
	border: 1px solid #DDD;
}
.panel_cell_empty {
	border: 0;
	background: #EEE;
	border: 1px solid #DDD;
}

.details-wrapper
{
    background: #4a8aae;
}

/* Loader */
.loaderWrap
{
	border: 8px solid transparent;
	border-radius: 50%;
	border-top: 8px solid #2b96cc;
	border-bottom: 8px solid #2b96cc;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 30%;
	left: 50%;
	z-index: 99999;
	display: none;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}