﻿body
{
	margin: 0;
	padding: 0;
	background-color: #F4F4F4;
	font-family: calibri;
	font-size: 15px;
}
.TopBlock
{
	width:98%;
	float:left;
	padding:3px 0 5px 10px;
}

.LogutBox
{
    width:340px;
    float: right;
    padding: 5px 0px 0 0px;
    font-family: calibri;
    font-size: 15px;
    
}

.SwitchBox
{
    float: left;
    padding: 20px 20px 0 25%;
}

.LogoText
{
	font-family: 'Cabin', sans-serif;
	font-size:20px;
	color: #000000;
	font-weight: 700;
}
.Logo
{
	font-family: 'Philosopher', sans-serif;
	font-size: 26px;
	color: #008BCE;
	float: left;
	padding: 21px 0 0 5px;
	font-weight: 700;
	text-transform: uppercase;
}
.LogoImg
{
	
	float: left;
}

.DateTime
{
	height: 20px;
	font-size: 15px;
}

.alertClose
{
	float:right;
}
.alertClose i
{
	color: #B32222;
}
.alertIcon
{
	color: #B32222;
}
.alertSuccess
{
	padding: 9px 7px;
	border: 1px solid #C1DDAA;
	width: 95%;
	color: #3c763d;
	background-color: #dff0d8;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	font-family: calibri;
	font-size: 16px;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	
	-webkit-animation-name: alertSlide; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
	animation-name: alertSlide;
	animation-duration: 2s;
	
}

.alertError
{
	padding: 9px 7px;
	border: 1px solid #B07D7E;
	width: 95%;
	background-color: #DEC9CA;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	font-family: calibri;
	font-size: 16px;
	color: #8C2F31;
		-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	
	-webkit-animation-name: alertSlide; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
	animation-name: alertSlide;
	animation-duration: 2s;
}


/* Chrome, Safari, Opera */
@-webkit-keyframes alertSlide {
    0%   {opacity: 0;}
  
    100% {opacity: 1;}
}

/* Standard syntax */
@keyframes alertSlide {
    0%   {opacity: 0;}
  
    100% {opacity: 1;}
}



.FindBox
{
	position: absolute;
	padding: 9px 7px;
	border: 3px solid #666666;
	width: 320px;
	height: 100px;
	color: #000000;
	background-color: #FFFFFF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	font-family: calibri;
	font-size: 16px;
	-webkit-animation-name: FindBoxSlide; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
	animation-name: FindBoxSlide;
	animation-duration: 1s;
	right:0; top:70%;
	
	-webkit-animation-timing-function: ease;
}
@-webkit-keyframes FindBoxSlide {
      0% {right:0px; opacity: 0;}

    100% { right:0px; opacity: 1;}
}

/* Standard syntax */
@keyframes FindBoxSlide {
     0% {right:0px; opacity: 0;}

    100% { right:0px; opacity: 1;}
}

