@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #FFFFFF;
}
/* ~~Program Tables~~  */
table.program {
	border:1px;
	border-style:solid;
	border-color:#5e7d8f;
	padding:12px;
	margin-bottom:18px;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	text-align: left;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 1020px;
	margin: 0 auto;
	background-color: #FFF;
	/* [disabled]background-image: url(../images/yellowfooter.jpg); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: bottom; */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 115px;
	padding-top: 10px;
	background-image: url(../images/header_bg.jpg);
	background-repeat: no-repeat;
	z-index:100px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 250px;
	padding-bottom: 10px;
	padding-left: 30px;
	/* [disabled]background-color: #DBE5EB; */
}

.sidebar1 p
{
	/* [disabled]margin-bottom:0em; */
	/* [disabled]margin-top: 0px; */
	}

#p_number {
	background: url(http://www.plazacollege.edu/images/banner_contactphone.png) no-repeat;
	width: 217px;
	height: 110px;
	margin-top: 20px;
	}
#phone {
	font: bold 28px impact;
	text-align: center;
	padding-top: 61px;
	letter-spacing: 0;
	}
#it_phonePad {
	padding-bottom: 20px;
	}
.newsL {
	align: left;
	margin-right: 15px;
	height: 128px;
	width: 174px;
}
.newsS {
	align: left;
	margin-right: 15px;
	}

#newsboxes {
	height: 165px;
	border-bottom: 1px solid #dadada;
	margin-bottom: 10px;
	background-color: #fdfdfd;
}



	
.contentNew {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.75em;
	color:#023149;
	line-height:1.6em;
	width: 1020px;
	float: right;
	/* [disabled]padding-top: 10px; */
	padding-right: 0;
	/* [disabled]padding-bottom: 100px; */
	padding-left: 0;
	padding-top: 5px;
}	
	
.content {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.75em;
	color:#023149;
	line-height:1.6em;
	width: 708px;
	float: left;
	/* [disabled]padding-top: 10px; */
	padding-right: 0;
	/* [disabled]padding-bottom: 100px; */
	padding-left: 0;
}

.contentIT {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.75em;
	color:#023149;
	line-height:1.6em;
	width: 453px;
	float: left;
	/* [disabled]padding-top: 10px; */
	padding-right: 0;
	/* [disabled]padding-bottom: 100px; */
	padding-left: 0;
}

.content_wide {
	color:#023149;
	float: left;
	margin-left: 60px;
	width: 915px;
	background-color: #f2f6fa;
	height: 75px;
	font: 0.75em/1.6em Arial, Helvetica, sans-serif;
	padding: 5px 0 5px 5px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
}

.content_wide_list li{
	display: inline;
	padding-left: 138px;
	list-style-type: none;
	padding-left: 50px;
	position: relative;
	left: 168px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.contentNew ul, .contentNew ol {
	padding: 3px 15px 3px 40px;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 40px;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	/* [disabled]list-style: none; */ /* this removes the list marker */
	/* [disabled]border-top: 1px solid #666; */ /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	/* [disabled]margin-bottom: 15px; */ /* this creates the space between the navigation on the content below */
}
ul.nav li {
	/* [disabled]border-bottom: 1px solid #666; */ /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	/* [disabled]padding: 5px 5px 5px 15px; */
	/* [disabled]display: block; */ /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	/* [disabled]width: 160px; */  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	/* [disabled]text-decoration: none; */
	/* [disabled]background: #C6D580; */
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	/* [disabled]background: #ADB96E; */
	/* [disabled]color: #FFF; */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	/* [disabled]margin-left: 25px; */
	width: 225px;
	background-color: #EBEBEB;
	margin-top: 14px;
	margin-right: 30px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* -------------- Dreamweaver Code Above ----------------- */





/* --------------------- Header Area --------------------- */

/* Social media icons */
.iconrow {
	height:20px;
	/* [disabled]margin-right:20px; */
	/* [disabled]margin-top:3px; */
	background-color: #023149;
	padding-top: 4px;
	padding-right: 40px;
	padding-bottom: 1px;
	padding-left: 0px;
	z-index:-1px;
	
}
#icon {
	float:right;
	margin-right:12px;
}
.minilinks {
	font: bold .87321em arial;
	text-align:right;
	color:#b5cce1;
	float:right;
	margin-right:44px;
	margin-top:2px;
	
}
.minilinks a, .minilinks a:visited {
	color:#b5cce1;
	text-decoration: underline;
}
.minilinks a:hover {
	color:#fff;
	text-decoration: underline;
}

/* Plaza College logo */
#logoTitle {
	margin-left:28px;
	margin-top:13px;
	border:none;
	text-align:left;
}


