body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #fff;
	background-image: url(../2015staging/images/bg01.jpg);
	font-family: 'Cabin', sans-serif;
	font-size:0.8em;
	background-position: top center;
	background-attachment:fixed;
}
a:link {
	color: #F9F7EB;
	text-decoration: none;
	background:#231F20;
	padding:4px;
	border-radius: 5px;
}
a:visited {
	color: #F9F7EB;
	text-decoration: none;
	background:#231F20;
	padding:4px;
	border-radius: 5px;
}
a:hover {
	color: #9C3C25;
	text-decoration: none;
	background:#231F20;
	padding:4px;
	border-radius: 5px;
}
a:active {
	color: #6F6C5B;
	text-decoration: none;
	background:#231F20;
	padding:4px;
	border-radius: 5px;
}

html, body, #a {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
	
#a {
    display: table;
}

#b {
    display: table-cell;
    margin: 0;
    padding: 0;

    text-align: center;
    vertical-align: middle;
}

#content {
    width: auto;
    height: 750px;
    margin: auto;
}
.style1 {
	font-size: 18px;
	font-weight: bold;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadein {
opacity:0;  /* make things invisible upon start */
-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */
-moz-animation:fadeIn ease-in 1;
animation:fadeIn ease-in 1;
 
-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;
 
-webkit-animation-duration:1s;
-moz-animation-duration:1s;
animation-duration:1s;
}

.fadein01 {
opacity:0;  /* make things invisible upon start */
-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animation ease-in and repeat it only 1 time */
-moz-animation:fadeIn ease-in 1;
animation:fadeIn ease-in 1;
 
-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;
 
-webkit-animation-duration:6s;
-moz-animation-duration:6s;
animation-duration:6s;

-webkit-animation-delay: 0s;
-moz-animation-delay: 0s;
animation-delay: 0s;

}

#newsitem {display:block; clear:both; min-height:325px;}