.Menu ul
{
	text-align: left;
	display: inline;
	width: 100%;
	float: left;
	background-color: #008BCE;
	padding: 0;
	margin: 0;
	list-style: none;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.Menu ul li {
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.Menu ul li a
{
	font-family: Calibri;
	font-size: 16px;
	color: #FFFFFF;
	text-decoration: none;
}

.Menu ul li:hover {
  background: #555;
  color: #fff;
}
.Menu ul li ul {
  padding: 0;
  position: absolute;
  top: 38px;
  left: 0;
  width: 200px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
  z-index:5000;
}
.Menu ul li ul li { 
  background: #555; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
}
.Menu ul li ul li:hover { background: #666; }
.Menu ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}


.Menu ul li ul li ul {
  padding: 0;
  position: absolute;
  top: 0px;
  left: 200px;
  width: 200px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden !important;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
  z-index:5000;
}
.Menu ul li ul li ul li { 
  background: #555; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
}
.Menu ul li ul li ul li:hover { background: #666; }
.Menu ul li ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible !important;
}

.Footer
{
	margin: 20px 0 0 0;
	width: 99%;
	padding: 7px 0px 7px 10px;
	height: 30px;
	float: left;
	background-color: #008BCE;
	
}
.Footer .Copiright
{
	padding:5px 0 0 0;
	float: left;
	font-family: 'Hind', sans-serif;
	font-size: 14px;
	color: #FFFFFF;
}
.Footer .Xxat
{
	padding: 7px 10px 0 0;
	float: right;
	font-family: calibri;
	font-size: 16px;
	color: #FFFFFF;
}
.Footer .Xxat a
{
	font-family: calibri;
	font-size: 16px;
	color: #FF6600;
	text-decoration: none;
}
.Container
{
	padding:5px 0px 10px 10px;
	width:98%;
	float:left;
}
.Box1
{
	margin: 7px 0 0px 0px;
	padding: 7px 7px 7px 7px;
	width: 99.5%;
	float: left;
	background-color: rgba(0, 0, 0, 0.9);
	background-color: #C3C3C3;
	-webkit-box-shadow: 0 0 7px 0 rgba(188,188,188,.91);
	box-shadow: 0 0 7px 0 rgba(188,188,188,.91);
}
.Box11
{
	padding: 10px;
	width: 90%;
	margin:auto;
}
.Box2
{
width: 100%;
	float: left;
	background-color: #FFFFFF;
}

.Box3
{
	width: 98%;
	padding: 10px 10px 0px 10px;
	margin:0 0 10px 0;
	float: left;
	font-family: 'Hind', sans-serif;
	font-size: 14px;
}
.LeftBlock
{
	padding:0px 0px 10px 10px;
	width:20%;
	float:left;
}
.RightBlock
{
	padding:0px 0px 10px 0px;
	width:75%;
	float:left;
}
.BookingBox
{
	padding: 10px;
	width: 90%;
	float: left;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background-color: #C0C0C0;
}
.Heading
{
	/*font-family: calibri;
	font-size: 22px;
	color: #0080C0;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	padding: 0 0 10px 0;
	float: left;
	width: 100%;
	text-transform: uppercase;*/
	
	font-family: 'Marmelad', sans-serif;
	font-size: 20px;
	color: #0080C0;
	padding: 10px 0 5px 5px;
	float: left;
	width: 99.6%;
	text-transform: uppercase;
}

.CountBox
{
	border: 1px solid #E6E6E6;
	float: left;
	padding: 0 0 0 0;
	margin:0 30px 10px 0;
	width: 150px;
	font-family: 'Marmelad', sans-serif;
}
.CountBox .TextCount
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	font-size: 20px;
	color: #0080C0;
}
.CountBox .Colour1
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	background-color: #6ccac9;
	color: #FFFFFF;
	font-size:19px;
}
.CountBox .Colour2
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	background-color: #ff6c60;
	color: #FFFFFF;
	font-size:19px;
}

.CountBox .Colour3
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	background-color: #99c262;
	color: #FFFFFF;
	font-size:19px;
}
.CountBox .Colour4
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	background-color: #57c8f2;
	color: #FFFFFF;
	font-size:19px;
}

.CountBox .Colour5
{
	float: left;
	padding: 15px 0 15px 0;
	text-align: center;
	width: 100%;
	background-color: #f8a326;
	color: #FFFFFF;
	font-size:19px;
}

/*================================== Popup CSS ======================================== */
.PopupTop
{
	float: left;
	width: 99%;
	background-color: #E6E6E6;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #BBBBBB;
	padding:5px 0 0 5px;
	margin:0 0 15px 0;
	border-radius: 8px 8px 0px 0px;
-moz-border-radius: 8px 8px 0px 0px;
-webkit-border-radius: 8px 8px 0px 0px;
}
 

.PopupFooter
{
	float: left;
	text-align:right;
	width: 98%;
	background-color: #F3F3F3;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #BBBBBB;
	padding: 10px 5px 10px 5px;
	margin: 0px 0 0px 0;
	border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
}