/* search Top Bar */
.searchbar {
	height: 22px;
	width: 205px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}

.searchbar p {
	height: 22px;
	background-color: white;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0;
}

.searchbar input.textbox {
	color: navy;
	vertical-align: top;
	border-style: none;
	height: 14px;
	width: 140px;
	padding: 4px 4px 4px 5px;
}
.searchbar input.button {
	height: 22px;
	vertical-align: top;
	width: 48px;
	padding: 0;
}
.textbox:focus {
    outline: 1px solid #e8e7e9;
}

#searchbox {
	/* [disabled]background-image: url(../searchbg.png); */
	/* [disabled]background-repeat: no-repeat; */
	padding-top: 10px;
	margin-top: 5px;
}
.applynow {
    outline: 1px solid #e8e7e9;
}

#searchbox ul {
	list-style:none;
	padding:0;
	-moz-box-shadow: 2px 3px 6px #352323;
	-webkit-box-shadow: 2px 3px 6px #352323;
	box-shadow: 2px 3px 6px #352323;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	opacity: 0.99;
	border:0px solid #fade4e;
	background-image: url(http://www.plazacollege.edu/images/applynow_off.png);
	background-repeat: no-repeat;
	height:40px;
	width:165px;
}
#searchbox li {
	cursor:pointer;
	border:0px solid #fade4e;
	background-image: url(http://www.plazacollege.edu/images/applynow_off.png);	
	background-repeat: no-repeat;
	height:40px;
	width:165px;
	
}
#searchbox li:hover {
	border:0px solid #fade4e;
	background-image: url(http://www.plazacollege.edu/images/applynow_on.png);
	background-repeat: no-repeat;
	height:40px;
	width:165px;
}


/* --------------------- Main Content Area --------------------- */

#associate_box_outline{
	border:1px solid #CCC;
	margin-left:auto;
	margin-top:15px;
	margin-bottom:15px;
	background-color:#FFF;
	width:600px;
	margin-right: auto;
}
#associate_box{
	width:577px;
	display:block;
	line-height:2em;
	border:1px solid #CCC;
	background-image:url(../images/associate_box_bg.gif);
	background-repeat:repeat-x;
	margin:10px;
	padding-top: 15px;
	color:#FF0000;
}
.menubox							{
	height: 30px;
	background-image: url(../images/menu_bg.jpg);
	background-repeat: no-repeat;
	padding-left: 20px;
}


#illus_largeNew {
	/*margin-top:12px;*/
	margin-bottom: 14px;
}

#illus_large {
	margin-top:12px;
	margin-bottom: 14px;
}
.introtext {
	font-family:'News Cycle', sans-serif;
	font-size:1.3em;
	line-height:1.3em;
	width:680px;
	padding-right:18px;
	color:#023149;
	padding-bottom: 15px;
}
.content .programtitle2 {
	font-family:'News Cycle', sans-serif;
	font-weight:bold;
	font-size:1.5em;
	color:#023149;
	margin-top:10px;
	margin-bottom: 10px;
	background-color: #FFF;
}
.content .programtitle {
	font-family:'News Cycle', sans-serif;
	font-weight:bold;
	font-size:1.2em;
	color:#023149;
	margin-top:10px;
	margin-bottom: 10px;
	background-color: #FFF;
}
.content a {
	color:#3399CC;
	text-decoration:none;
}

