.bg_gray{
    background:#EFEFEF;    
}
.lit-grey{
    background:#F9F9F9;    
}
.title{
    color: #999;
    background:#F0F8FF;
    font-size:20px;
}
.nav-justified {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.nav-justified > li > a {
    border-right: 1px solid #d5d5d5;
    border-left: 1px solid #fff;
}
.nav-justified > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    font-weight: bold;
    color: #777;
    text-align: center;
    background-color: #e5e5e5;
    background-image: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5));
    background-image: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%);
    background-image: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 );
    background-repeat: repeat-x;
    border-bottom: 1px solid #d5d5d5;
}
.nav-justified > .active > a, .nav-justified > .active > a:hover, .nav-justified > .active > a:focus {
    background-color: #ddd;
    background-image: none;
    box-shadow: inset 0 3px 7px rgba(0,0,0,.15);
    color:#000;
    border:0;
}
.form{
    border-radius: 6px;
    background-color: #eee;
    padding:10px;
}
.form .error, form .errorMessage{
    color:#a94442;
}
input.error{
    //display: block;
    width: 100%;
    height: 32px;
    padding: 3px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #F1DCDC;
    background-image: none;
    border: 1px solid #a94442;
    border-radius: 4px;
    -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,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
/*-------------------------------- GRID-VIEW ------------------------------------------*/
.grid-view{
	//margin-top:15px;
	//margin-bottom:15px;
	padding:0;
	box-shadow: 0 0 5px #ffffff;
	border-radius:5px 5px 0 0;
	border:2px solid #ffffff;
}
.grid-view .summary {
    margin:0;
    margin-bottom:10px;
    text-align:right;
    font-weight: bold;
    text-shadow: 0 0 2px #ffffff ;
    color:#000000;
    //background:#C1C1C1;    
    padding:5px;
    //border:2px solid #ffffff;
    //border-bottom:0px;
    //border-radius:5px 5px 0px 0px;
}
thead{
	background:#eeeeee;
}
.grid-view table.items{
	background: none repeat scroll 0% 0% white;
	border-collapse: collapse;
	width: 100%;
	border: 1px solid rgb(208, 227, 239);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.grid-view table.items th {
    color: white;
    text-shadow: 0 0 1px black, 0 0 1em #000000;
    background:#1818AA;
    background-image: -moz-linear-gradient(top, #1818AA 0%, #181860 100%);
    background-image: -webkit-gradient(linear,  top,  top, color-stop(0%,#1818AA),  color-stop(100% #181860));
    background-image: -webkit-linear-gradient(top, #1818AA 0%, #181860 100%);
    background-image: -o-linear-gradient(top, #1818AA 0%, #181860 100%);
    background-image: -ms-linear-gradient(top, #1818AA 0%, #181860 100%);
    background-image: linear-gradient(top, #1818AA 0% ,#181860 100%);
    text-align: center;
}
.grid-view table.items th a.desc {
    background: url("/css/admin/img/mini-icon/down.gif") no-repeat scroll right center transparent;
    padding-right: 10px;
}
.grid-view table.items th a.asc {
    background: url("/css/admin/img/mini-icon/up.gif") no-repeat scroll right center transparent;
    padding-right: 10px;
}
.grid-view table.items tr.odd {
    background: rgb(224, 224, 224);
}
.grid-view table.items tr.even {
    background:rgb(240, 240, 240);
}
.grid-view table.items th, .grid-view table.items td {
    font-size: 0.9em;
    border: 2px solid white;
    padding: 0.3em;
}
.grid-view table.items tr.filters{
  	background: url("/css/admin/img/head.png")repeat-x scroll center top transparent;
}
/*-------------------------------- GRID-VIEW  END ------------------------------------------*/
ul.pagination li.selected a{
    background: #428BCA;
    color:#ffffff;
    border:none;
}