html
{
	height: 100%;
	margin: 0;
	padding: 0;
}

body
{
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Khula', sans-serif;
}

.main-template
{
	background-image: url('dog.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100%;
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}

.view-template /* for viewer page */
{
	background-color: #333;
	min-height: 100%;
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}

.menu
{
	position: fixed;
	top: 0;
	left: 0;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	width: 100%;
	height: 40px;
}

@media (max-width: 640px)
{
	.menu
	{
		position: absolute;
	}
}

.menu ul
{
	padding: 0; 
	margin: 0;
	margin-top: 8px;
	float: right;
}

.menu ul li	
{
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-left: 50px;
}

.menu a
{
	display: inline-block;
	color: white;
}

.menu .logo
{
	font-size: 150%;	
    font-family: 'Lobster', cursive;
    color: white;
    float: left;
}

.footer
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: right;
	color: white;
	font-size: 80%;
}

.footer a
{
	color: white;
	text-decoration: none;
}

.content
{
	border-radius: 2px;
	border-color: #666;
	background-color: rgba(255,255,255,0.8);
	padding: 30px;
}

h1, h2, h3, h4, h5, h6
{
	padding: 0;
	margin: 0;
	margin-top: 10px;
	color: #FFA545;
}

.screen-overlay
{
	position: fixed;
	top:0; left: 0; right: 0; bottom: 0;
	display: none;
	background-color: rgba(0,0,0,0.5);
}

.v-center
{
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#divPleaseWait .container-fluid
{
	text-align: center;
	padding: 50px;
	color: white;
	font-size: 250%;
	background-color: rgba(255,255,255,0.4);
}

#divError .container-fluid
{
	background-color: rgba(255,0,0,0.5);
	color: white;
	text-align: center;
	padding: 50px;
	z-index: 99999;
}

#divError .contact
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	text-align: center;
	font-size: 90%;
	color: white;
}

#divError .contact a
{
	color: white;
}

.btn-default
{
	background-color: #FFA545; /* orange */
	color: white;
}

.btn:hover
{
	background-color: white;
	color: #FFA545;
}