.content a:hover {
	text-decoration:underline;
}

.sectiontitle {
	font-family:'News Cycle', sans-serif;
	font-size:2em;
	line-height:1em;
	font-weight:bold;
	color:#023149;
	margin-top:19px;
	margin-bottom:18px;
	text-align:left;
}

.imgLeftPad {
	margin-left: 108px;
}

/* content subtitles */
h2 {
	font-family:'News Cycle', sans-serif;
	font-size:1.6em;
	color:#023149;
	padding-bottom: 6px;
	padding-top: 15px;
	margin-bottom: 6px;
}
/*-------- inset box ----------*/
.insetbox {
	width:620px;
	margin-top:36px;
	padding:24px;
	/*border:solid 1px #00F;*/
	background: #98bede; /* Old browsers */

/* IE9 SVG, needs conditional override of 'filter' to 'none' */

background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk4YmVkZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWVmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);

background: -moz-linear-gradient(top,  #98bede 0%, #deefff 100%); /* FF3.6+ */

background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#98bede), color-stop(100%,#deefff)); /* Chrome,Safari4+ */

background: -webkit-linear-gradient(top,  #98bede 0%,#deefff 100%); /* Chrome10+,Safari5.1+ */

background: -o-linear-gradient(top,  #98bede 0%,#deefff 100%); /* Opera 11.10+ */

background: -ms-linear-gradient(top,  #98bede 0%,#deefff 100%); /* IE10+ */

background: linear-gradient(top,  #98bede 0%,#deefff 100%); /* W3C */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#98bede', endColorstr='#deefff',GradientType=0 ); /* IE6-8 */


}
.insettitle {
	font-family:'News Cycle', sans-serif;
	font-size:27pt;
	line-height:1.3em;
	font-weight:normal;
	color:#023149;
	margin-top:0px;
	margin-bottom:15px;
}
.insettext {
	width:550px;
	font-family:'News Cycle', sans-serif;
	font-size:16pt;
	line-height:20pt;
	font-weight:normal;
	color:#023149;
	margin-bottom:15px;
}

.paneltitles {
	font-family:'News Cycle', sans-serif;
	font-size:1.3em;
	color:#01478e;
	text-align:left;
	margin-left:12px;
	margin-top:10px;
	margin-bottom:10px;
}

.paneltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	font-weight: normal;
	color: #2e2d2d;
	text-decoration: none;
	text-align:left;
	width:195px;
	margin-left:12px;
	margin-top:6px;
}
/* Homepage Panels */
#panelwrap {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 18px;
	font-weight: normal;
	text-decoration: none;
	background-image: url(../images/panels_bg.jpg);
	background-repeat: repeat-x;
	margin-top: 0px;
	padding-right: 15px;
	/* [disabled]margin-bottom: 15px; */
	padding-left: 20px;
}
.panel1 {
	text-align:left;
	float: left;
	width: 215px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 24px;
	/* [disabled]background-image: url(../images/panels_bg.jpg); */
	/* [disabled]background-repeat: no-repeat; */
}
.panel2 {
	text-align:left;
	float: left;
	width: 215px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 24px;
}
.panel3 {
	text-align:left;
	float: left;
	width: 215px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 24px;
}
.panel4 {
	text-align:left;
	float: left;
	width: 215px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 24px;
}

/* disclousure */

.content_wrapper { margin:20px;}
h3.title_disc {
	color:#993300;
	font-size:15px;
	padding:.45em .75em .25em .75em;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-weight:bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666699;
}
h3.title_disc1 {  color:#369; font-size:14px; padding:.45em .75em .25em 0em; font-weight:bold; border-bottom:none; font-family:Arial, Geneva, Helvetica, sans-serif; }
table.disclosure {
	margin:15px 0 20px 0;
	padding:0;
	width:100%;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:1em;
	/* [disabled]background-image: url(../images/disclousure_bg.jpg); */
	/* [disabled]background-repeat: repeat-x; */
	background-color: #F3F3F3;
}
table.disclosure td {
	border-bottom:1px solid #e1e1e1;
	padding:.45em .75em;
	border-spacing:0;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:1em;
}
table.disclosure1 {
	margin:0px 0 20px 0;
	padding:0;
	width:100%;
	background-color:#FFF;
	border:1px solid #e1e1e1;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:1em;
}
table.disclosure1 td {
	padding:.45em .75em;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:1em;
}

table.outcomes {
	margin:15px 0 20px 0;
	padding:0;
	width:100%;
	border-collapse:collapse;
	font-family:Arial, Geneva, Helvetica, sans-serif;
	font-size:1em;
}
table.outcomes td {
	border:1px solid #e1e1e1;
	padding:.45em .75em;
	border-spacing:0;
	vertical-align:top;
	font-size:1em;
}
table.outcomes td a:link, table.outcomes td a:active, table.outcomes td a:visited{
	color:#09F;
	font-size:1em;
}

/* IT submenu */

#ITsubmenu ul
{
	margin-left: 0;
	color: White;
	padding-left: 21px;
	padding-top: 0;
	border-bottom: 1px solid #bfc1b0;
	background-image: url(../images/menu_it.png);
	background-repeat: repeat-x;
	font: .85em 'News Cycle', sans-serif;
	height: 2.4em;
}

#ITsubmenu ul li {
	display: inline;
}

#ITsubmenu ul li a
{
	/* [disabled]background-color: #6A8AA7; */
	color: #62625e;
	text-decoration: none;
	float: left;
	border-right: 1px solid silver;
	height: 2em;
	padding-top: 0.35em;
	padding-right: 2.7em;
	padding-bottom: 0.18em;
	padding-left: 2.7em;
}

#ITsubmenu ul li a:hover
{
color: #1f3560;
	background-color: #feca1c;
}

#ITsubmenu ul:last-child li:last-child a:last-child {
	border-right-style: none;
}

ul.degree_subnav li{display:inline;list-style:none;float:left;margin:0;padding:0;}



ul.event_listNew{
	margin:5px 0px 0px 0px;
	padding-left:0px;
}
ul.event_listNew li {
	display:block;
	padding-left:15px;
	margin-bottom:3px;
	padding-bottom:3px;
	background-repeat: no-repeat;
	background-position: 0px .25em;
	line-height: 1.2em;
	list-style-type: none;
}


ul.event_list{
	margin:5px 0px 0px 0px;
	padding-left:0px;
}
ul.event_list li {
	display:block;
	padding-left:15px;
	margin-bottom:3px;
	padding-bottom:3px;
	background-image: url(../LeadingA/img/bulletpoint.png);
	background-repeat: no-repeat;
	background-position: 0px .25em;
	line-height: 1.2em;
	list-style-type: none;
}

ul.event_list li.caption { border-bottom: none; font-size:11px; background-image:none; padding-top:15px; color:#990000;}

ul.event_listNew li.captionNew { border-bottom: none; font-size:9px; background-image:none;}


ul.event_listsp{
	margin:5px 0px 0px 0px;
	padding-left:0px;
}
ul.event_listsp li {
	display:block;
	padding-left:15px;
	margin-bottom:3px;
	padding-bottom:3px;
	background-color: #66ccff;  
	background-position: 0px .25em;
	line-height: 1.2em;
	list-style-type: none;
}

ul.event_listsp li.caption { border-bottom: none; font-size:11px; background-image:none; padding-top:15px; color:#990000;}
/* --------------------- Side Bar Area --------------------- */
#banner {
	margin-top: 14px;
}

ul.sub_menu li {
	line-height: 20px;
	font-size: 14px;
	
}

/* subnavigation */
.subnavlist {
	font-size: 15px;
	text-align:left;
	list-style:none;
	color:#023149;
	margin-left: 0px;
}

.subnavlist a:link, .subnavlist a:visited {
	color:#023149;
	text-decoration:none;
}

.subnavlist a:hover {
	text-decoration:underline;
	color:#023149;
	list-style:none;
}

.subnavlist li {
	font-family: 'News Cycle', sans-serif;
	line-height: 20px;
	margin-bottom: 10px;
}

.subnavlist ul {
	padding-left: 25px;
	line-height: 15px;
	margin-bottom: 12px;
	font-family: 'News Cycle', sans-serif;
	margin-bottom: 5px;
}
/* ITsubbar */
.news {
	text-align:left;
	list-style:none;
	color: #6f2c1a;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 5px;
	width: 212px;
	border-bottom: thin dotted #CCC;
	/* [disabled]background-color: #FFFFFF; */
	font: .78em/1.2em 'News Cycle', sans-serif;
}
.newscontainer {
	/* [disabled]background-color: #FFFFFF; */
	/* [disabled]width: 217px; */
	padding: 0;
	margin: 0;
	background-image: url(../currentstudents/it/images/servicestatusbg.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.newscontainer p{
	padding: 0;
	margin: 0;
	/* [disabled]background-color: #00F; */
}

.classesinfoNew {
	padding: 0;
	background-color: #E0EEFB;
	border-style: solid;
	border-width: 1px;
	margin: 20px 0 0;
	color: #4b5c86;
}

/* --------------------- Footer Area --------------------- */


.footerhome {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	padding-right: 0px;
	padding-left: 0px;
	/* [disabled]vertical-align: bottom; */
	height: 280px;
	top: 0px;
	background-image: url(../images/whitefooter.jpg);
	background-repeat: no-repeat;
	padding-top: 95px;
}


/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	padding-right: 0px;
	padding-left: 0px;
	/* [disabled]vertical-align: bottom; */
	height: 290px;
	top: 0px;
	background-image: url(../images/yellowfooter.jpg);
	background-repeat: no-repeat;
	padding-top: 145px;
}

/* footer area */
.footer_list li {
	margin-bottom:4px;
	text-decoration: none;
	list-style-type: none;
}
.footerfirst {
	margin-left:36px;
	margin-top:2px;
}

.footertitles {
	font-family:Arial, Helvetica, sans-serif;
	font-size:.8em;
	font-weight:bold;
	color:#b5cce1;
	text-align:left;
}

.footerfirst td {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	font-weight:normal;
	color:#b5cce1;
	text-align:left;
}

.footerfirst a, .footerfirst a:visited {
	text-decoration:none;
	color:#b5cce1;
}
.footerfirst a:hover {
	text-decoration:underline;
	color:#fff;
}

.copyright {
	background-image:url(../images/copyright.jpg);
	/* [disabled]background-repeat:no-repeat; */
	height: 32px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.7em;
	color:#b5cce1;
	text-align:right;
	/* [disabled]margin-right:18px; */
	margin-top:6px;
	padding-right: 15px;
	/* [disabled]margin-left: 1px; */
	background-color: #0A3148;
	padding-top: 4px;
}


.copyright a, .copyright a:visited {
	text-decoration:underline;
	color:#b5cce1;
}
.copyright a:hover {
	text-decoration:underline;
	color:#fff;
}

#iTStyle {
	text-decoration:none;
	padding-left: 10px;
}

#iTStyle h2 {
	color: #27618F;
	padding-bottom: 25px;
}

#iTStyle a:link {
	text-decoration:underline;
	color: #930;
}

