@charset "utf-8";
/* Простой «резиновый» носитель
   Примечание. Для «резинового» носителя требуется удалить атрибуты высоты и ширины из HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE6 не поддерживает атрибут max-width, поэтому по умолчанию используется ширина 100 % */
.ie6 img {
	width:100%;
}

/*
	Свойства Dreamweaver Fluid Grid
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Вдохновлено книгой «Отзывчивый веб-дизайн» (Responsive Web Design) Итана Маркота (Ethan Marcote) 
	http://www.alistapart.com/articles/responsive-web-design
	
	и системой Golden Grid Джони Корпи (Joni Korpi)
	http://goldengridsystem.com/
*/

/* Мобильный макет: 480 пикс. и меньше. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	text-align: center;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align: center;
	font-family: "Arial Black", Gadget, sans-serif;
	text-shadow: 0px 1px 1px black /* Параметры тени */
}

#ads {
	text-align: center;
}

.imgpic {
	max-width: 460px;
	-webkit-transition: all 3s ease-in-out;
	-moz-transition: all 3s ease-in-out;
	-o-transition: all 3s ease-in-out;
	transition: all 3s ease-in-out;
}

#mainmenu {
	max-width: 1232px;
	text-align: center;
}

#links {
	cursor: pointer; // Работает в FF, IE, O
}

.back_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 30px;
}
.fontsize {
	font-size: 20px;
}
.container-bottom {
	bottom: 0;
	height: 110px;
	width: 100%;
	position: absolute;
	text-align: center;
}

.container-bottom-ads {
	bottom: 0;
	height: 90px;
	width: 100%;
	position: absolute;
	text-align: center;
	max-width: 1232px;
}

/* Макет для мобильного: 321–481 пикс. Наследует стили от мобильного макета. */

@media only screen and (min-width: 321px) {
.gridContainer {
	width: 100%;
	text-align: center;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
.back_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 40px;
}
.fontsize {
	font-size: 25px;
}
.container-bottom {
	bottom: 0;
	height: 120px;
	width: 100%;
	position: absolute;
	text-align: center;
}
}

/* Макет для планшета: 481–768 пикс. Наследует стили от мобильного макета. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 100%;
	text-align: center;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
.back_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 50px;
}
.fontsize {
	font-size: 30px;
}
.container-bottom {
	bottom: 0;
	height: 140px;
	width: 100%;
	position: absolute;
	text-align: center;
}
}

/* Макет для настольного компьютера: 769–1232 пикс. (максимум). Наследует стили от мобильного макета и макета для планшета. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 100%;
	max-width: 1232px;
	margin: auto;
	text-align: center;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
.back_btn {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 50px;
}
.fontsize {
	font-size: 35px;
}

.container-bottom {
	bottom: 0;
	height: 140px;
	width: 100%;
	max-width: 1232px;
	position: absolute;
	text-align: center;
}
}
