/* Блок курсов */

#courses_list .courses_wrap {
	margin-top: 10px;
	float: left;
}

	/* Инфо калькулятора */

	#courses_list .calc_info {
		float: left;
	}
	
	/* Действия калькулятора */
	
	#courses_list .calc_actions {
		float: right;
		position: relative;
		margin-top: -10px;
		margin-bottom: 5px;
	}

		/* Картинка */

		#courses_list .calc_actions img {
			height: 32px;
		}
	
		/* Подпись */
	
		#courses_list .calc_actions .caption {
			font-size: 16px;
			position: relative;
			top: -10px;
			left: 5px;
			margin-right: 5px;
		}

	/* Значение калькулятора */
	
	.calc_value_caption {
		color: #dd0000;
	}

	/* Предупреждение калькулятора */
	
	.calc_warning {
		font-size: 11px;
		margin-bottom: 5px;
	}

	/* Курсы валют */

	#courses_list .list {
		clear: both;
	} 

	/* Таблица */

	#courses_list .list table {
		min-width: 600px;
	} 
	
		/* Важные ячейки */
		
		#courses_list .list table .bold {
			font-weight: bold;
		} 
		
		/* Цвет ячеек */
		
		#courses_list .list table th {
			color: #004080;
		} 

/* Калькулятор */

.calc {
	display: none;
}

	/* Тень */
	
	.calc .calc_shadow {
		position: absolute;
		top: 40px;
		right: 0;
		width: 300px;
		height: 220px;
		background: #90a7c7;
		opacity: 0.5;
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	}
	
	/* Содержимое */
	
	.calc .calc_content {
		position: absolute;
		top: 50px;
		right: 10px;
		width: 280px;
		height: 200px;
		border: 1px solid #ccc;
		background: #f4fbff;
		z-index: 5;
	}
	
		/* Элементы */
	
		.calc_content h3, .calc_content p {
			margin-left: 20px;
			margin-right: 20px;
		} 
		
			/* Блок ссылки "OK" */
		
			.calc_content .submit_block {
				float: left;
			} 
		
			/* Блок ссылки "Закрыть" */
		
			.calc_content .close_block {
				float: right;
				margin-top: 15px;
			}
		
		/* Переключатель */
		
		.calc_content .switcher {
			margin-left: 5px;
			margin-right: 5px;
			text-decoration: none;
			border-bottom-width: 1px;
			border-bottom-style: dotted; 
		}
		
		/* Активный переключатель */
		
		.calc_content .active_switcher {
			font-weight: bold;
		}