@charset "utf-8";
/* CSS Document */

#note {
	position: fixed;
	z-index: 101;
	left: 0px;
	right: 0px;
	text-align: center;
	line-height: 2em;
	overflow: hidden;
	-webkit-box-shadow: 0 0 5px black;
	-moz-box-shadow:    0 0 5px black;
	box-shadow:         0 0 5px black;
	color: #FFFFFF;
	background-color: #124772;
	bottom: 0px;
	padding: 8px;
}

#note a{
	color: #CCCCCC;
	margin: 6px;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
	border-radius: 8px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #124772;
	border-right-color: #999999;
	border-bottom-color: #124772;
	border-left-color: #999999;
}

#note a:hover{
	color: #124772;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}


@-webkit-keyframes slideDown {
    0%, 100% { -webkit-transform: translateY(-50px); }
    10%, 90% { -webkit-transform: translateY(0px); }
}
@-moz-keyframes slideDown {
    0%, 100% { -moz-transform: translateY(-50px); }
    10%, 90% { -moz-transform: translateY(0px); }
}


.cssanimations.csstransforms #close {
	display: inline;
}