#iTStyle a:hover {
	text-decoration:none;
	color: #930;
}

#iTStyle a:visited {
	text-decoration:underline;
	color: #830;
}

#iTStyle .subcontent p strong .introtext {
	color: #39C;
}

#bullet {
	text-decoration:none;
	padding-left: 10px;
}

#bullet li {
	adding-left: 10px;
	background-image: url(../currentstudents/it/images/bullet.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 28px;
	padding-left: 28px;
	list-style-type: none;
	line-height: 22px;
}

#nobullet {
	text-decoration:none;
	list-style-type: none;
	line-height: 25px;
	padding-left: 10px;
	margin-left: 10px;
}
.titleQuick {
	font-size: 2em;
	color: #3B6DB6;
	font-weight: normal;
}
.titleLinks {
	text-decoration:none;
	color: #777;
	font-size: 2em;
}
.quicklinksbg {
	text-decoration:none;
	background-image: url(../currentstudents/it/images/guicklinks_bg.gif);
	background-repeat: no-repeat;
	/* [disabled]width: 445px; */
	padding-left: 15px;	
}
.list1 {
	width: 190px;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #BFBFBF;
}
.list2 {
	width: 225px;
	float: left;
	/* [disabled]padding-left: 0px; */
	/* [disabled]margin-left: 0px; */
	color: #069;
}
.subcontent {
	/* [disabled]width: 450px; */
	background-image: url(../currentstudents/it/images/subcontent_bg.gif);
	background-repeat: no-repeat;
	background-color: #FFF;
}
	
	
.itsubcontent {
	background-color: #E8E8E8;    
    }
