/*********************************************************************************************** 

	Section 0 - CSS reset 

	Section 1 - General

	Section 2 - Global Nav

	Section 3 - Header

	Section 4 - Main Navigation

**********************************************************************************************/


/* Section 0 - CSS reset 
----------------------------------------------------------------------------------------------- 
   The CSS reset strips the default styles of all elements in the document to make them 
   "plain", so we can set them without having to override existing values. This CSS reset was
   created by CSS guru Eric Meyer.
============================================================================================ */ 

/* http://meyerweb.com/eric/tools/css/reset/ */

/* v1.0 | 20080212 */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td { margin:0; padding:0; border:0; outline:0; vertical-align:baseline; background:transparent; }
body { line-height:1; }
ol,ul { list-style:none; }
blockquote,q { quotes:none; }
blockquote:before,blockquote:after,q:before,q:after { content:''; content:none; }

/* remember to define focus styles! */
:focus { outline:0; }

/* remember to highlight inserts somehow! */
ins { text-decoration:none; }
del { text-decoration:line-through; }

/* tables still need cellspacing=''; in the markup */
table { border-collapse:collapse; border-spacing:0; }



/* Section 1 - General 
----------------------------------------------------------------------------------------------- 
   These will be the default styles we create for our pages, including the outer container 
   which holds everything on the page.
============================================================================================ */ 

body {
	font-family: Trebuchet MS, Trebuchet, Arial, Helvetica, sans-serif;
	background: #0f3367 top center repeat-x url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_main.jpg);
	color:#000;
}

a {
	/*color:#ea7125;*/
        color:#000;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#container {
	width:760px;
	overflow: visible;
	margin:0 auto;
}

.clear {
	clear: both;
	height:0px;
	font-size: 0px;
}

.noborder {border:none;}

.fl {float:left;margin: 0 15px 15px 0;}

.fr {float:right;margin: 0 15px 0 15px;}

.hidden {display: none;}

/* Section 2 - Global Nav 
----------------------------------------------------------------------------------------------- 
   These styles cover the links and search area at the top of the page.
============================================================================================ */ 


#globalnav {
	text-align:right;
	font-size:.6em;
	padding:12px 0;
	letter-spacing:.1em;
}

#globalnav ul li {
	display:inline;
	padding-left:10px;
}

#globalnav a {
	color:#c2d7e7;
	text-transform: uppercase;
	font-weight:bold;
}

#globalnav a:hover {
	border-bottom:solid 1px #c2d7e7;
	text-decoration: none;
}

#globalnav form, #globalnav form div {
       width:130px;
       display:inline;
}

#globalnav input {
	background-image:none;
	border:none;
	background-color:#b0c6e8;
	width:95px;
	font-family:Arial, helvetica, sans-serif;
	color:#1c1b1b;
	font-size:.9em;
	padding:3px 0 2px 5px;
	vertical-align:middle;
}

#globalnav input#headsearchbutton {
	background-color:transparent;
	width:16px;
	height:16px;
	padding-bottom:4px;
	vertical-align:middle;
}

/* Section 3 - Header 
----------------------------------------------------------------------------------------------- 
   These styles cover the blue area above the main navigation bar.
============================================================================================ */ 

#head {
	background:#0046ad -11px top no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_head.gif);
	height:100px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	position:relative;
}

#head h1 {display:none;}

#head ul {
	margin-left:615px;
	padding:25px 0 0;
}

#head li {
	font-size: .6em;
	line-height:150%;
}

#head li a {
	color:#81a3d6;
	text-transform: uppercase;
	font-weight:bold;
	letter-spacing: .1em;

}

#head li a:hover {
	border-bottom:solid 1px #81a3d6;
	text-decoration: none;
}


/* Section 4 - Main Navigation 
----------------------------------------------------------------------------------------------- 
   Orange navigation bar and its rollover and selected states.
============================================================================================ */ 

#mainnav {
	height:29px;
	display: block;
}

#mainnav li {
	list-style: none;
	float:left;
}

#mainnav li a {
	background-image: url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_mainnav2.gif);
	background-repeat: no-repeat;
	display: block;
	font-size: 1px;
	text-indent: -10000px;
	height:29px;
	
}

#mainnav li.prospectivestudents a {width:179px;background-position:    0   0}
#mainnav li.parents a             {width: 80px;background-position: -179px 0}
#mainnav li.alumnifriends a       {width:131px;background-position: -259px 0}
#mainnav li.visitors a            {width: 82px;background-position: -390px 0}
#mainnav li.currentstudents a     {width:148px;background-position: -472px 0}
#mainnav li.faculty a             {width:140px;background-position: -620px 0}

#mainnav li.prospectivestudents a:hover {background-position:    0   -29px}
#mainnav li.parents a:hover             {background-position: -179px -29px}
#mainnav li.alumnifriends a:hover       {background-position: -259px -29px}
#mainnav li.visitors a:hover            {background-position: -390px -29px}
#mainnav li.currentstudents a:hover     {background-position: -472px -29px}
#mainnav li.faculty a:hover             {background-position: -620px -29px}




