html {
	background-color: #000;
}
body {
	background-color: #000;
	color: #fff;
	font-family: "Tahoma", sans-serif;
	font-size: medium;
	/* width: 960px; */
	padding: 10px;
	padding-bottom: 40px;
	margin: 0 auto;
}

h1, h2 {
	font-family: "Tahoma", sans-serif;
}
h1 {
	font-size: xx-large;
	text-align: center;
	margin: 0;
}
h2 {
	font-size: x-large;
}

a {
	color: #0cc;
	text-decoration: none;
}
a:focus, a:hover {
	color: #2ee;
}

h1 a {
	display: block;
	padding: 10px;
}

#grid img {
	border: 2px outset #fff;
}

#list img {
	border: 1px outset #fff;
}

.card img {
	cursor: pointer;
}
.card img:hover {
	border-color: #0cc;
}
/*
*:first-child { margin-top: 0 !important; }
*:last-child { margin-bottom: 0 !important; }
*/

section#list {
	/*display: table;*/
	width: 600px;
	padding: 2px;
	border: 0;
}

#grid .card {
	float: left;
	text-align: center;
	width: 240px;
	height: 221px;
	padding: 16px;
	border: 1px solid #fff;
	border-radius: 5px;
	margin: 0.5em 1%;
	/*box-sizing: border-box;*/
}

#list .card {
	position: relative;
	text-align: center;
	width: 100%;
	height: 20px;
	padding: 2px;
	border: 1px solid #fff;
	border-radius: 0px;
	margin: 1px 0;
	/*box-sizing: border-box;*/
}

.card p {
	margin: auto;
}
.card p:nth-child(1) {
	font-family: "Consolas", "Lucida Console", monospace;
	margin: 0 auto;
}
#grid .card p:nth-child(2) {
	margin: 8px auto;
}
#grid .card p:nth-child(3) {
	margin-top: 0;
}

#list .card p {
	position: absolute;
	display: inline-block;
}

#list .card p:nth-child(1) {
	left: 0;
	width: 30%;
}
#list .card p:nth-child(2) {
	left: 21%;
	width: 39%;
}
#list .card p:nth-child(3) {
	left: 60%;
	width: 39%;
	font-size: small;
}


.line {
	display: block;
	width: 18%;
}
.line p {
	float: left;
	padding: 5px;
	margin: 0;
}
.line p:nth-child(1) { width: 18%; }
.line p:nth-child(2) { width: 80%; }
.line p:nth-child(3) { display: none; }

.line img {
	display: none;
}

div.line {
	display: table-row;
}
div.line p {
	display: table-cell;
	border: 1px solid #fff;
	border-width: 0 0 1px 0;
}


input {
	font-family: "Tahoma", sans-serif;
	font-size: large;
}
input[type=text] {
	background-color: #033;
	color: #fff;
	width: 300px;
	padding: 5px 4px;
	border: 2px solid #fff;
	border-radius: 5px;
	transition: all 0.4s;
}
input[type=text]:focus {
}
input[type=submit] {
	padding: 4px 20px;
	border: 2px solid #fff;
	border-radius: 5px;
}


#lightbox_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	background-image: url("images/lb_bg.png");
	z-index: 10100;
}
#lightbox_title {
	position: fixed;
	font-size: x-large;
	color: #fff;
	width: 960px;
	left: 50%;
	margin-left: -480px;
}
#lightbox_photo {
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 960px;
	height: 540px;
	margin-left: -480px;
	margin-top: -270px;
	z-index: 10200;

	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	margin-left: -485px;
	margin-top: -275px;
}
#lightbox_photo p {
	position: absolute;
	top: 5px;
	left: 5px;
	background-color: rgba(0, 0, 0, 0.75);
	font-size: large;
	padding: 5px;
	margin: 0;
}
#lightbox_photo img {
	border: 0;
}

#scroller {
	position: fixed;
	cursor: pointer;
	left: 0;
	bottom: -40px;
	width: 100%;
	background-color: rgba(51, 51, 51, 0.90);
	transition: all 0.4s;
	font-size: x-large;
	text-align: center;
	padding: 5px;
}
#scroller.enabled {
	bottom: 0;
}

.clear, .clear_all {
	clear: both;
}

.off { display: none; }
.on { display: block; }

.center { text-align: center; }

*:target {
	background-color: #033 !important;
}