.itindent {
	margin-left: 15px;
    }
	
	
.iTTitles {
	font-family:'News Cycle', sans-serif;
	font-size:1.4em;
	color:#023149;
	text-align:left;
	/* [disabled]margin-left:12px; */
	margin-top:10px;
	margin-bottom:10px;
	font-weight: bold;
}
	
	
.breadcrumb {
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DDD;
	padding-top: 10px;
	color: #666;
	font-size: 0.95em;
    }
	
/* --------------------- Form Page Area --------------------- */

input[type=text], textarea {
	width: 65%;
	font:13px sans-serif;
	max-width: 960px;
	color: #4f4f4f;
	border: 1px solid #c0c0c0;
	text-align: left;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
}






/* ---- Google Form ----- */
.ss-form-entry select {
    border: 1px solid #C0BABA;
    color: #336;
    font: 13px sans-serif;
    height: 25px;
    max-width: 960px;
    width: 100%;
    padding-top: 5px;
}

.ss-form-entry input[type="text"], .ss-form-entry textarea {
    width: 90%;
}
.ss-form-entry {
    height: 54px;
}

#navigation-table input[type="submit"] {
    background: url("http://www.plazacollege.edu/LeadingA/img/submit-new.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    background-color: #FFFFFF;
    background-image: -moz-linear-gradient(0%) !important;
    border: 0px !important;
    border-radius: 0px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    color: #191919;
    font-family: Arial,Helvetica,sans-serif;
    line-height: 1;
    margin: 1em 0;
    padding: 8px 15px 6px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.25);
    width: 78px !important;
     height: 28px;
}

