﻿@charset "UTF-8"


#nav {
	width: 100%;
	font-size: 100%;
	line-height: 50px;
	background: #fff;
	margin-bottom:20px;
}

#nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
 
#nav li {
        list-style: none;
	float: left;
	text-align:center;
	border-right: 1px dotted #fff;
	box-sizing: border-box;
}

#nav li:last-child {
	border-right: none;
}
#nav ul li a {
	text-decoration: none;
	color:#333;
	display: block;
}

#nav li a:hover {
		 background:#fff;
	
}
/* subnavigation */
#nav li ul {
	display: none;

	position: absolute;
	width: 220px; 
	font-size: 130%;
}
#nav li ul li {
	float: none;
	width: 100%;
	border-bottom: 1px solid #333;
	border-right: none;
}
#nav li ul li:last-child {
	border-bottom:none;
}
#nav li ul li a {
	background: #fff;
	display: block;
}


#nav li ul li:last-child a {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
 
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 0;
	z-index: 1;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 3px 5px 0px #CD853F rgba(0,0,0,0.3);
	background-color: rgba(255,255,255,1);
	
}


footer   {text-align:center;
	  box-sizing: border-box;
          margin:30px 30px;
	  padding-top:120px;
	  padding-bottom: 30px;
          border-top:1px solid  #6A5ACD
}

footer li {list-style:none;
          text-decoration:none;
          display: inline;
          margin-bottom:50px;
}

footer .footer a {list-style:none;
		  text-decoration: none;
	          color: #333;
		  margin:50px 80px;
		 
		 
}   

footer .logo  li h3{list-style:none;
                text-decoration:none;
}	     
 