.boy {
	background-color: #b0c4de;
}
.girl {
	background-color: #dbb0de;
}
.both {
	background-color: #bbdeb0;
}

body {
	font-family: 'Trocchi', serif;
}

body.transition {
	transition: background-color 300ms ease-in;
}

div {
	text-align:center;
}
.photo-container {
	position: relative;
}
.photo {
	/* hide blue highlight color when clicking the edges of the photo */
	-webkit-tap-highlight-color: transparent;
}
.left-pointer {
	position: absolute;
	left: -300px;
	top: 0;
	width: 400px;
	height: 100%;
}
.left-pointer:hover {
	cursor: url("/images/left-pointer.png"), auto;
}
.right-pointer {
	position: absolute;
	right: -300px;
	top: 0;
	width: 400px;
	height: 100%;
}
.right-pointer:hover {
	cursor: url("/images/right-pointer.png"), auto;
}
.photodate {
	font-size: 200%;
}
.caption {
	font-size: 150%;
}
.buttons {
	font-size: 100%;
	font-family: sans-serif;
	margin: 10pt;
}
.buttons a {
	text-decoration: none;
}


.hide {
	display: none !important;
}

.calendar_table {
	width: 80%;
	margin-left:auto;
	margin-right:auto;
}

.date_col {
	width: 160px;
}

.caption_col {
}

/* From http://devgrow.com/super-simple-css-buttons/ */
.button {
	padding: 8px 20px;
	display: inline;
	background: #777 url("/images/button.png") repeat-x bottom;
	cursor: default;
	border: none;
	color: #fff;
	font-weight: bold;
	text-shadow: 1px 1px #666;
}
.button.on:hover {
	background-position: 0 center;
	cursor: pointer;
}
.button.on:active {
	background-position: 0 top;
	cursor: pointer;
	position: relative;
	top: 1px;
	padding: 7px 20px 9px;
}
.button.round {
	border-radius: 5px;
}
.button.left {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.button.right {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.button.red { background-color: #e50000; }
.button.purple { background-color: #9400bf; }
.button.green { background-color: #58aa00; }
.button.orange { background-color: #ff9c00; }
.button.blue { background-color: #2c6da0; }
.button.black { background-color: #333; }
.button.white { background-color: #fff; color: #000; text-shadow: 1px 1px #fff; }
.button.small { font-size: 75%; padding: 3px 7px; }
.button.small:active { padding: 4px 7px 2px; background-position: 0 top; }
.button.large { font-size: 125%; padding: 7px 12px; }
.button.large:active { padding: 8px 12px 6px; background-position: 0 top; }

.buttonSeparator { width: 1px; padding: 11px 1px 10px 1px; background-color: white; }

.polaroid {
	background-color: white;
	display: inline-block;
	padding: 10px 10px 15px;
	box-shadow: 0 3px 6px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
	-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
	margin: 5px;
}

.polaroid.skinny {
	padding: 8px;
	margin: 5px;
}
.polaroid.skinny img {
	display: block;
}
.polaroid.loaded .overlay {
	display: none;
}
.overlay {
	position: absolute;
	width: 200px;
	height: 200px;
}
