/*
 * Copyright (c) 2010 John Reese
 * Licensed under the MIT license
 */

.announcement { 
position:fixed; 
height:100vh; 
width:100% !important; 
left:0px; 
top:0px; 
z-index:9999; 
background: rgba(0, 0, 0, .8);

}

.announcement-msg {
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width:95%;
	height: 120px;
	background: #FAF3AA;
        padding: 5px 20px 5px 20px;
	position:absolute;
        z-index: 10000;
        box-shadow: 0px	0px 4px	#000;
	text-align: center;

}

.announcement-dismiss {
	padding: 3px;
	cursor: pointer;
        z-index: 10001;
	width: 20px;
	position: fixed;
	margin: auto;
        top: -100px;
        right: 1%;
        bottom: 0;

}


