@charset "utf-8";
/* CSS Document */

body
{
	margin:0;
	padding:0;
	background:url(../images/body_bg.png) repeat;
}
.header
{
	width:100%;
	height:200px;
	background:url(../images/header_bg.png) repeat-x;	
	border-bottom:2px solid #fff;
	box-shadow: 0 0 10px rgba(255,255,255,1);
	-webkit-box-shadow:0 0 10px rgba(255,255,255,1);
	-webkit-user-select:auto;
	behavior: url(pie/PIE.htc);
}
.header_resize
{
	width:960px;/*70*/
	margin:0 auto;
	height:200px;
}
.logo
{
	width:35%;
	padding-top:15px;
	padding-bottom:15px;
	height:121px;
	cursor:pointer;
	behavior: url(pie/PIE.htc);
}
.clr
{
	padding:5px;
}


/*     ==========================  menu   ======================  */

/**
 *********************************************
 * Prototype of styles for horizontal CSS-menu
 * @data 30.06.2009
 *********************************************
 * (X)HTML-scheme:
 *  <div id="menu">
 *      <ul class="menu">
 *          <li><a href="#" class="parent"><span>level 1</span></a>
 *              <ul>
 *                  <li><a href="#" class="parent"><span>level 2</span></a>
 *                      <ul><li><a href="#"><span>level 3</span></a></li></ul>
 *                  </li>
 *              </ul>
 *          </li>
 *          <li class="last"><a href="#"><span>level 1</span></a></li>
 *      </ul>
 *  </div>
 *********************************************
 */

/* menu::base */
div#menu {
    height: 51px;
    padding-left: 14px;
    background: url(../images/left.png) no-repeat;
    _background: url(../images/left.gif) no-repeat;
    width:auto;
	position:relative;
	z-index:101;
}

div#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
div#menu ul.menu {
    padding-right: 154px;/*41px */
    background: url(../images/right.png) no-repeat right 0;
    _background: url(../images/right.gif) no-repeat right 0;    
}

div#menu li {
    position: relative;
    margin: 0;
    padding: 0px 10px;
    display: block;
    float: left;
    z-index: 9;
    width:auto;
	white-space-collapse:preserve-breaks;
}
div#menu ul ul li {
    z-index: 9;
}
div#menu li div {
    list-style: none;
    float: left;
    position: absolute;
    z-index: 11;
    top: 51px;
    left: -13px;
    visibility: hidden;
    width: 194px;
	  margin: 0px 0 0 -4px;
    padding: 0; 
    background: url(../images/subsubmenu-top.png) no-repeat 0px 0;
    _background: url(../images/subsubmenu-top.gif) no-repeat 0px 0;  
}
div#menu ul ul {
	  z-index: 12;
    padding: 0px 4px 10px 4px;
    background: url(../images/submenu-bottom.png) no-repeat 0px bottom;
    _background: url(../images/submenu-bottom.gif) no-repeat 0px bottom;        
    margin: 10px 0 0 0;    
}
div#menu li:hover>div {
    visibility: visible;
}

div#menu a {
    position: relative;
    z-index: 10;
    height: 50px;
    display: block;
    float: left;
    line-height: 50px;
    text-decoration: none;
    margin-top: 1px;
    white-space: nowrap;
    width: auto;
    padding-right:5px;
    text-align:center;
	color:#fff;
}
div#menu span {
    margin-top: 2px;
    padding-left: 15px;
    color: #fff;
    font: bold 13px Arial,Helvetica;
    background: none;
    line-height: 50px;	
    display: block;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 95% 0;
    text-align: center;
}

/* menu::level1 */
div#menu a {
    padding: 0 10px 0 0;
    line-height: 50px;
    height: 51px;
    margin-right: 5px;
    _margin-right: 1px;
    background: none;
	color:#fff;
}
div#menu a:hover {
    background:  url(../images/selected.png)  repeat-x right -1px;
	  color: #fff;
  }
div#menu li.current a,
div#menu ul.menu>li:hover>a {
	  color: #fff;	
    background: url(../images/selected.png)  repeat-x right -1px;
}

div#menu ul.menu>li:hover>a span {
		color: #fff;
}
div#menu li {  }
div#menu li.last { background: none; }

/* menu::level2 */
div#menu ul ul li {
    background: #a70403;
    padding: 0;
}
div#menu ul ul a {
    padding: 0px;
    height: auto;
    float: none;
    display: block;
    line-height: 25px;
    z-index: -1;
    padding-left: 5px;
    white-space: normal;
    width: 164px;
    margin: 0 8px;
    text-transform: none;
    border-top: 1px solid #c70302;
    border-bottom: 1px solid #ca0100;     
	background:#a70403;   
}
    