.PopupBody
{
	margin:5px 5px 0 5px; 
	padding:0 0 20px 0;
}
.popup
{
	/*border-style: solid;
	border-width: 25px 5px 5px 5px;
	border-color: #0083c1;*/
border-radius: 8px 8px 0px 0px;
-moz-border-radius: 8px 8px 0px 0px;
-webkit-border-radius: 8px 8px 0px 0px;
	background-color: #fff;
		-webkit-animation-duration: 0.40s;
  animation-duration: 0.40s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: PopUpAnimation;
  animation-name: PopUpAnimation;

}

.popup h2
{
	font-weight: normal;
	font-family: 'Marmelad' , sans-serif;
	font-size: 18px;
	color: #3E3E3E;
	padding: 3px 0 10px 5px;
	margin: 0 0 0 0;
	float: left;
	width: 99.6%;
	text-transform: uppercase;
}

.popup .Popupbtn
{
	border-style: none;
	background-color: #85AD32;
	color: #FFFFFF;
	font-family: calibri;
	font-size: 16px;
	text-decoration: none;
	padding: 7px 20px 7px 20px; /*margin:10px 0 0 0;*/
	cursor: pointer;
	border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
	
	webkit-transition: all 700ms ease-in-out;
	-moz-transition: all 700ms ease-in-out;
	-o-transition: all 700ms ease-in-out;
	-ms-transition: all 700ms ease-in-out;
	transition: all 700ms ease-in-out;
}

.popup .Popupbtn:focus
{
	background-color: #C93F3F;
	    box-shadow: 0 0 7px #515151;
}

@-webkit-keyframes PopUpAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes PopUpAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    transform: translateY(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}


.btnDisplay
{
	display:none;
}
.closepng
{
	position: relative;
	top: 22px;
	left: 5px;
	text-align: right;
	z-index:1000;
	 -webkit-animation-duration: 0.40s;
  animation-duration: 0.40s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: PopUpAnimation;
  animation-name: PopUpAnimation;
}


/*=============================================================================== */

.Logoutbtn
{
	border-style: none;
	background-color: #85AD32;
	color: #FFFFFF;
	font-family: calibri;
	font-size: 16px;
	text-decoration: none;
	padding: 7px 21px 7px 21px;
	cursor: pointer;
	webkit-transition: all 700ms ease-in-out ;
    -moz-transition: all 700ms ease-in-out ;
    -o-transition: all 700ms ease-in-out ;
    -ms-transition: all 700ms ease-in-out ;
    transition: all 700ms ease-in-out ;
    
}
.Logoutbtn:hover
{
	background-color: #C93F3F;
	    box-shadow: 0 0 7px #515151;
}
.Logoutbtn i
{
	color: #FFFFFF;
	font-size: 16px;
}

.Orangebtn
{
	border-style: none;
	background-color: #85AD32;
	color: #FFFFFF;
	font-family: calibri;
	font-size: 16px;
	text-decoration: none;
	padding: 9px 25px 9px 25px; /*margin:10px 0 0 0;*/
	cursor: pointer;
	webkit-transition: all 700ms ease-in-out;
	-moz-transition: all 700ms ease-in-out;
	-o-transition: all 700ms ease-in-out;
	-ms-transition: all 700ms ease-in-out;
	transition: all 700ms ease-in-out;
}

.Orangebtn:focus
{
	background-color: #C93F3F;
	    box-shadow: 0 0 7px #515151;
}
.Orangebtn:hover
{
	background-color: #C93F3F;
	box-shadow: 0 0 7px #515151;
}


.Smallbtn
{
	border-style: none;
	background-color: #ff6c60;
	color: #FFFFFF;
	font-family: calibri;
	font-size: 14px;
	text-decoration: none;
	padding: 3px 3px 3px 3px; /*margin:10px 0 0 0;*/
	cursor: pointer;
	webkit-transition: all 700ms ease-in-out;
	-moz-transition: all 700ms ease-in-out;
	-o-transition: all 700ms ease-in-out;
	-ms-transition: all 700ms ease-in-out;
	transition: all 700ms ease-in-out;
    border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
}

