/************************************************************
*	Stylesheet:		 Camera Portal (screen.css)				*
*	Description:	 Stylesheet for Camera Portal			*
*	Media:			 Screen									*
*	Version:		 1.0									*
*	Author:			 Hiljo Lodewijk							*
*	Author URI:		 http://www.hiljo.nl/					*
************************************************************/

/************************************************
*	Declare general variables with colors		*
************************************************/

:root {
	--lines: #bbb;
}

/************************************************
*	Document									*
************************************************/

body {
	background-color: #fff;
	margin: 0 auto;
	padding: 0;
	font: 62.5%/1.4em Tahoma, sans-serif;
	color: #202020;
}

.container {
	position: relative;
	width: 1225px;
	margin: 0 auto;
	padding: 0;
}

/************************************************
*	Header  									*
************************************************/

#header {
	margin: 10px 0;
	font-size: 1.4em;
	overflow: hidden;
}

#header #logo {
    float: left;
    margin: 5px 10px 0 20px;
    vertical-align: bottom;
}

#header h1#logo-text {
	float: left;
	line-height: 1.4em;
	text-shadow: 2px 2px 2px #ccc;	
}

/************************************************
*	Content 						 			*
************************************************/

#content {
	position: relative;
	padding: 0 20px;
	font-size: 1.4em;
	line-height: 1.5em;
	overflow: hidden;
}

#content h1 {
	margin: 10px 0 15px;
	padding: 0;
	font-size: 1.6em;
	font-weight: bold;
	color: #444;
}

#content h2 {
	margin: 10px 0;
	padding: 0;
	font-size: 1.4em;
	color: #444 ;
	text-align: center;
}

#content h3 {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 1.15em;
	color: #222;
}

/************************************************
*	Footer	  									*
************************************************/

#footer {
	clear: both;
	margin: 0;
	padding: 7px 20px;
	font-size: 1.3em;
	overflow: hidden;
}

footer a:hover {
	text-decoration: none;
}

#footer .alignleft {
	line-height: 2em;
}

#footer .alignright {
	line-height: 2em;
}

/************************************************
*	Hyperlinks									*
************************************************/

a, a:visited {
	cursor: pointer;
	color: #202020;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a.button {
	display: inline-block; 
    border-radius: 3px;
    margin: 15px;
    padding: 6px 12px;
    line-height: 1.5em;
    color: #fff;
}

a.load {
    background-color: #4ea3ea;
    border: 1px #0e68c2 solid;
}

a.remove {
    background-color: #ee6352;
    border: 1px #ef392b solid;
}

/************************************************
*	Images  						 			*
************************************************/

img {
	border: 0;
}

img.centered  {
	display: block;
	margin: 0 auto;
	padding: 0;
}

img.alignnone {
	display: inline;
	padding: 0;
	margin: 0 0 10px 0;
}

img.alignright {
	margin-left: 30px
}

img.alignleft {
	margin-right: 30px
}

img.bordered {
	border: 1px solid #eaeaea;
	border-radius: 3px;
}

img.spaced {
	display: inline-block;
	margin: 10px 15px;
}

/************************************************
*	Other & General					 			*
************************************************/

hr {
	background-color: var(--lines );
	border: 0;
	height: 1px;
}

.alignright {
	float: right;
}

.alignright:after {
	content: "";
	clear: both;
	display: table;
}

.alignleft {
	float: left;
	margin-right: 30px;
}

.alignleft:after {
	content: "";
	clear: both;
	display: table;
}

.centered {
	display: block;
	margin: 0 auto;
}

.hidden {
	display: none;
}

/************************************************
*	Camera Portal related styles				*
************************************************/

.photo-container {
	float: left;
	width: 370px;
	margin: 0 12px 20px;
	padding: 5px;
	border: 1px #eee solid;
	border-radius: 4px;
	box-shadow: 3px 3px 9px 0px rgba(158,158,158,1);
}

.photo, .album {
	background-color: #dfdfdf;
	width: 360px;
	height: 200px;
	margin: 5px auto;
	border: 1px #eee solid;
	text-align: center;
	overflow: hidden;
}

.large-photo {
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
	border: 1px silver solid;
	font-size: 8pt;
}