div#menu ul ul a span {
   	font-weight:normal;
	padding: 0 5px;
    line-height: 25px;
    font-size: 12px;
    color: #fff;
}
div#menu li.current ul a,
div#menu li.current ul a span {
    background:none;
}
div#menu ul ul a:hover {
 background:none;
 background-color: #ca0100;
}
div#menu ul ul a:hover span {
	background:none;
	color: #fff;
}
div#menu ul ul a.parent {
  background: url(../images/submenu-pointer.png) no-repeat right bottom;
  _background: url(../images/submenu-pointer.gif) no-repeat right bottom;  
}
div#menu ul ul a.parent span {
  background:none; 
}
div#menu ul ul a.parent:hover {
  background: url(../images/submenu-pointer.png) no-repeat right bottom;
  _background: url(../images/submenu-pointer-hover.gif) no-repeat right bottom;
  background-color: #A01A00;
	color: #fff;  
}
div#menu ul ul a.parent:hover span {
  background:none; 
}
div#menu ul ul span {
	
    margin-top: 0;
    text-align: left;
}
div#menu ul ul li.last { background: none; }
div#menu ul ul li {
    width: 100%;
}

/* menu::level3 */
div#menu ul ul div {
	  width: 194px;
	  padding: 0;
    margin: -51px 0 0 192px !important;
    margin-left: 192px;
}
div#menu ul ul ul {
    padding: 10px 4px 0 4px;	
}
div#menu ul ul div li {
    position:relative;
    top:-10px;
}

/* lava lamp */
div#menu li.back {
    background: url(../images/selected.png) repeat-x 0 0;
    width: 5px;
    height: 51px;
    z-index: 8;
    position: absolute;
    padding: 0;
    margin: 0px 0 0 0;
}

div#menu li.back .left {
    padding:0;
    width:auto;
    background: url(../images/selected.png) repeat-x right 0;
    height: 51px;
    margin: 0 0 0 5px;
    float: none;
    position: relative;
    top: 0;
    left: 0;
    visibility: visible;
}

#main
{
	width:960px;/*69.65*/
	margin:0 auto; /*69.65*/
	background:url(../images/body_bg.png) repeat;
	box-shadow:0 3px 10px rgba(255,255,255,1);
	border-radius:0px 0px 5px 5px;	
	behavior: url(pie/PIE.htc);
}
.resize
{
	width: 100%;
	/*background: #FFF;*/
	position:relative;
	z-index:10;
}

#contents
{
	width:960px;
	margin:0 auto;
	background:url(../images/header_bg.png) repeat;
	box-shadow: 0 3px 10px rgba(255,255,255,1);
	border-radius:0px 0px 5px 5px;
	behavior: url(pie/PIE.htc);
}

.contents_resize
{
	width:auto;
	padding:10px;	
	/*background: #FFF;*/
}

#contents p
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align:justify;
	line-height:20px;
	color: #000;	
}
#contents p span
{
	font-size:18px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
}
#contents h2
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	text-align:justify;
	color:#900;

}
#contents li
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: justify;
	line-height:20px;
	color: #000;
}



.box
{
	width: auto;
	height: 350px; /* 275*/
	padding: 12px;
	/*padding-left:230px;*/
}

.box h2
{
	color:#000;
	font-family:Verdana, Geneva, sans-serif;
	font-size:18px;
}
.box p
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align:justify;
	line-height:20px;
	color: #000;	
}
.box p span
{
	font-size:16px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
}
.box p a
{
	text-decoration:none;
	color:#900;
}
.box p a:hover
{
	color:#000;
}

.blog1
{
	width:62%;
	height:330px; /*250px*/
	background:url(../images/header_bg.png) repeat;
	padding:10px 15px;
	/*padding-left: 25px;*/
	float:left;
	border-radius: 5px;
-webkit-border-radius: 8px;-moz-border-radius: 8px;
	box-shadow: 0 0px 5px rgba(255,255,255,1);
	behavior: url(pie/PIE.htc);
}

.blog2
{
	width: 30%;
	height: 330px;
	background:url(../images/header_bg.png) repeat;
	float: right;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 0px 5px rgba(255,255,255,1);
	behavior: url(pie/PIE.htc);
	
}
.image_box
{
	width: 40%;
	height:auto;
	float:right;
	border: 2px solid;
	border-color:#ddd;
	border-radius:5px;
	background:#111111;
	margin-left:10px;
	box-shadow: 0 0px 5px rgb(58,58,58);
	behavior: url(pie/PIE.htc);
	
}