.Smallbtn:focus
{
	background-color: #C93F3F;
	    box-shadow: 0 0 7px #515151;
}
.Smallbtn:hover
{
	background-color: #C93F3F;
	box-shadow: 0 0 7px #515151;
}

.Redbtn
{
	border-style: none;
	background-color: #85AD32;
	color: #FFFFFF;
	font-family: calibri;
	font-size: 16px;
	text-decoration: none;
	padding: 9px 20px 9px 20px; /*margin:10px 0 0 0;*/
	cursor: pointer;
	webkit-transition: all 700ms ease-in-out;
	-moz-transition: all 700ms ease-in-out;
	-o-transition: all 700ms ease-in-out;
	-ms-transition: all 700ms ease-in-out;
	transition: all 700ms ease-in-out;
}

.Redbtn:focus
{
	background-color: #C93F3F;
	    box-shadow: 0 0 7px #515151;
}
.Redbtn:hover
{
	background-color: #C93F3F;
	box-shadow: 0 0 7px #515151;
}


.TableBorder
{
	border: 1px solid #D7D7D7;
	background-color: #fff;
	margin: 15px 0 10px 0;
	color: #000000;
	padding:10px 5px 10px 0 !Important;

	text-align: left;
	
	text-transform: uppercase;
}  

.TableBox
{
	border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
-webkit-box-shadow: 2px 2px 18px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 18px -4px rgba(0,0,0,0.75);
box-shadow: 2px 2px 18px -4px rgba(0,0,0,0.75);

	
	background-color: #fff;
	margin: 0px 0 15px 0;
	color: #000000;
	padding: 10px 5px 10px 0 !important;
	text-align: left;
	text-transform: uppercase;
}  
table.TableList
{
	background-color: #fff;
	margin: 5px 0 0px 0;
	color: #000000;
	font-family: Verdana;
	font-size: 11px;
	text-align: left;
	border-collapse: collapse;
	width: 99%;
	text-transform: uppercase;
}  
table.TableList td
{
	padding: 2px;
	border: 1px solid #D3D3D3;
	height: 30px;
}  
  
table.TableList tr.a td
{
	border: 1px solid #E2E2E2;
	background-color: #F2F2F2;
	height: 30px;
} 

table.TableList tr:hover
{
	background-color: #DDEEFF;
} 
table.TableList tr.a td:hover
{
	background-color: #DDEEFF;
} 
table.TableList th
{
	background-position: top;
	padding: 10px 2px;
	
	color: #FFFFFF;
	background: #008FD5;
	font-family: Verdana;
	font-size: 11px;
}    

table.TableList td a 
{
	border: 1px solid #EFEFEF;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #77a30f;
	padding: 4px 7px;
	font-weight: 700;
	cursor:pointer;
}  


table.BuiltyStatus
{
	background-color: #fff;
	margin: 5px 0 0px 0;
	color: #000000;
	font-family: Calibri;
	font-size: 14px;
	text-align: left;
	border-collapse: collapse;
	width: 100%;
	text-transform: uppercase;
}  
table.BuiltyStatus td
{
	padding: 1px;
	border: 1px solid #D3D3D3;
	height: 30px;
}  
  table.BuiltyStatus th
{
	background-position: top;
	padding: 10px 2px;
	font-weight:500;
	color: #FFFFFF;
	background: #008FD5 url(../images/grd_head.png) repeat-x top;
	font-family: Verdana;
	font-size: 12px;
}   
table.BuiltyStatus tr.a td
{
	border: 1px solid #E2E2E2;
	background-color: #F2F2F2;
	height: 30px;
} 

table.BuiltyStatus td i
{
	font-size: 20px;
	color: #CC0000;
}  
table.BuiltyStatus tr:hover
{
	background-color: #DDEEFF;
} 
table.BuiltyStatus tr.a td:hover
{
	background-color: #DDEEFF;
} 



