﻿body{
	background-color: #eee;
	margin: 0;
    min-width: 1024px;
}

.site_box{
    background-color: #fff;
    width: 100%;
    border-bottom: solid 1px #aaa;
}


.header_button{
	height: 40px;
    width: 150px;
    text-align: center;
	font-family: Arial;
	font-size: 19px;
    line-height: 40px;
	color: #494a45;
	cursor: pointer;
    display: block;
    text-decoration: none;
    transition-property: padding-bottom, color, background-color;
	transition-duration: 0.5s;
    position: relative;
}

.header_button:after {
    display: block;
    /*width: 0%;
    height: 5px;*/
    height: 0px;
    background-color: #f39c11;
    content: "";
    position: absolute;
    bottom: 0px;

    transition-property: width, height;
	transition-duration: 0.2s;
}

.header_button:hover {
    color: #f39c11;
    /*background-color: rgba(60, 60, 60, 0.05);*/
}

.header_button:hover:after {
    width: 100%;
    height: 3px;
}

/**/

.blur_filter{
    filter: blur(6px);
    -webkit-filter: blur(6px);
}

/**/

@font-face {
  font-family: "Arial";
  src: url(CorsicaLX-Regular.otf) format("truetype");
}