/* ---- Google Form Area Ends ----- */





select {
	border: 1px solid #c0baba;
	font:13px sans-serif;
	height:25px;
	color: #101033;
	width: 70%;
	max-width: 960px;
}
​  input[type=text] {
	background-image: -webkit-gradient(linear, 0% 0%, 0% 12%, from(#999), to(#FFFFFF));
	background-image: -moz-linear-gradient(0% 12% 90deg, #FFFFFF, #999);
	background-color: #FFFFFF;
}
textarea {
	background-image: -webkit-gradient(linear, 0% 0%, 0% 3%, from(#999), to(#FFFFFF));
	background-image: -moz-linear-gradient(0% 4% 90deg, #FFFFFF, #999);
	background-color: #FFFFFF;
}
input[type=text]:focus, textarea:focus {
	-webkit-box-shadow: 0 0 12px #33CCFF;
	-moz-box-shadow: 0 0 12px #33CCFF;
	box-shadow: 0 0 12px #33CCFF;
}
input[type=submit] {
	margin: 1em 0;
	padding: 8px 15px 6px;
	width: 250px;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
	color: #191919;
	text-shadow: 0 1px 1px rgba( 255, 255, 255, 0.25 );
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba( 255, 255, 255, 0 )), to(#BBBBBB));
	background-image: -moz-linear-gradient(0% 100% 90deg, #BBBBBB, rgba( 255, 255, 255, 0 ) );
	background-color: #FFFFFF;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	-o-border-radius: 23px;
	border-radius: 23px;
	-webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.5 );
	-moz-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.5 );
	box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.5 );
}
input[type=submit]:hover {
	color: nil;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba( 255, 255, 255, 0 )), to(#595959));
	background-image: -moz-linear-gradient(0% 100% 90deg, #595959, rgba( 255, 255, 255, 0 ) );
	background-color: nil;
}


.degree_descriptionNew {
	width: 750px;
	/* [disabled]height: 800px; */
	float: left;
}


.degree_description {
	width: 400px;
	/* [disabled]height: 800px; */
	float: left;
}


.degree_formNew {
	width: 251px;
	float: right;
	padding-left: 15px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}



.degree_form {
	width: 270px;
	float: right;
	padding-left: 15px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}



.formboxNew {
	background-color: #F6F6F6;
	width: 219px;
	padding-bottom: 10px;
	padding-left: 15px;
	border:1px solid #4B5C86;
/*background-image: url(../LeadingA/img/callheader.jpg);*/
	background-repeat: no-repeat;
	background-position: left top;
	padding-right: 15px;

	
}





.formbox {
	background-color: #F4F9FF;
	width: 219px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	background-image: url(../LeadingA/img/callheader.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

.formboxSp {
	width: 219px;

	padding-right: 15px;

	padding-bottom: 10px;

	padding-left: 15px;

	border-right-width: 1px;

	border-bottom-width: 1px;

	border-left-width: 1px;

	border-right-style: solid;

	border-bottom-style: solid;

	border-left-style: solid;

	border-right-color: #4b5c86;

	border-bottom-color: #4b5c86;

	border-left-color: #4b5c86;
	background: url() no-repeat left top #f6f6f6;
	border-top: 1px solid #4b5c86;

	}
	
	.bluebox {
	list-style-position: outside;
	list-style-type: none;
}
.smtext {
	font-size: 10px;
	color: #6d6868;
	padding-left: 10px;
}

.callheader {
	height: 95px;
	width: auto;
	padding-top: 20px;
	line-height: 10px;
}
.callheader h3 {
	font-size: 23px;
	color: #91060A;
}
.callheader p {
	font-size: 16px;
	letter-spacing: .001em;
	line-height: 0px;
}
#txtcontentLead {
	color: #033d59;
	width:1000%;
    padding:110px;
    height:42px;
    outline:none;
}
.txtBullet {
	font-size: 12px;
	color: #27292c;
	font-family: Arial
}


/* ---- CAPTCHA Style ---- */

#btnRetry {
width:200px;
font-size: 1.02em;
font-weight: normal;
background:#F4F9Fc;
height:30px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
border: 1p solid #999;
}
#btnRetry:hover {
	background:#fff;
	color:#023149;
}
#captcha_box {
	background-color:#ffffff;
	border: 1p solid #999;
	padding: 4px;
	font-size:11px;
	width:210px;
}
/* --.footer { this style was placed on the degree pages within the header. Also the footer div tag was moved just outside the end container tag.
	margin-left: auto;
	margin-right: auto;
	width: 1020px;
}--*/

/* ---- CAPTCHA Style ---- */


/* ---- Newsletter Style ---- */


.news-subtitle {
  color:#023149;
  font-family:'News Cycle', sans-serif;
  font-size:14pt;
  font-weight:normal;
  line-height:20pt;
  margin-bottom:15px;
  width:550px;
}
.newsletter_caption {
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DDD;
	padding-top: 10px;
	color: #666;
	font-size: 0.95em;
    }
/* --------------------- Form Page Area ENDS --------------------- */

.left_phone { font-family:Impact; font-size:28px; margin-top:-50px; margin-left: 35px; margin-bottom: 15px; }
.left_phone2 { font-family:Impact; font-size:28px; margin-top:-60px; margin-left: 35px; margin-bottom: 25px; }
.left_phone3 { font-family:Impact; font-size:28px; margin-top:-70px; margin-left: 35px; margin-bottom: 25px; }