table.GoodsTable
{
	background-color: #fff;
	margin:5px 0 15px 0;
	padding:3px 3px 3px 3px;
	color: #000000;
	font-family: Verdana;
	font-size: 11px;
	text-align: left;
	border-collapse: collapse;
	width: 99%;
	
}  
table.GoodsTable td
{
	padding: 2px;
	border: 1px solid #E6E6E6;
	height: 30px;
}  
table.GoodsTable th
{
	font-family: Calibri;
	font-size: 15px;
	font-weight:normal;
	padding:3px 3px 3px 3px;
}    

table.GoodsTable td a
{
	border: 1px solid #EFEFEF;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #009FEC;
	padding: 4px 7px;
	font-weight: 700;
	cursor: pointer;
}  


table.ReportTable
{
	background-color: #fff;
	margin: 5px 0 0px 0;
	color: #000000;
	font-family: Calibri;
	font-size: 14px;
	text-align: left;
	border-collapse: collapse;
	width: 99%;
	text-transform: capitalize;
}  
table.ReportTable td
{
	padding: 2px;
	border: 1px solid #D3D3D3;
	height: 30px;
}  
  
table.ReportTable tr.a td
{
	border: 1px solid #E2E2E2;
	background-color: #F2F2F2;
	height: 30px;
} 

table.ReportTable tr:hover
{
	background-color: #DDEEFF;
} 
table.TableList tr.a td:hover
{
	background-color: #DDEEFF;
} 
table.ReportTable th
{
	background-position: top;
	padding: 10px 2px;
	font-weight: 400;
	color: #FFFFFF;
	background: #008FD5 url(../images/grd_head.png) repeat-x top;
	font-size: 15px;
}    

table.ReportTable td a
{
	text-decoration: underline;
	color: #047EAC;
	padding: 4px 7px;
	font-weight: 700;
	cursor: pointer;
	font-size:15px;
}  
table.ReportTable td a:hover
{
	 border-style: solid;
	border-width: 1px;
	text-decoration: none;
}  
table.ReportTable td a:focus
{
	border-style: solid;
	border-width: 1px;
}  



table.PrintTable
{
	background-color: #fff;
	margin: 0px 0 0px 0;
	color: #1B1B1B;
	font-family: Verdana;
	font-size: 9px;
	text-align: left;
	border-collapse: collapse;
	width: 100%;
	text-transform: uppercase;
}  
table.PrintTable td
{
	padding: 0px 2px 0 3px;
	line-height:22px;
	
	}  
	
table.PrintTable tr.a td
{
	border: 1px solid #888888;
	background-color: #F2F2F2;
	height: 17px;
	
} 

table.PrintTable tr:hover
{
	background-color: #DDEEFF;
} 
table.PrintTable tr.a td:hover
{
	background-color: #DDEEFF;
} 
table.PrintTable th
{border: 1px solid #888888;
	background-position: top;
	padding: 4px 2px;
	color: #000000;
	background: repeat-x top;
	font-family: Verdana;
	font-size: 9px;
}    

.SearchForm
{
	border: 2px solid #666666;
	padding: 7px 0 7px 0;
	margin: 0 0 20px 0;
	color: #121212;
	font-family: calibri;
	font-size: 15px;
	border-collapse: collapse;
	width: 100%;
	moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}  

.BookingStatus
{
	background-color: #fff;
	margin: 0px 0 0px 0;
	color: #121212;
	font-family: calibri;
	font-size: 15px;
	text-align: left;
	border-collapse: collapse;
	width: 100%;
}  
.BookingStatus td
{
	border: 1px solid #CCCCCC;
	padding: 0px 0 0 5px;
	line-height: 30px;
} 
	
.TableRowBorder
{
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #333333;
} 

table.PrintLoadinTable
{
	background-color: #fff;
	margin: 0px 0 0px 0;
	color: #1B1B1B;
	font-family: Verdana;
	font-size: 9px;
	text-align: left;
	border-collapse: collapse;
	width: 100%;
	text-transform: uppercase;
}  
table.PrintLoadinTable td
{
	padding: 2px;
	border: 1px solid #888888;
	height: 17px;
}  
  
table.PrintLoadinTable tr.a td
{
	border: 1px solid #888888;
	background-color: #F2F2F2;
	height: 17px;
} 

