/*
	# Company: Catalina Finance
	# CSS Author: Nick Maller (www.defythypixel.com)
	# File: screen.css
*/
@import url(form.css);
@import url(layout.css);
@import url(components.css);

/* 
	** Global reset and setting vertical rhythm
*/
*
{
	margin: 0;
	padding: 0;
	line-height: 122%;
}
body
{
	padding: 0;
	
	background-color: #f8fcfd;
	background-image: url(../images/body-bg.jpg);
	background-position: 50% 0%;
	background-repeat: repeat-x;
	
	color: #575759;
	font-size: 100%;
	font-family: Arial, Sans-Serif;
    line-height: 1.125em; /* 16×1.125=18 */
}

/* 
	** Headings
*/
h1,
h2,
h3,
h4,
h5,
h6
{
	padding: 8px 0 4px;
	color: #007bc2;
	font-family: Georgia, 'Times New Roman', serif;
	text-transform: uppercase;
}
h1 {	font-size: 155%; color: #515151; padding: 0; }
h2 {	font-size: 120%; color: #72a605; padding: 12px 0 9px; }
h3 {	font-size: 110%; color: #404040; padding-top: 4px; text-transform: none; }
h4 {	font-size: 100%; color: #404040; padding-top: 4px; text-transform: none; color: #575759; }
h5 {	font-size: 100%; color: #404040; padding-top: 4px; text-transform: none; color: #575759; }
h6 {	font-size: 100%; color: #404040; }


/* 
	** Content Elements
*/
p,
ul,
ol,
dl,
fieldset
{
	padding-bottom: 15px;
	line-height: 1.35em;
}
li
{
	line-height: 1.3em;
}
table
{
	margin-bottom: 15px;
}
em
{
	font-weight: bold;
}
blockquote
{
	color: #959697;
}
cite
{
	color: #c2c2c3;
}

/* 
	** Lists
*/
ul ul,
ol ol
{
	padding: 0;
	list-style-position: inside;
}
ul li,
ol li
{
	margin-left: 27px;
	padding-bottom: 4px;
}
ul
{
	list-style-type: none;
}
ul li
{
	margin-left: 0;
	padding-left: 20px;
	
	background-image: url(../images/bullet.gif);
	background-repeat: no-repeat;
	background-position: 6px .3em;
}
.content ul ul
{
	padding-top: 6px;
}
dl dt
{
	display: block;
	float: left;
	clear: both;
	width: 38%;
	padding-top: 2px;
	
	font-weight: bold;
}
dl dd
{
	display: block;
	margin-bottom: 2px;
	padding: 2px 0 3px 39%;
	
	border-bottom: 1px solid #efefef;
}

/* 
	** Links
*/
a:link,
a:visited
{
	color: #197fc8;
}
a:hover
{
	color: #228ee2;
}
a img
{
	border: 0;
}

/* 
	** tables
*/
table
{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	
	font-size: 90%;
}
table caption
{
	text-align: left;
	font-weight: bold;
}
table th,
table td
{
	padding: 4px;
	
	border: 1px solid #eaeaea;
}
table th
{
	text-align: left;
}
table thead th,
table thead td
{
	background-color: #eaeaea;
}