/* Section 5 - Feature 
----------------------------------------------------------------------------------------------- 
   This covers the area between the main navigation bar and the footer.
============================================================================================ */ 
#homelink {
        margin: 10px 0 0 10px;
        font-size:11px;
}
#homelink a {
        text-decoration:underline;
        font-size:11px;
}
#feature {
	min-height:500px;
	height:auto !important;
	height:500px;
	background: #fff top right repeat-y url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_feature.gif);
	overflow: visible;
}

#feature_home {
	min-height:500px;
	height:auto !important;
	height:500px;
	background-color: #f1e9c9;
	overflow: visible;
}


/* Section 5.1 - Main 
----------------------------------------------------------------------------------------------- */ 

#main {
	width:540px;
	float:left;
}

#main .headline {
	height:65px;
	color:#757269;
	position: relative;
	background-color: #f1e9c9;
}

#main .headline h1 {
	float:left;
	font-size: 1.6em;
	text-transform: uppercase;
	position: absolute;
	letter-spacing: 2px;
	left:30px; 
	bottom:10px;
	font-weight: normal;
}

#main .headline p.date {
	float:right;
	font-size: /*.70em*/ .63em;
	vertical-align: bottom;
	position: absolute;
	right:25px;
	bottom:10px;
}

*html #main .headline p.date {
	padding-bottom:3px;
}

*+html #main .headline p.date {
	padding-bottom:3px;
}


/* Section 5.2 - Flash Hero 
----------------------------------------------------------------------------------------------- */

#flashspacer {
	margin-top:14px;
	position: relative;
	height:400px;
	width:519px;
/* 	border: dotted 1px red; */
	z-index: 100;
}

#flashholder {
	position: absolute;
	height:400px;
	width:884px;
/* 	border: dotted 1px blue; */
}

#flashcontent {
	width:580px;
	height:400px;
	position:absolute;
    overflow:hidden;
	top:0px;
	left:-62px;
}


/* Section 5.5 - Articles under flash on home page 
----------------------------------------------------------------------------------------------- */

#home_articles {
	width: 459px;
	min-height:174px;
	height:auto !important;
	height:174px;
	background: #f1eacb top left no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_home_articles.jpg);
	padding: 25px 33px;
}

#home_articles ul.column {
	width:130px;
	float:left;
	margin-right:25px
}

#home_articles ul.column li {
	padding-bottom: 20px;
}

#home_articles ul.column li h2 {
	font-size: .75em;
	line-height: /*145%*/ 1.35em;
	margin: .3em 0 .1em 0;
}

#home_articles ul.column li p {
	font-size: .65em;
	line-height: /*150%*/ 1.35em;
}

#home_articles ul.column li a {
	color:#000;
}


#newsevents {
	width:290px;
	float:left;
}

ul.tabs {
	height:28px;
	background: transparent bottom left repeat-x url(/renderfile/global/www.uta.edu/uta/images/template/pixel_tan.gif);
}

ul.tabs li {
	height:33px;
	float:left;
}

ul.tabs li.newstab {
	width:73px;
}

ul.tabs li.eventstab {
	width:79px;
}

ul.tabs li a {
	display: block;
	font-size: 1px;
	text-indent: -10000px;
	height:28px;
	background-image: url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_tabs.gif);
	background-repeat: no-repeat;
}

ul.tabs li.newstab a {
	width:76px;
	background-position: left top;
}

ul.tabs li.eventstab a {
	width:82px;
	background-position:-76px top ;
}

ul.tabs li.newstab a.current {
	background-position: left -28px;
}

ul.tabs li.eventstab a.current {
	background-position:-76px -28px;
}

.panes {
	background: transparent top left no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_panes.jpg);
	min-height:271px;
	height:auto !important;
	height:271px;
	padding: /*17px 12px*/ 17px 15px;
}

.panes ul li {
	padding-bottom: 12px;
	line-height: /*125%*/ 1.5em;
	font-size: .75em;
}

.panes ul.morelinks li {
	font-size: .65em;
	padding-bottom: 0;
	line-height: 1.5em;

}

.panes .date {
	color: #767676;
	font-size: /*.9em*/ .65em;
	line-height: 1.2em;
}

.panes a {
	color: #191919;
}

.panes h2 {
	text-transform: uppercase;
	font-size: /*1em*/ .75em;
	color: #2c2c2c;
	letter-spacing: .05em;
}

.panes table {
	border-top:solid 1px #e4d7a2;
	margin:7px 0 20px 0;
}

.panes table tr td {
	padding:10px 0 0 0;
	line-height: /*125%*/ 1.5em;
	font-size: .75em;
}

.panes table tr td.date {
	width:55px;
}


/* Section 5.6 - Right Nav Bar 
----------------------------------------------------------------------------------------------- */

#rightnav {
	float:right;
	margin:14px -16px 0 0;
}