table.PrintLoadinTable tr:hover
{
	background-color: #DDEEFF;
} 
table.PrintTable tr.a td:hover
{
	background-color: #DDEEFF;
} 
table.PrintLoadinTable th
{border: 1px solid #888888;
	background-position: top;
	padding: 4px 2px;
	color: #000000;
	background: repeat-x top;
	font-family: Verdana;
	font-size: 9px;
}    




table.GoodsTable td a 
{
	border: 1px solid #EFEFEF;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #77a30f;
	padding: 4px 7px;
	cursor:pointer;
}  
 .AutoExtenderHighlight
        {
            color: White;
            background-color: #006699;
            cursor: pointer;
        }
        
 .EqptAutoComplete
{
	font-family: Verdana, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: normal;
	border: solid 1px #006699;
	line-height: 20px;
	padding: 10px 10px 10px 10px;
	background-color: #FFFFFF;
	text-transform: uppercase;
    }
        .EqptAutoCompleteList
{
	border-bottom: dotted 1px #006699;
	cursor: pointer;
	color: Maroon;
	list-style-type: none;
	padding: 0;
	margin: 0;
	background-color: #FFFFFF;
	
}
.EqptAutoCompleteHighlight
{
    color: White;
    background-color: #006699;
    cursor: pointer;
}
 #divwidth
{
  width: 200px !important;    
}
#divwidth div
{
 width: 200px !important;   
}

.ChallanTable
{
	border-collapse: collapse;
	border: 2px solid #333333;
	
}
.ChallanTable td
{
	padding: 10px 0 0 10px;
}

.TextBoxStyle
{
	text-transform: uppercase;
}
.list_border
{
	padding:0 10px 0 10px;
}
.Newlinkbtn
{
border: 1px solid #EFEFEF;
	text-decoration: none;
	color: #FFFFFF;
	background-color: #77a30f;
	padding: 4px 7px;
	font-weight: 700;
	cursor:pointer;
}

 
h1
{
	
	font-weight: normal;
	font-family: 'Marmelad', sans-serif;
	font-size: 22px;
	color: #0080C0;
	padding: 3px 0 1px 5px;
	margin:0 0 0 0;
	float: left;
	width: 99.6%;
	text-transform: uppercase;
}
h2
{
	
	font-weight: normal;
	font-family: 'Marmelad', sans-serif;
	font-size: 18px;
	color: #0080C0;
	padding: 3px 0 10px 5px;
	margin:0 0 0 0;
	float: left;
	width: 99.6%;
	text-transform: uppercase;
}

h3
{
	font-weight: normal;
	font-family: 'Marmelad' , sans-serif;
	font-size: 14px;
	color: #800000;
	padding: 0px 0 4px 0px;
	margin: 0 0 0 0;
	float: left;
	text-transform: uppercase;
}
.BoxInnerProgress
{
	border: 6px solid #CFCFCF;
	float: left;
	width: 180px;
	padding: 7px 0 0 20px;
	height: 45px;
	background-color: #FFFFFF;
	color: #FF4233;
	font-family: 'Marmelad', sans-serif;
	font-size: 18px;
	-webkit-box-shadow: 1px 0px 14px 0px rgba(47, 50, 50, 0.65);
	-moz-box-shadow: 1px 0px 14px 0px rgba(47, 50, 50, 0.65);
	box-shadow: 1px 0px 14px 0px rgba(47, 50, 50, 0.65);
}
.BoxInnerProgress img
{
	width:43px !important; float:left !important;
}
.BoxOutterProgress
{
	 z-index: 1000000 !important;
	width: 150px;
	left: 50%;
	top: 40%;
	margin-left: -70px;
	position: fixed;
	font-family: calibri;
	font-size: 20px;
}
.TransparentGrayBackground
{
position: fixed;
	top: 0;
	left: 0;
	background-color: #000000;
	filter: alpha(opacity=70);
	opacity: 0.7;
	height: 100%;
	width: 100%;
	min-height: 100%;
	min-width: 100%;
	 z-index:1000;
}

 .AutoExtenderloading
{
    background-image: url(../Images/ajax-loader.gif);
    background-position: right;
    background-repeat: no-repeat;
} 
.AutoExtender
{
	font-family: Calibri;
	font-size: 14px;
	font-weight: normal;
	border: solid 1px #006699;
	line-height: 20px;
	padding: 10px 10px 10px 10px;
	background-color: #FFFFFF;
	text-transform: uppercase;
	margin:0px 0 0 0;

max-height:250px !Important;
	overflow:scroll;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;

	-webkit-animation-name: AutoComplete; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
	animation-name: AutoComplete;
	animation-duration: 1s;

	
	-webkit-animation-timing-function: ease;
}
@-webkit-keyframes AutoComplete {
      0% {right:0px; opacity: 0;}

    100% { right:0px; opacity: 1;}
}

