#wind {
    position: fixed;
    width:220px;
height:306px;
    left: 50%;
margin-left:-110px;
    top: 50%;
margin-top:-153px;
    border:solid #97999a 1px;
    display: none;
      z-index: 1000;
    overflow: hidden;
    background-color:#e8e8e8;
    color:#000;
    text-align:center;
}
#wind .wind-head {
	width:200px;
	margin:0 auto;
	height:28px;
	color:#000;
	text-align:left;
	font-size:16px;
	line-height:28px;
	font-weight:bold;
	padding-left:0px;
	border-bottom:#97999a 1px solid;
}
#wind .wind-head a {
	display:block;
	float:right;
	width:16px;
	height:16px;
	background:url(img/window-close.png) no-repeat;
	margin-right:0px;
	margin-top:4px;
}
#wind .wind-cont {
	width:200px;
	margin:0 auto;
	text-align:left;
	padding:5px 0;
}
#wind .wind-cont button {
	background:#9a9c9d img() repeat-x;
	color:#000;
	border-radius:4px;
	height:20px;
	padding:0 3px;
}

/*-----Кноопки----------*/
    .button {
        text-decoration: none;
        font: 11px 'Trebuchet MS',Arial, Helvetica; /* Изменяйте em для масштабирования кнопки */
        display: inline-block;
        text-align: center;
        color: #fff;
		margin:10px 10px 5px 0; 
        
        border: 1px solid #9c9c9c; /* Запасной стиль */
        border: 1px solid rgba(0, 0, 0, 0.3);            
        
        text-shadow: 0 1px 0 rgba(0,0,0,0.4);
        
        box-shadow: 0 0 .05em rgba(0,0,0,0.4);
        -moz-box-shadow: 0 0 .05em rgba(0,0,0,0.4);
        -webkit-box-shadow: 0 0 .05em rgba(0,0,0,0.4);
padding:0 10px;
    }
    
    .button, .button span {
        -moz-border-radius: .3em;
        border-radius: .3em;
    }
    
    .button span {
        border-top: 1px solid #fff; /* Fallback style */
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        display: block;
        padding: 1px 10px;
        
        /* Фоновый паттерн */
        
        background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(0, 0, 0, 0.05)), color-stop(.25, transparent), to(transparent)),
                          -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(0, 0, 0, 0.05)), color-stop(.25, transparent), to(transparent)),
                          -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent), color-stop(.75, rgba(0, 0, 0, 0.05))),
                          -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent), color-stop(.75, rgba(0, 0, 0, 0.05)));
        background-image: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent),
                          -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent),
                          -moz-linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
                          -moz-linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);

        /* Настройки паттерна */
        
        -moz-background-size: 3px 3px;
        -webkit-background-size: 3px 3px;            
    }

    .button:hover {
        box-shadow: 0 0 .1em rgba(0,0,0,0.4);
        -moz-box-shadow: 0 0 .1em rgba(0,0,0,0.4);
        -webkit-box-shadow: 0 0 .1em rgba(0,0,0,0.4);
    }
    
    .button:active  {
        /* Опускаем на 1px при нажатии */
        position: relative;
        top: 1px;
    }
    
    /*----------------------------*/        
    
    .button {
        background: #4477a1;
        background: -webkit-gradient(linear, left top, left bottom, from(#81a8cb), to(#4477a1) );
        background: -moz-linear-gradient(-90deg, #81a8cb, #4477a1);
        filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1');
    }
    
    .button:hover {
        background: #81a8cb;
        background: -webkit-gradient(linear, left top, left bottom, from(#4477a1), to(#81a8cb) );
        background: -moz-linear-gradient(-90deg, #4477a1, #81a8cb);
        filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4477a1', endColorstr='#81a8cb');            
    }
    
    .button:active  {
        background: #4477a1;
    }
    
    /*----------------------------*/
    
    .button-black  {
        background: #141414;
        background: -webkit-gradient(linear, left top, left bottom, from(#656565), to(#141414) );
        background: -moz-linear-gradient(-90deg, #656565, #141414);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#656565', EndColorStr='#141414');
    }
    
    .button-black:hover {
        background: #656565;
        background: -webkit-gradient(linear, left top, left bottom, from(#141414), to(#656565) );
        background: -moz-linear-gradient(-90deg, #141414, #656565);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#141414', EndColorStr='#656565');
    }
    
    .button-black:active {
        background: #141414;
    }
    
    /*----------------------------*/
    
    .button-orange {
        background: #f09c15;
        background: -webkit-gradient(linear, left top, left bottom, from(#f8c939), to(#f09c15) );
        background: -moz-linear-gradient(-90deg, #f8c939, #f09c15);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#f8c939', EndColorStr='#f09c15');
    }
    
    .button-orange:hover {
        background: #f8c939;
        background: -webkit-gradient(linear, left top, left bottom, from(#f09c15), to(#f8c939) );
        background: -moz-linear-gradient(-90deg, #f09c15, #f8c939);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#f09c15', EndColorStr='#f8c939');
    }
    
    .button-orange:active {
        background: #f09c15;
    }
    
    /*----------------------------*/
     
.alx_btn .submit_block
{
        margin: 8px 15px 0px 0px;
        padding: 0px;
        display:block;
        float:left;
        border:1px solid #959595;
        background:url(images/bg_submit.gif) 0px 0px repeat-x;
}      
.alx_btn .submit_block input
{
        border: 0px;
        cursor:pointer;
        height:28px;
        overflow:visible;
        font:normal 12px tahoma, sans-serif !important;
        /*color:#818181;*/
        color:black;
        padding: 0px 20px 0px 20px;
        background:transparent;

}

.sidebar_banner{
    background: #f2f2f2;;
}