#rightnav .subnav {
	padding:/*20px*/ 40px 0 15px 0;
	font-size: /*.85em*/ /*.60em*/ .65em;
	background: #e2d390 14px 17px no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_subnav.gif);
	position:relative;
	width:235px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
}

#rightnav .subnav ul {
	position:relative;
	float:left;
	padding:0 10px 0 15px;
}

#rightnav .subnav ul li {
	line-height:/*150%*/ 1.25em;
	margin-bottom: .7em;
}

*html #rightnav .subnav ul li { margin-bottom: .4em;}

*+html #rightnav .subnav ul li { margin-bottom: .4em;}

#rightnav .subnav ul li a {
	color: #433f2b;

}

#rightnav .subnav ul li a:hover {
	border-bottom: solid 1px #000;
}

#getready {
	background: #0046ad 14px 16px no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_getreadyhead.gif);
	width: 199px;
	margin:20px 0;
}

#getready h2 {
	display:none;
}

#getready .scrollup {
	height: 25px;
	text-align: right;
	padding:18px 7px 0 0;
}


#getready .scrolldown {
	background-color: #ea7125;
	height: 22px;
	text-align: right;
	padding:7px 7px 0 0;
}

#getreadyslides {
	background-color:#fff;
	border-left: solid 1px #e5d9a6;
	border-right: solid 1px #e5d9a6;
	width: 197px;
    position:relative; 
    overflow:hidden; 
/* 	height:485px; */
}

#getreadyslides .items {
/*
    position:absolute; 
    height:20000em;
*/
}

#getreadyslides .items .item {
	margin: 12px 10px;
	padding:0 3px 12px 3px;
	border-bottom: solid 1px #f0eee8;
}

#getreadyslides .items .item h3 {
	color: #ea7125;
	font-size: .85em;
	line-height: 1.35em;
}

#getreadyslides .items .item p {
	font-size: .7em;
	padding:3px 0 12px 0;
	line-height: /*150%*/ 1.45em;
}



/* Footer 
----------------------------------------------------------------------------------------------- 
   
============================================================================================ */ 

#footer {
	background-color: #0046ad;
	border-top:solid 6px #ea7125;
	color:#98b3db;
	margin-bottom: 40px;
}

#footer a {
	color:#98b3db;
}

#footer .addresslinks {
	border-right:solid 1px #3067b3;
	float:left;
	width:425px;
	padding:20px 75px 20px 20px;
	font-size:  /*.65em */.60em;
	line-height: /*140%*/ 1.5em;
}

#footer .addresslinks ul {
	margin-top:18px;
}

#footer .addresslinks ul li {
	display:inline;
}

#footer .footlinks {
	float:left;
	padding:20px 0 0 20px;
	font-size: .70em;
	line-height: /*140%*/ 1.5em;
}

/* for Current Students and Faculty/Staff pages only */
#emailform {
color:white;
font-family:verdana,arial,sans-serif;
font-size:11px;
margin:10px 0 8px 26px;
}
#emailform img {float:left;margin-right:5px;}

/* For images in body of pages */
.floatleft {
float:left;
margin: 0 20px 10px 0;
}
.float-right {
float:right;
margin: 0 0 10px 20px;
}

/* This is for body of second-level pages */

#feature p, #feature li, #feature ol, #feature div {line-height: 1.3;font-size:13px;}
.article p {margin:10px 0px;}

.article p a:link,    {text-decoration:underline; }
.article p a:visited  {text-decoration:underline; }
.article p a:hover    {text-decoration:underline; }
.article p a:active   {text-decoration:underline; }
.article ol, .article ul {
list-style-image:none;
list-style-position:outside;
list-style-type:disc;
}
.article li {margin:0 20px;}

.article ol#vsip-ol1
{
	list-style-type:decimal !important;
}

.article ol#vsip-ol1 li
{
	padding:0 0 10px !important;
}

.article ol#vsip-ol2
{
	list-style-type:lower-latin !important;
}

.article ol#vsip-ol2 li
{
	padding:0 0 10px !important;
}

.article table.vsip-table
{
	margin-bottom:20px;
}

.article table.vsip-table th
{
	padding:0 0 10px;
	font-weight:bold;
	text-align:left;
}

.article table.vsip-table td
{
	padding:0 25px 10px;
}



div#head a#homeLink
{

        height:100px;
	left:0;
	position:absolute;
	top:0;
	width:600px;
}

#announcement {
 margin-top: 21px;
 width:173px;
 background:#ea7125 right 6px no-repeat url(/renderfile/global/www.uta.edu/uta/images/template/bkgd_announcement.gif);
 color:#fff;
 padding:15px 13px;
 line-height:110%;
}
#announcement h2 {
 font-size:.85em;
 font-weight: normal;
 margin-bottom: .5em;
}
#announcement p {
 font-size:.70em;
}
#announcement a {
 color:#fff;
}
#announcement p.readMore
{
	text-align: right;	
}