/* Standard syntax */
@keyframes AutoComplete {
     0% {right:0px; opacity: 0;}

    100% { right:0px; opacity: 1;}
}
  
   
.AutoExtenderList
{
	border-bottom: dotted 1px #006699;
	cursor: pointer;
	color: Maroon;
	list-style-type: none;
	padding: 0;
	margin: 0;
	background-color: #FFFFFF;
	
	
}
.AutoExtenderHighlight
{
    color: White;
    background-color: #006699;
    cursor: pointer;
}

 #divwidth
{
  width: 200px !important;    
}
#divwidth div
{
 width: 200px !important;   
}
.LoadingPrintDivider
{
	width:100%;
	float:left;
}

.Error
{
	border: 1px solid #CC0000 !Important;
	width: 200px;
	color: #000000;
	padding: 8px 0px 8px 4px;
	margin: 2px 1px 2px 0px;
	font-family: verdana;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
	background-color: #FFE8E8;
}
.Error:focus{
  box-shadow: 0 0 5px rgba(26, 137, 197, .5);
 padding: 8px 0px 8px 4px;
  border: 1px solid rgba(26, 137, 197, .7);
  background-color: #FFE8E8 ;
/*  
  box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5); 
-moz-box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5); 
-webkit-box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5);*/
}


input[type="text"]
{
	border: 1px solid #DDDDDD;
	
	width: 200px;
	color: #000000;
	padding: 8px 0px 8px 4px;
	margin: 2px 1px 2px 0px;
	font-family: verdana;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	
	-webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

input[type=text]:focus, textarea:focus, select:focus, input[type="password"]:focus {
  box-shadow: 0 0 5px rgba(26, 137, 197, .5);
 padding: 8px 0px 8px 4px;
  border: 1px solid rgba(26, 137, 197, .7);
/*  
  box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5); 
-moz-box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5); 
-webkit-box-shadow: inset 0 1px rgba(34, 25, 25, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(235, 82, 82, 0.5);*/
}

input[type="password"]
{
	border: 1px solid #DDDDDD;
	
	width: 200px;
	color: #000000;
	padding: 8px 0px 8px 4px;
	margin: 2px 1px 2px 0px;
	font-family: verdana;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
}
select
{
	
	 border: 1px solid #DDDDDD;
	width:200px;
	color: #000000;
	padding: 8px 0px 8px 4px;
	margin: 2px 1px 2px 0px;
	font-family: verdana;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	
	-webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
	
}
textarea 
{
	 border: 1px solid #DDDDDD;
	height: 30px;
	width:200px;
	color: #000000;
	padding: 8px 0px 8px 4px;
	margin: 2px 1px 2px 0px;
	font-family: verdana;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px 0px #EBEBEB;
	
	-webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

.PagerBoxOutter
{
	width:300px; margin:auto;
}
.PagerBox
{
	width:100%; padding:10px 0 10px 0; 
float:left; text-align:center;
}

.PagerBox .number
{
	background-position: center center;
	font-family: verdana;
	font-size: 11px;
	background-image: url('../Images/PagingNumber.png');
	background-repeat: no-repeat;
	padding: 6px;
	color: #FFFFFF;
	text-decoration: none;
}
.PagerBox .next
{
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    
    -moz-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3);
    -webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3);
    box-shadow:inset 1px 1px 0 rgba(255,255,255,0.3);
    
    cursor: pointer;
    display: inline-block;
    font: 12px/16px 'Lucida Grande', 'Lucida Sans Unicode', 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
    padding: 2px 5px;
    outline: none !important;
    text-align: center;
    text-decoration: none;
    position: relative;

    -moz-box-sizing: border-box !important;
    
   background: #0095cd;
    background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
    background: -moz-linear-gradient(top,  #00adee,  #0078a5);
    -pie-background: linear-gradient(top,  #00adee,  #0078a5);
    border: 1px solid #034462;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.25);
   
    
}
.PagerBox .previous
{
	font-family: verdana;
	font-size: 14px;
	background-image: url('../Image/PagingBtn.png');
	background-color: #92b318;
	background-repeat: no-repeat;
	width:66px; height:24px; border-style:none;
}

.validationError
{
	background-color: #FFC1C1;
	border: 1px solid #FF1717 !Important;
}





/*================= Pre Loader Style ===============*/


.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress
{
	background: #E75A05;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 3px;
}


.pace .pace-progress:after {
  display: block;
  position: absolute;
  top: 0;
  right: .5rem;
  content: attr(data-progress-text);
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1;
  text-align: right;
  color: rgba(0, 0, 0, 0.19999999999999996);
}


.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
  
}

.pace .pace-activity
{
	border-style: solid;
	border-width: 3px;
	border-color: #E75A05 transparent transparent #E75A05;
	display: block;
	position: fixed;
	z-index: 2000;
	top: 15px;
	right: 15px;
	width: 25px;
	height: 25px;
	border-radius: 25px;
	-webkit-animation: pace-spinner 400ms linear infinite;
	-moz-animation: pace-spinner 400ms linear infinite;
	-ms-animation: pace-spinner 400ms linear infinite;
	-o-animation: pace-spinner 400ms linear infinite;
	animation: pace-spinner 400ms linear infinite;
}



@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}



