body{

}

.container1{
	padding-top: 50px;
	padding-bottom: 1px;
}

.save{
	margin-top: 10px;
	margin-right: 10px;
	float: right;
}

.subject{
	margin-top: 5px 0 5px 0;
	width: 100%;
	float: center;
}

.login{
	padding: 75px 25px 25px 25px;
}
.error{
	color: red;
	text-align: center;
}

.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display:block;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}

.edit {
    width: 100%;
	border-collapse: collapse;
	border: 1px solid #ddd;
	
}
.edit th, .edit td {
    padding: 3px;
	border: 1px solid #ddd;
}
.edit th {
    background-color: 22313F;
    color: white;
	padding: 10px;
}

td {
    padding: 5px;
}

.data{
	font-weight: bold;
	color: blue;
}
.mark{
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 5px 0px 0px;
	margin: 0px;
	border: 0 solid black;
	font-size: 20px;
	text-align: right;
}

.footerX{
	text-align: center;
	float: bottom;
	display: block;
	
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: silver;
	font-size: 1em;
	text-align: center;
}

#syncmode{
	color:  red;
}

#ayear{
	background: skyblue;
	display: block;
	text-align: center;
	padding: 10px 0 10px 0;
	border: 1px solid gray;
	font-size: 20px;
}
#pheader{
	display: block;
	border: 1px solid gray;
}
#lateerror{
	display: block;
	padding: 5px 0 5px 0;
	background: red;
	text-align: center;
	color: white;
}
#latest{
	display: block;
	padding: 5px 0 5px 0;
	background: blue;
	text-align: center;
	color: white;
}
#saved{
	display: block;
	padding: 7px 0 7px 0;
	background: green;
	text-align: center;
	color: white;
}
#error3{
	background: lightpink;
}

@media only screen and (min-width: 800px) {
    #container1{		
		width: 800px;
		margin: auto;
	}
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #FF3D00;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}
    
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
