/* Standard image. */
img {
	border: none;
}

/* A standalone image with shadow. */
img.shadow {
	-o-box-shadow: 0px 3px 4px rgb(30,30,30);
	-icab-box-shadow: 0px 3px 4px rgb(30,30,30);
	-khtml-box-shadow: 0px 3px 4px rgb(30,30,30);
	-moz-box-shadow: 0px 3px 4px rgb(30,30,30);
	-webkit-box-shadow: 0px 3px 4px rgb(30,30,30);
}

/* A photo frame, simply add an image inside. */
div.photo {
	background-color: white;
	border: 1px solid rgb(240,240,240);
	padding: 10px;
	text-align: center;
	color: rgb(100,100,100);
	font-size: 8pt;
	margin-top: 20px;
	margin-bottom: 20px;
}
div.photo img {
	margin-bottom: 8px;
}

/* A code sample */
div.code {
	background-color: white;
	color: rgb(0,0,200);
	font-family: Courier;
	padding: 10px;
}

/* A frame for YouTube videos, possibly with a subtitle. */
div.video {
	background-color: white;
	border: 1px solid rgb(240,240,240);
	padding: 10px;
	width: 425px;
	text-align: center;
	color: rgb(100,100,100);
	font-size: 8pt;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
div.video object {
	margin-bottom: 8px;
}

/* To display an image gallery. Included photos get the styling automatically. */
table.gallery td {
	padding: 16px;
}

table.gallery img {
	-o-box-shadow: 0px 3px 4px rgb(30,30,30);
	-icab-box-shadow: 0px 3px 4px rgb(30,30,30);
	-khtml-box-shadow: 0px 3px 4px rgb(30,30,30);
	-moz-box-shadow: 0px 3px 4px rgb(30,30,30);
	-webkit-box-shadow: 0px 3px 4px rgb(30,30,30);
}