/*=================== Website Content ===========================*/

.MainPage
{
	float:left;
	padding:20px 0 0 0;
}
.MainPage h1
{
	font-weight: normal;
	font-family: 'Marmelad' , sans-serif;
	font-size: 22px;
	color: #0080C0;
	padding: 3px 0 1px 10px;
	margin:0 0 0 0;
	margin: 0 0 0 10px;
	float: left;
	width: 91.6%;
	text-transform: uppercase;
	border-left-style: solid;
	border-left-width: 5px;
}

.MainPage h2
{
	font-weight: normal;
	font-family: 'Marmelad' , sans-serif;
	font-size: 20px;
	color: #0080C0;
	padding:20px 0 0px 0px;
	margin:0 0 0 0; 
	text-transform: uppercase;
	 float:left;
}

.MainPage .MainContaint
{
	border: 1px solid #F7F7F7;
	float: left;
	padding: 15px;
	background-color: #FFFFFF;
	width: 91%;
	margin: 20px 0 0 20px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
-webkit-box-shadow: 1px 0px 10px 0px rgba(50, 50, 50, 0.25);
-moz-box-shadow:    1px 0px 10px 0px rgba(50, 50, 50, 0.25);
box-shadow:         1px 0px 10px 0px rgba(50, 50, 50, 0.25);
}

.MainPage p
{
	font-family: 'Ubuntu' , sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #303030;
	text-align: justify;
	
	
}
.MainPage img
{
	float:right;
	padding:15px 0 0 0;
	
}
.MainPage .imgContact
{
	float:right;
	padding:15px 0 0 0;
	
}
table.ContactList
{
	background-color: #fff;
	margin: 5px 0 0px 0;
	color: #000000;
	font-family: 'Ubuntu' , sans-serif;
	font-size: 16px;
	text-align: left;
	border-collapse: collapse;
	width: 98%; 
	 float:left;
}  
table.ContactList td
{
	padding: 2px;
	 
	height: 30px;
}  
  