/* FOF Movies CS Sheet */

/* Creates an invisible box for positioning */
div.genre
{
	position:relative;
	margin-left: 20px;
	margin-right: 20px;
	top: 35px
}

/* Places the image in invisble box */
div.genre img
{
	border: 0px;
	position: relative;
	top: -60px;
	float: right
}


div.genre ul
{
	list-style: disc inside;
	display: inline; /* Makes the list go left to right instead of up and down */
	line-height: 20px /* Makes it so that there's a space between each line */
}
div.genre ul li
{
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding-right: 10px
}

/* Gives values to the alphabet box*/

table.alpha
{
	padding: 2px;
	margin: 2px;
	border: 0px
}

table.alpha td a
{
	text-align: center;
	font-size: 32px; /* Font size of the alphabet link letters */
	font-weight: bold;
	text-decoration: none;
	color: #0000CC /* Gives the link a colour*/
	font-family: "Courier New", Courier, monospace /* The font. To change, look up available fonts*/
}

table.alpha td a:hover
{
	text-decoration: underline
}
table.alpha td a:hover, a:visited, a:link, a:active
{
	color: #0000CC
}