#contents  a
{
	color:#990000;
	text-decoration:none;
}

#contents  a:hover
{
	color:#000;
}
/* ****************** footer  **********************/
.footer
{
	/*border-bottom:1px solid #ddd;*/
	height:80px;
	padding-left:0px;
	padding-right:0px;
	border-top:1px solid #F00;
	width:960px;
	margin:0 auto;
}
.footer .footer_resize
{
	width:auto;
	padding:5px;
	height:50px;
}
.footer .footer_resize p
{
	font-family:Verdana, Geneva, sans-serif;
	color:#FFF;
	font-size:12px;
}
.footer .footer_resize p.leftt { text-align:left; width:50%; margin:0; padding:25px 0 0 0px; float:left; }
.footer .footer_resize p.rightt { text-align:right; width:50%; margin:0; padding:25px 0px 0 0; float:right; }
.footer .footer_resize p.rightt a{text-decoration:none; color:#ddd;}
.footer .footer_resize p.rightt a:hover{text-decoration:none; color:#F00;}



/*services */
.data
{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:22px;
}


.bold1,.bold2,.bold3,.bold4,.bold5,.bold6
{
	cursor:pointer;
	
}
.para6 td 
{
	border-bottom:1px solid #aaa;
	border-right:1px solid #aaa;
}

.para6 th
{
border-bottom:1px solid #aaa;	
border-top:1px solid #aaa;	
border-right:1px solid #aaa;	
background:#696969;
color:#fff;
}
.para6 tr.white
{
	background:#f9f9f9;
}
.para6 tr.grey
{
	background:#f0f0f0;
}
.para6 table
{
border-left:1px solid #aaa;		
border-radius:5px 5px 0 0;
text-align:center;
}

#para2,#para3,#para4,#para5,#para6
{
display:none;	
}
.button
{
	width:600px;
	text-align:center;
	padding:50px 0;
}
.button .app
{
	background:#4a4a4a;
	padding:20px;
	color:#e3e3e3;
	border:1px solid #656464;
}
.button .app:hover
{
	background:#656464;
}

#overlay
{
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            background: #000000;
            opacity: .7;
            filter: alpha(opacity=7);
            -moz-opacity: .7;
            z-index: 103;
            display: none;
}
.enq_lay
{
	        /*display: none;*/
            position: fixed;
			margin:50px auto;
			top:0;
			bottom:0;
			right:0;
			left:0;
            background-color: #ffffff;
			border-radius:5px;
            padding: 45px 25px 45px;
            z-index: 105;
            font-family: Verdana;
            font-size: 10pt;
			width:550px;
			height:450px;
			color:#fff;
}

		
		.entry_form
		{
			border:1px solid #eeeeee;
			border-radius:5px;
			padding:5px 20px;
		}
		.entry_form legend
		{
			background:#fff;
			border:1px solid #eeeeee;
			border-radius:5px;
			padding:7px 10px;
			font-family:"Helvetica", sans-serif;
			font-size:16px;
			font-weight:bold;
			color:#339;
			width:280px;
			margin:-15px 50px;
		}
		
		.entry_form input[type="text"]
		{
			background:#f5f5f5;
			border:1px solid #cccccc;
			border-radius:3px;
			padding:7px 5px;
			font-family:"Helvetica", sans-serif;
			font-size:14px;
			color:#666;
			width:480px;
			margin-top:8px;
		}
		
		.entry_form textarea
		{
			background:#f5f5f5;
			border:1px solid #cccccc;
			border-radius:3px;
			padding:7px 5px;
			font-family:"Helvetica", sans-serif;
			font-size:14px;
			color:#666;
			width:480px;
			height:40px;
			margin-top:8px;
		}
		
		
		.entry_form label
		{
			font-family:"Helvetica", sans-serif;
			font-size:14px;
			color:#3f3f3f;
		}
		.entry_form .button_black
		{
			padding:10px 25px;
			font-family:"Helvetica", sans-serif;
			font-size:16px;
			color:#c4c4c4;
			border:1px solid #181818;
			border-radius:3px;
			background:#323232;
			cursor:pointer;
		}
		.entry_form .button_black:hover
		{
			color:#fff;
		}				
        .web_dialog_title
        {
            border-bottom: solid 2px #336699;
            background-color: #336699;
            padding: 4px;
            color: White;
            font-weight:bold;
        }
        .web_dialog_title a
        {
            color: White;
            text-decoration: none;
        }
        .align_right
        {
            text-align: right;
        }
