﻿@charset "utf-8";
/* CSS Document */

@import "../../style/general.css";

.background, .nav
{
	background-color:#154386;
}

.background .picture, .nav
{
	margin:auto;
	width:1370px;
}

.background .picture .logo, .background .picture .text
{
	display:inline-block;
	height:54px;
	background-repeat:no-repeat;
	background-position:bottom;
	
}

.background .picture .logo
{
	width:50px;
	/*background-size:50px;*/
	background-image:url(../image/logo_header.png);
}

.background .picture .text
{
	margin-left:20px;
	width:260px;
	/*background-size:260px;*/
	background-image:url(../image/text_header.png);
}

.nav
{
	border-radius:5px;
}

.nav ul li
{
	/*position:relative;*/
	display:inline-block;
}

.nav ul li a
{
	display:block;
	width:222px;
	text-align:center;
	line-height:40px;
	font-size:16px;
	/*color:#272727:*/
	color:#ffffff;
	border-radius:10px;
	/*transition:all .2s linear;
	-webkit-transition:all .2s linear;*/
}

.nav ul li:hover a
{
	/*color:#ffffff;*/
	background-color:#154386;
}

.nav ul li .sub
{
	display:none;
	position:absolute;
}

.nav ul li:hover .sub
{
	display:block;
}

.nav ul li .sub a
{
	line-height:20px;
	font-size:14px;
}

.nav ul li .sub a:hover
{
	background-color:#02476f;
}