﻿  #fade { /*--Transparent background layer--*/
	        display: none; /*--hidden by default--*/
	        background: #000;
	        position: fixed; left: 0; top: 0;
	        
	        width: 1000px ; height: 1000px ;
	        opacity: .80;
	        z-index: 9999;
        }
        .popup_block{
	        display: none; /*--hidden by default--*/
	        background: #fff;
	        padding: 20px;
	        border: 10px solid #ddd;
	        float: left;
	        font-size: 1.2em;
	        position: fixed;
	        top: 50%; 
	        left: 50%;
	        z-index: 99999;
	        /*--CSS3 Box Shadows--*/
	        -webkit-box-shadow: 0px 0px 20px #000;
	        -moz-box-shadow: 0px 0px 20px #000;
	        box-shadow: 0px 0px 20px #000;
	        /*--CSS3 Rounded Corners--*/
	        -webkit-border-radius: 10px;
	        -moz-border-radius: 10px;
	        border-radius: 10px;
        }
        img.btn_close {
	        float: right;
	        margin: -55px -55px 0 0;
	        width:50px;
	        height:50px;
	        border:0;
        }
        /*--Making IE6 Understand Fixed Positioning--*/
        html #fade {
	        position: absolute;
        }
        html .popup_block {
	        position: absolute;
        }
        
        .search
        {
          border-style:none;
        }
        
        /* Styles For Autocomplete List*/
        .ac_results {
	        padding: 0px;
	        border: 1px solid black;
	        background-color: white;
	        overflow: hidden;
	        z-index: 99999;
        }

        .ac_results ul {
	        width: 100%;
	        list-style-position: outside;
	        list-style: none;
	        padding: 0;
	        margin: 0;
        }

        .ac_results li {
	        margin: 0px;
	        padding: 2px 5px;
	        cursor: default;
	        display: block;
	        /* 
	        if width will be 100% horizontal scrollbar will apear 
	        when scroll mode will be used
	        */
	        /*width: 100%;*/
	        font: menu;
	        font-size: 12px;
	        /* 
	        it is very important, if line-height not setted or setted 
	        in relative units scroll will be broken in firefox
	        */
	        line-height: 16px;
	        overflow: hidden;
        }

        .ac_loading {
	        background: white url('indicator.gif') right center no-repeat;
        }

        .ac_odd {
	        background-color: #eee;
        }

        .ac_over {
	        background-color: #0A246A;
	        color: white;
        }
        .selectbox
        {
            width:100px;
            font-weight:bold;
        }
        
        .headerTitle
        {
            font-size:10px;
        }