/* --------------------------------------------------

	(c) 2021-22 Pants Pie

   -------------------------------------------------- */
   
/* colors:
   #0066cc (blue)
   #ff0000 (red)
*/

* { margin: 0; padding: 0; outline: 0 }

body, html {
    /*height: 100%;*/
}

body {
	margin: 0;
	padding: 0;	
	font-family: 'Varela Round', sans-serif;
	font-size: 14px;
	color: #555;
	background: #ddf5fe url(images/BG.png) repeat-x;
	/*background-size: cover;*/
	width:100%;
	height:100%;
}

/**
 * ---------------------------------------------------------
 *
 * Scrollbar
 *
 * ---------------------------------------------------------
 */

::-webkit-scrollbar {
   width: 12px;
   height: 12px;   
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment  {
   display: none;
}
 
::-webkit-scrollbar-thumb {
   border-radius: 6px;
   background: #3d83e7;   
   border: 3px solid #ddf5fe;
}

::-webkit-scrollbar-corner {
   background-color: transparent;
}


/* Links */
a {
	text-decoration: none;
	color: #fff;	
	border-bottom: none;
	letter-spacing: 0;
	margin: 0 0.25rem;
	font: normal 16px 'Varela Round', sans-serif;
}

a:hover {
	color: #fff;
	text-decoration: underline;
}

#logo-container {
	margin:0 auto;
	padding:0;	
}

#cblogo {
	position:absolute;
	z-index: 2;
	opacity: 1;
	top: 5px;
	left: 5px;
	background: url(images/ppLogoSml-03.png) no-repeat;	
	width:100px;
	height:46px;
}

#logo {
	margin: 80px auto 0 auto;
	text-align: center;
	padding: 10px;
}

#logo img {
	max-width: 100%;
	width: 700px;	
}

#logo .logo-inner {
	position: relative;
	height: 764px;
}

#available {	
	text-align: center;
	margin: 0 auto;
	width: 100%;
}

#available h1 {
	color: #000;
	padding: 0 5px;
}

#available h3 {
	color: #fff;
   text-shadow: 0 0 1px #000;
	text-transform: uppercase;
	margin-top: 5px;
	margin-bottom: 20px;
}

#available img {
	width: 150px;
	height: 50px;
}

@media (min-width: 768px) {

	#available img {
		width: 228px;
		height: 82px;
	}

}

#main-container {
	width:100%;
	padding:0;
	margin:0;
}

#links {	
	position:absolute;
	z-index: 2;
	top: 15px;
	right: 15px;
	background-color: rgb(255 255 255 / 20%);
	background-image: url(images/icons8-envelope-96.png);
	background-repeat: no-repeat;
	background-position: 8px 3px;
	background-size: 18px;
   border-radius: 10px;
   padding: 2px 8px 2px 28px;
}

.seperator {
	background: url(images/border.gif) repeat-x;
	height:4px;
	width:100%;
}

#footer {
	margin-top: 100px;
	position: relative;    
   padding: 20px 10px 20px 10px;
   background: #262626;  
   color: #fff;
   border: 1px solid #222;
   text-align: center;	
}

#footer .copyright {
	padding-top: 100px;
	color: #888;

}