/**
 * @file
 * SLCGov App Template 
*/


/**
 *	Regions
*/
#slcgov-wrapper {
	width: 960px;
	margin: 0 auto;
}

#slcgov-app-header {
	background-image: url('../images/slcgov-app-header.png');
	width: 960px;
	height: 180px;
	position: relative;
}

h1#page-title {
	margin: 0;
	color: #FFF;
	position: absolute;
	right: 40px;
	bottom: 60px;
	text-shadow: 3px 3px 6px #000;
}

#slcgov-main {
	padding: 16px 32px;
	background-color: #FFF;
	font-size: 0.8em;
	min-height: 400px;	
}

#slcgov-content {
	padding: 0 32px;
}

/**
 *  Tab navigation
*/
#slcgov-tabs {
	background-color: #f2f2f2;
	width: auto;
	padding: 8px 16px;
}


#slcgov-tabs a {
	display: block;
	color: #818181;
	text-decoration: none;
	padding: 8px 18px;	
	float: left;
	border-left: 1px solid #818181;
}
#slcgov-tabs a.first {
	border-left: 0;
}

#slcgov-tabs a.selected, 
#slcgov-tabs a:hover {
	color: #4c4c4c;
	text-decoration: none;
}



/*
 * Tables
 *
 */
table {
  border-collapse: separate;
  width: 100%; /* Prevent cramped-looking tables */
}

th {
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

tr.even {	
	background-color: #F2F2F2;
}


/**
 * SLCGov styled table
*/
table.slcgov {
    border: 1px solid #BEBFB9;
    font-size: 0.923em;
    margin: 0 0 10px;
    width: 100%;
}
table.slcgov th {
    background: none repeat scroll 0 0 #E1E2DC;
    border-color: #BEBFB9;
    border-style: solid;
    border-width: 1px;
    font-weight: normal;
    padding: 3px 10px;
    text-transform: uppercase;
    border-bottom: 3px solid #CCCCCC;
    padding-right: 1em;
    text-align: left;
}
table.slcgov td, 
table.slcgov th {
    border: 0 none;
    color: #000000;
    padding: 8px 10px;
    vertical-align: middle;
}


/**
 *	Global
*/
body {
	margin: 0;
	padding: 0;
	background-color: #E2E0DD;
	font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

.clear {
	clear: both;
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
	font-family: 'Lato',arial,sans-serif;
}

/*
 * Block-level elements
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl,
hr, table, fieldset {
  margin: 1em 0;
}


/* Headings */
h1, h2, h3, h4, h5 {
	color: #2f4c88;
	font-weight: normal;
	font-family: Georgia,"Bitstream Charter",serif;
}

h1 {
  font-size: 2em;
  line-height: 1.5em;
  margin: 0.75em 0;
  /* 0.75em is equivalent to 1.5em in the page's base font. font. Remember, a
     margin specified in ems is relative to the element's font-size, not to the
     pages' base font size. So, for example, if we want a 1.5em margin (relative
     to the base font), we have to divide that length by the element's
     font-size:  1.5em / 2em = 0.5em  */
}

h2 {
  font-size: 1.5em;
  margin: 0.8em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.5 = 1em */
}

h3 {
  font-size: 1.3em;
  margin: 0.7em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.3 = 1.154 */
}

h4,
h5,
h6 {
  font-size: 1.1em;
  margin: 0.6em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

/* Other block-level elements */
p {
}

blockquote {
  margin-left: 2em;
  margin-right: 2em;
}

pre {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

hr {
  height: 1px;
  border: 1px solid #CCC;
  border-width:0;
  color:#ccc;
  background-color:#ccc;
  margin: 2em 0;
}



/*
 * Lists
 *
 */
ul,
ol {
  margin-left: 0; /* LTR */
  padding-left: 18px; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}
ul.dotted {	
	padding-left: 0;
	margin-left: 0;
}
ul.dotted li {
	list-style-type: none;
	padding: 4px 0;
	border-bottom: 1px solid #ccc;
}

ul li ul li {
	border-bottom: 0;
	list-style-type: inherit;
	margin-left: 1em;
	padding: 0;
}


ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }


/*
 * Links
 */
a:link, 
a:visited {
	color: #3DBAE1;
	text-decoration: none;
}

a:visited {
}

a:hover,
a:focus {
		text-decoration: underline;
}

a:active {
}

/*
 * Other inline elements
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic; /* Fixes IE scaling issues */
}

label {
}

/**
 * Styled buttons
*/
input.button,
a.button {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: url("../images/buttons.png") repeat-x scroll 0 0 transparent;
    border-color: #E4E4E4 #D2D2D2 #B4B4B4;
    border-radius: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px;
    color: #5A5A5A;
    cursor: pointer;
    font-family: "Lucida Grande",Verdana,sans-serif;
    font-size: 1.077em;
    font-weight: normal;
    margin-bottom: 1em;
    margin-right: 1em;
    padding: 4px 17px;
    text-align: center;
}

/**
 *	Print styles
*/

@media print {
	#slcgov-app-header {
		height: 70px; !important;
	}
	h1#page-title {
		top: 0 !important;
		bottom: auto !important;
	}
	
	#slcgov-tabs { 
		display: none !important;
	}
}


