/*----------------------------------------------------------------------------*/
/* A Night at Club Ivory Website Stylesheet                                   */
/* (c) 2017-2018, Ivory Fade Productions, all rights reserved.                */
/*                                                                            */
/* We didn't know about stylesheets in 1998, when this was first written.     */
/*----------------------------------------------------------------------------*/


@media screen {
	html {
		margin: 2em;
		padding: 0;
	}
	
	article {
		float: right;
		margin: 0.5em 0 0.5em 0;
		width: 79%;
	}
	
	nav {
		background-color: rgba(255, 153, 102, 0.1);
		border: 1px solid black;
		float: left;
		margin: 1.75em 0 0.5em 0;
		width: 18%;
	}
	
	nav a {
		text-decoration: none;
	}
	
	nav p {
		margin: 0.5em 0 0.5em 1em;
	}
	
	nav p.navigationIndentation {
		margin: 0.5em 0 0.5em 2em;
	}

	nav p.navigationSection {
		background-color: rgba(255, 153, 102, 0.5);
		margin: 0;
		padding: 5px;
	}
}

/* 
	Here's for when we need to print the bluesheets. 
*/
@media print {
	html {
		/* 
		For the bluesheets, we can shrink the size of the font to save some
		paper. It's currently at 14 to help Susan read the game materials.
		*/
		font-size: 14pt;
		margin: 1em 2em 2em 5em;
		padding: 0;
	}

	/* This takes the whole page. */
	article {
		display: block;
		margin: 0.5em 0 0.5em 0;
	}
	
	footer {
		clear: both;
		display: block;
	}
	
	header {
		display: none;
	}

	/* This just disappears. */
	nav {
		display: none;
	}	
}


/*----------------------------------------------------------------------------*/
/*
	Some of this may have to move up into the media-specific sections.
*/

	body {
		/*font: 100% Cochin,Times New Roman,Baskerville,American Typewriter;*/
		/* Make it easier for Susan and me to read */
		font: 14pt Cochin,Times New Roman,Baskerville,American Typewriter;
		margin: 0;
		padding: 0;
	}

	footer {
		clear: both;
		display: block;
	}

	header {
		display: block;
	}

/*----------------------------------------------------------------------------*/
/*
	This is the common formatting.
*/
a:hover {
	color: red;
}


div.blurb {
	background-color: rgba(255, 153, 102, 0.1);
	border: 1px solid black;
	margin: 1em 2em;
	padding: 0.5em;
}

footer, h4 {
	border-top: 1px solid black;
	border-left: 1px solid black;
	/* margin: 0.5em 0 0 0; */
	margin: 1em 0 0 0;
	padding: 0.25em;
}

footer {
	font-size: 100%;	
}

h3 {
	font-size: 150%;
	margin: 0;
	text-align: center;
}

h4 {
	font-size: 125%;	
}	


hr.divider {
	/* border: 1px solid red; */
    border: none;
    border-top: medium double #333;
    color: #333;
    height: 0.5em; /* Jeff added this to shrink the size */
    overflow: visible; /* For IE */
    padding: 0;
    text-align: center;
}

hr.divider:after {
    background: white;
    content: "§";
    display: inline-block;
    font-size: 1.5em;
    padding: 0 0.25em;
    position: relative;
    top: -0.7em;
}

p.armedAndDangerous {
	font-weight: bold;
	text-align: center;
}

p.blurb,
p.reward,
p.rewardText {
	text-align: center;
	width: 100%;
}

p.reward {
	font-size: 125%;
	font-weight: bold;
	margin: 0;
}

table {
	border-bottom: 1px solid black;
	border-collapse: collapse;
	border-right: 1px solid black;
	border-spacing: 0;
	margin: 0.5em 0;
	padding: 0;
	/* width: 100%; */
}

table.wantedPosterTable,
table.wantedPosterTable td {
	border: 0;
}

td {
	border-top: 1px solid black;
	border-left: 1px solid black;
	padding: 5px;
}

td.aliases,
td.crimes,
td.mandatoryComponent,
td.mugshot {
	text-align: center;
}

td.wanted,
td.wantedState {
	font-size: 150%;
	font-weight: bold;
	text-align: center;
}

td.yearOfHistoricalEvents {
	font-size: 150%;
	text-align: center;
}

tr.evenRow {
	background-color: rgba(255, 153, 102, 0.1); /* #ff9966 */
}

tr.headerRow {
	background-color: rgba(255, 153, 102, 0.3); /* #ff9966 */
	color: black;
	font-weight: bold;
}

ul.movieList a {
	text-decoration: none;
}

ul.no-bullets {
    list-style: none;
}

ul.preferenceList,
ul.preferenceValueList {
	list-style: none;
	margin: 0;
	padding: 0.25em;
}

ul.preferenceList li:before {
	content: "▢";
	padding-right: 5px;
}

ul.preferenceValueList li:before {
	content: "_____";
	padding-right: 10px;
}
