﻿#searchForm{
	/* Форма поиска. */
	
	padding:0px 0px 0px;
	margin:0px 0;
	position:relative;

	-moz-border-radius:16px;
	-webkit-border-radius:16px;
	border-radius:16px;
}

fieldset{
	border:none;
}

#searchInputContainer{
	/* Данный div содержит прозрачный прямоугольник над полем текста поиска */
	width:420px;
	height:36px;
	background:url("/images/searchBox.png") no-repeat;
	float:left;
	margin-right:12x;
}

#s{
	/* Поле текста поиска. */
	
	border:none;
	color:#888888;
	background:url("/images/searchBox.png") no-repeat;
	
	float:left;
	font-family:Arial,Helvetica,sans-serif;
	font-size:15px;
	height:36px;
	line-height:36px;
	margin-right:12px;
	outline:medium none;
	padding:0 0 0 35px;
	text-shadow:1px 1px 0 white;
	width:420px;
}

/* UL, который содержит иконки типов поиска */

.icons{
	list-style:none;
	margin:10px 0 0 415px;
	height:19px;
	position:relative;
}

.icons li{
	background:url("/images/icons.png") no-repeat;
	float:left;
	height:19px;
	text-indent:-9999px;
	cursor:pointer;
	margin-right:5px;
}

/* Стили для каждой иконки */

li.web{ width:15px;}
li.web.active,
li.web:hover{ background-position:left bottom;}

li.images{ width:22px; background-position:-18px 0;}
li.images.active,
li.images:hover{ background-position:-18px bottom;}

li.news{ width:14px; background-position:-44px 0;}
li.news.active,
li.news:hover{ background-position:-44px bottom;}

li.videos{ width:17px; background-position:right 0;}
li.videos.active,
li.videos:hover{ background-position:right bottom;}

/* Кнопка Искать */


#submitButton{
	background:url('/images/buttons1.png') no-repeat;
	width:83px;
	height:36px;
	text-indent:-9999px;
	overflow:hidden;
	text-transform:uppercase;
	border:none;
	cursor:pointer;
}

#submitButton:hover{
	background-position:left bottom;
}


/* Стили для результатов поиска */


.pageContainer{
	/* Сожержит каждую страницу с результатом поиска. Имеет вложенную нижнюю границу. */
	border-bottom:1px solid #5e7481;
	margin-bottom:50px;
	
	/* Добавляет тень к нижней темной границе */
	
	-moz-box-shadow:0 1px 0 #798e9c;
	-webkit-box-shadow:0 1px 0 #798e9c;
	box-shadow:0 1px 0 #798e9c;
}


p.notFound{
	text-align:center;
	padding:0 0 40px;
}


/* Результаты поиска: новости и веб страницы */


.webResult{ margin-bottom:50px;}
.webResult h2{ 
	background:url(/images/3.png) no-repeat center top;
	font-size:14px;
	font-weight:normal;
	padding:8px 20px;
	
	/* Используем закругленные углы CSS3 */
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
}
.webResult h2 b{ color:#3D3D3D; }
.webResult h2 a{ color:#3D3D3D;border:none;}
.webResult p{ line-height:1.5;padding:15px 20px;}
.webResult p b{ color:white;}
.webResult > a{ margin-left:20px;}


/* Результаты поиска: изображения и видео */


.imageResult{
	float:left;
	height:180px;
	margin:0 0 20px 40px;
	text-align:center;
	width:152px;
	overflow:hidden;
        border-radius: 8px;
}
.imageResult img{ display:block;border:none;border-radius:10px;}
.imageResult a.pic{
	border:1px solid #969696;
	display:block;
	margin:0 auto 15px;
        border-radius: 10px;
        -moz-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Firefox */
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Для Safari и Chrome */
        box-shadow: 0 0 10px rgba(0,0,0,0.5); /* Параметры тени */
}

/* Кнопка _Показать еще_ */

#more{
	width:83px;
	height:24px;
	background:url('/images/more.png') no-repeat;
	cursor:pointer;
	margin:40px auto;
}

#more:hover{
	background-position:left bottom;
}


