﻿html, body 
{
	background: #FFFFFF url(../img/wood.png) repeat top left;
    background: #FFFFFF url(../img/background.jpg) repeat top left;
	padding: 0px;
	margin: 0px;
	height:100%;
	font-family: 'Roboto', Verdana, Tahoma, Arial, Helvetica;
	font-size: 14px;
	font-weight: 400;
}

.login
{
	margin: 0px auto;
	padding: 20px 2px 2px 2px;
	border: solid 1px #CCCCCC;
	width: 500px; 
	text-align: center; 
	background-color: rgba(255,255,255,0.4); 
	/*height: 350px;
	background: url(img/loginbg.png) no-repeat center center;*/
	border-radius: 5px; 
	box-shadow: 1px 1px 4px #999999;
}

.register
{
	border: solid 0px black;
	width: 500px; 
	text-align: center; 
	height: 420px;
	/*background: url(img/registerbg.png) no-repeat center center;*/
}

a:link, a:visited
{
	color: #999;
	text-decoration: none;
}

a:hover
{
	color: #666;
	text-decoration: none;
}

.textEntry
{
	font-family: 'Roboto', Verdana, Tahoma, Arial, Helvetica;
	font-size: 14px;
	padding: 2px 5px;
}

.btn
{
    min-width: 100px;
	cursor: pointer;
	padding: 5px 15px;
	margin: 0; 
	font-size: 16px;
	font-family: 'Open Sans', Arial, Verdana, Tahoma, Helvetica;
	text-decoration: none;
	color: #fff;
	background: #3070F0;
    border: 1px solid #3070F0;
	border-radius: 3px; 
	box-shadow: 0 1px 0px #97b7f7 inset;
    -webkit-appearance: none;
}

.btn:hover
{
	text-decoration: none;
	background: #1354D6;
	box-shadow: 0 1px 0px #97b7f7 inset;
}

#footer
{
    margin-top: 10px;
    color: #999999;
    font-size: 0.8em;
    text-align: center;
}

/* MESSAGE PANEL
========================================*/

.msgpanelstatic
{
    font-size: 14px;
    display: none;
    background-color: #de4343;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                        transparent 75%, transparent); 
    width: 450px;
    border: 1px solid #c43d3d;
    color: #fff;
    position: relative;
    margin: 0 auto 20px auto;
    padding: 20px 10px;
    background-size: 40px 40px;                                     
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    animation: animate-bg 5s linear infinite;
    -webkit-animation: animate-bg 5s linear infinite;
	border-radius: 5px; 
}

.msgpanelstatic h1
{
    font-size: 18px;
    margin: 0 0 10px 0;
}

.msgpanel
{
    font-size: 16px;
    display: none;
    background-color: #de4343;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                        transparent 75%, transparent); 
    width: 900px;
    /*min-width: 70%;*/
    max-width: 90%;
    border: 1px solid #c43d3d;
    color: #fff;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 50px auto 0;
    padding: 25px;
    /*_position: absolute;*/
    background-size: 40px 40px;                                     
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    animation: animate-bg 5s linear infinite;
    -webkit-animation: animate-bg 5s linear infinite;
	border-radius: 5px; 
}

@keyframes animate-bg {
    from {
        background-position: 0 0;
    }
    to {
       background-position: -80px 0;
    }
}

#hide
{
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 10px;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
}