.cookbook-wrap {
	margin-right: 42px;
}
	.cookbook-wrap .left-headers {
		float: left;
		width: 125px;
	}
		.cookbook-instructions {
			color: #55A842;
			font-size: 0.917em;
			font-weight: bold;
			width: 91px;
			margin-left: 25px;
			margin-top: 30px;
			margin-bottom: 66px;
			text-align: center;
		}
		.cookbook-snack-h,
		.cookbook-first-course-h,
		.cookbook-second-course-h {
			color: white;
			text-align: center;
			margin-top: 10px;
			margin-left: 20px;
		}
		.cookbook-snack-h b,
		.cookbook-first-course-h b,
		.cookbook-second-course-h b {
			padding: 0 5px;
			display: inline-block;
			*display: inline;
			zoom: 1;
			margin-top: 33px;
			line-height: 1.2em;
		}
		.cookbook-snack-h b {
			margin-top: 40px;
		}
		.cookbook-snack-h {
			background-color: #0099cd;
		}
		.cookbook-first-course-h {
			background-color: #f37f2c;
		}
		.cookbook-second-course-h {
			background-color: #168978;
		}
	.cookbook-carousel {
		margin-left: 125px;
		position: relative;
	}
	.cookbook-carousel .jcarousel-container,
	.cookbook-carousel .jcarousel-clip,
	.cookbook-carousel .carousel,
	.cookbook-carousel .carousel li {
		height: auto;
	}
	
	.cookbook-carousel .carousel li {
		margin: 0;
		width: 126px;
	}
		.cookbook-carousel .carousel .carousel-item-image {
			margin: 0 auto;
			overflow: visible;
			margin-bottom: 2.5em;
		}
			.cookbook-carousel .carousel .cookbook-product-link {
				text-decoration: none;
			}
			.cookbook-carousel .carousel .cookbook-product-link:hover,
			.cookbook-carousel .carousel .cookbook-product-block-active .cookbook-product-link {
				background-image: url(images/circle-mask-96-orange.png);
			}
				.cookbook-product-title {
					color: #55A842;
				    display: none;
				    font-size: 0.917em;
				    font-weight: normal;
				    margin: 96px 0 0 -10px;
				    text-align: center;
				    width: 116px;
				}
				.cookbook-product-link:hover .cookbook-product-title,
				.cookbook-product-block-active .cookbook-product-title {
					display: block;
				}
		.recipes-list {
			overflow: hidden;
			border-bottom: 1px solid #eae8e8;
			position: relative;
			bottom: -1px;
		}
			.recipes-list .recipe {
				float: left;
				margin: 10px 5px;
				width: 32px;
				height: 32px;
			}
				.recipes-list .recipe .placeholder,
				.recipes-list .recipe .recipe-detail-link {
					display: block;
					width: 32px;
					height: 32px;
					background: #eae8e8 url(images/circle-mask-32.png) 0 0 no-repeat;
					cursor: default;
				}
				.cookbook-product-block-active .recipes-list .recipe .recipe-detail-link {
					cursor: pointer;
				}
				.cookbook-product-block-active .dish-type-snack .recipe .recipe-detail-link {
					background-color: #0099cd;
				}
				.cookbook-product-block-active .dish-type-first_course .recipe .recipe-detail-link {
					background-color: #f37f2c;
				}
				.cookbook-product-block-active .dish-type-second_course .recipe .recipe-detail-link {
					background-color: #168978;
				}
				.recipes-list .recipe .recipe-info {
					display: none;
				}
.recipe-info-bubble {
	position: absolute;
	width: 274px;
	overflow: hidden;
	display: none;
}
	.recipe-info-bubble .bubble-top,
	.recipe-info-bubble .bubble-bottom {
		background-color: transparent;
		background-image: url(images/bubble.png);
		background-repeat: no-repeat;
		overflow: hidden;
	}
		.recipe-info-bubble .bubble-top {
			padding: 12px 20px 0;
			background-position: 0 0;
		}
		.recipe-info-bubble .bubble-bottom {
			height: 12px;
			background-position: 0 100%;
		}
			.recipe-info-bubble .bubble-top h4 {
				margin: 0;
				color: #55A842;
				font-weight: bold;
			}
			.recipe-info-bubble .bubble-top .recipe-short-descr {
				margin: 0;
				font-style: italic;
			}
.recipe-details {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}
	.recipe-header {
		margin-top: 0;
		margin-bottom: 30px; 
	}
	.recipe-params {
		overflow: hidden;
	}
	.recipe-detail-picture {
		float: left;
		margin-right: 19px;
	}
	.recipe-detail h3,
	.recipe-persons {
		font-size: 1em;
		font-weight: bold;
		color: #55A842;
	}
	.recipe-cook-time {
		font-style: italic;
	}
	.recipe-cook-time,
	.recipe-persons {
		margin: 0;
	}
	.recipe-ingridients {
		list-style: none;
		margin-left: 0;
		padding: 0;
		float: left;
	}
		.recipe-ingridients li {
			margin-left: 0;
			padding: 0;
			background: none;
		}
	.recipe-steps-header {margin-left: 1.8em;}
	.recipe-steps ol {
		counter-reset:li; /* Инициализируем счетчик */
	    padding:0; /* Удаляем  установленное по умолчанию левое поле*/
		margin: 0;
	    list-style:none; /* Отменяем нумерацию установленную по умолчанию */
	}
		.recipe-steps ol li {
			position:relative; /* Создаем контекст для позиционирования элементов */
			margin:0 0 10px 2em; /* Даем каждому элементу списка отступ слева, что бы освободить пространство для нумерации */
			padding: 2px 8px;
		}
		.recipe-steps ol li:before {
			content:counter(li); /* В качестве данных используем счетчик */
			counter-increment:li; /* Увеличиваем значение счетчика на 1 */
			/* Позиционируем и оформляем цифры */
			position:absolute;
			top: 0;
			left:-22px;
			width:22px;
			padding: 0;
			color: #fff;
			background: transparent url(images/ol-nim-bg.png) 0 0 no-repeat;
			font-weight:bold;
			text-align:center;
			line-height: 22px;
			vertical-align: middle;
		}