#loadingDiv
{ 
        display: none;
        position: fixed;
        top:0px;
        right:0px;
        width:100%;
        height:100%;
        background-color:#666;
        background-color: orange;
        background-image:url('/icons/loader.gif');
        background-repeat:no-repeat;
        background-position:center;
        z-index:10000000;
        opacity: 0.6;
        filter: alpha(opacity=60);
}


#next
{
	width: 50px;
	height: 50px;
	background-color: gold;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	border-radius: 50%;
	border: 1px solid yellow;
	padding: 5px;
}
#prev
{
	width: 50px;
	height: 50px;
	background-color: gold;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	border-radius: 50%;
	border: 1px solid yellow;
	padding: 5px;
}



#snackbar 
{
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 250px; /* Set a default minimum width */
	margin-left: -125px; /* Divide value of min-width by 2 */
	background-color: #330066;
	color: white;
	text-align: center; /* Centered text */
	border-radius: 5px; /* Rounded borders */
	padding: 20px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	left: 50%; /* Center the snackbar */
	bottom: 30px; /* 30px from the bottom */
	z-index: 100;
	font-size: 140%;
}

#snackbar.show 
{
	visibility: visible; /* Show the snackbar */
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}




#hangbar 
{
	max-width: 62px; /* Set a default minimum width */
	max-height: 62px;
	margin-left: -125px; /* Divide value of min-width by 2 */
	color: white;
	text-align: center; /* Centered text */
	border-radius: 40px; /* Rounded borders */
	padding: 0px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	right: 20; /* Center the snackbar */
	bottom: 20px; /* 30px from the bottom */
	z-index: 100;
	font-size: 140%;
	border: 1px solid black;
	overflow: hidden;
        transition: all 1.0s ease-out, all 1.0s ease-in;
}
#hangbar:hover
{
	max-height: 620px;
        transition: all 1.0s ease-out, all 1.0s ease-in;
}
#hangbar a img
{
	width: 50px;
	height: 50px;
	background-color: orange;
	margin: 5px;
	border-radius: 25px;
	padding: 0px;
	border: 2px solid black;
}

