@charset "utf-8";

/* 
================================
 Main styles for abcnet
================================
*/

/*


#page_top {
	background-image: url(../assets/layouts/grey/page_top_grey.png);
	background-repeat: no-repeat;
	height: 130px;
	width: 957px;
	text-align: right;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	margin-right: auto;
	margin-left: auto;
}




#content_wrapper {
	width: 943px;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.875em;
	color: #000000;
	text-align: left;
	line-height: 1.4em;
	font-weight: normal;
	letter-spacing: 0.1em;
	padding-right: 6px;
	padding-left: 6px;
	height: 1100px;
	background-image: url(../assets/layouts/grey/content-bg-grey.png);
	background-repeat: no-repeat;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	

}



#top_nav {
	height: 130px;
	width: 940px;
	background-repeat: repeat-x;
	font-size: 0.875em;
	letter-spacing: 0.1em;
	background-image: url(../assets/layouts/grey/topnav-grey.png);
	padding-top: 2px;
	padding-right: 5px;
	padding-left: 10px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
	text-align: left;
	background-color: #ABBABC;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
}



	#footer_content {
	width: 957px;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	height: 123px;
	background-repeat: no-repeat;
	background-image: url(../assets/layouts/grey/page_bot_grey.png);
	margin-right: auto;
	margin-left: auto;
}
/*
/* skin options end */


/* SpryTabbedPanels */


.TabbedPanels {
	float: left;
	clear: none;
	width: 705px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.5em;
	color: #FFFFFF;
	height: 100px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	width: 120px;
	margin-right: 1px;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	height: 20px;
	background-image: url(/assets/css_images/tab/tab_off.png);
	font-size: 0.8em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background-image: url(/assets/css_images/tab/tab_hov.png);
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-image: url(/assets/css_images/tab/tab_on.png);
	color: #FFCC33;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	height: 65px;
	background-repeat: no-repeat;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 10px;
	color: #FFFFFF;
	background-image: url(/assets/css_images/tab/genral-bg.png);
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.1em;
}
a:link {
	color:#E9CC13;
	text-decoration: none;
	font-weight: bold;
}      /* unvisited link */
a:visited {
	color:#CCCCCC;
	text-decoration: none;
	font-weight: bold;
}  /* visited link */
a:hover {
	color:#FF9900;
	font-weight: bold;
	text-decoration: none;
}  /* mouse over link */
a:active {
	color:#FFFF00;
	text-decoration: none;
	font-weight: bold;
}  /* selected link */



/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 50em;
	background-color: #EEE;
	position: relative;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	width: 30em;
	height: 20em;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.TabbedPanelsContent_connect {
	color: #FAA51A;
	background-image: url(/assets/css_images/tab/connect-bg.png);
	background-repeat: no-repeat;
	height: 50px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.TabbedPanelsContent_managed {
	color: #FAA51A;
	background-image: url(/assets/css_images/tab/managed-bg.png);
	background-repeat: no-repeat;
	height: 50px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.TabbedPanelsContent_telecoms {
	color: #FAA51A;
	background-image: url(/assets/css_images/tab/telecom-bg.png);
	background-repeat: no-repeat;
	height: 50px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.TabbedPanelsContent_gen {
	color: #FAA51A;
	background-image: url(/assets/css_images/tab/genral-bg.png);
	background-repeat: no-repeat;
	height: 50px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}




body {
	background-repeat: no-repeat;
	background-color: #000032;
	margin: 0px;
	font-size: 100%;
	line-height: 1.125em;
	background-position: left top;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	background-attachment: fixed;
	background-image: url(../assets/layouts/blue/fullbg.jpg);
	text-align: right;
}


h1 {
	font-size: 2em;/* 16x1.636=36px */
	font-weight: bold;
	color: #003366;
	text-transform: capitalize;
	letter-spacing: 0.2em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
h2 {
	font-size: 1.5em;
	color: #003366;
}


img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


#wrapper {
	width: 957px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	clear:both;
	overflow: auto;
}
#logo_banner {
	height: 20px;
	width: 957px;
	text-align: right;
	color: #FFFFFF;
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	background-repeat: no-repeat;
	background-position: right;
	float: none;
	font-weight: bold;
	padding-top: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	letter-spacing: 0.2em;
}

#splash {
	background-repeat: no-repeat;
	height: 200px;
	width: 955px;
	background-image: url(../assets/splashes/splash_tempv2.jpg);
	background-color: #1A3347;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

#side_bar {
	float: left;
	font-size: 0.85em;
	background-repeat: repeat-y;
	padding-top: 130px;
	font-family: Arial, Helvetica, sans-serif;
	color: #003366;
	margin: 0px;
	list-style-type: none;
	list-style-image: url(../assets/bullets/nav_bullet.png);
	text-align: left;
}


#colum1 {
	height: 200%;
	width: 400px;
	float: left;
	text-align: left;
	padding-right: 5px;
	padding-left: 15px;
	
	
		
}
#colum2 {
	height: 200%;
	width: 280px;
	float: right;
	text-align: right;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 20px;


	
}


#email_to {
	background-image: url(../assets/xslt_images/email.png);
	height: 40px;
	width: 128px;
	background-repeat: no-repeat;
}

table.stats 
{
	text-align: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;
	color: #fff;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}

table.stats td 
{
	color: #000;
	text-align: center;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

table.stats td.hed
{
	color: #fff;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}
table.col {
	text-align: right;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 11px;
	color: #000066;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}

#smallpint_white {
	font-size: 0.8em;
	color: #CCCCCC;
	line-height: 1em;
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
#twitterbox {
	position:relative;
	width:164px;
	height:130px;
	background-image: url(../assets/layouts/blue/twitterbox.png);
	color: #FFCC00;
	font-family: Arial, Helvetica, sans-serif;
	background-repeat: no-repeat;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 15px;
	font-size: 1em;
	text-align: left;
}
#part_logo {
	width: 500px;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	height: 70px;
	background-repeat: no-repeat;
	padding-top: 10px;
	float: left;
	text-align: center;
}
#holding_splash {
	background-image: url(../assets/holding/hold-splash.png);
	height: 250px;
	width: 810px;
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	background-position: center top;
}
#holding_topcol {
	height: 220px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 790px;
	text-align: right;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#holding_bottom_col {
	height: 350px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 800px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
#holding_right {
	height: 220px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 300px;
	text-align: left;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	float: right;
	text-indent: 2px;
}
#holding_left {
	height: 220px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 400px;
	text-align: left;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 5px;
	float: left;
}
#holding_info {
	height: 80px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 800px;
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
	font-weight: bold;
}
#holding_links {
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	width: 800px;
	text-align: right;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 15px;
	padding-left: 15px;
}



/*
================================
Curved boxes
================================
*/

.bl 
{
	width: 20em;
	background-color: #FFFFFF;
	background-image: url(../assets/css_images/corners/white-corners/bl.png);
	background-repeat: no-repeat;
	background-position: 0 100%;
}
.br 
{
	background-image: url(../assets/css_images/corners/white-corners/br.png);
	background-repeat: no-repeat;
	background-position: 100% 100%;
}
.tl 
{
	background-image: url(../assets/css_images/corners/white-corners/tl.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.tr 
{
	padding:10px;
	background-image: url(../assets/css_images/corners/white-corners/tr.png);
	background-repeat: no-repeat;
	background-position: 100% 0;
}
.clear 
{font-size: 1px; height: 1px}




/*
================================
SECONDARY NAVI STYLES 
================================
*/
.secondaryNav
{
	text-align: left;
	list-style-type: none;
}

    .secondaryNav h3
    {
	color:#000066;
	font-size:1em;
    }
    
    .secondaryNav li
    {
	padding:6px 0 4px 0;
    }
    
        .secondaryNav li.selected a
        {
	color:#FF9900;
        }
    
        .secondaryNav li a
        {
	color: #003366;
        }
        
            .secondaryNav ul.events li a em
            {
	color:#FF9900;
            }
            
            .secondaryNav li a span
            {
               
                padding:0 7px 0 0;
            }
/*
================================
CONTACT STYLES
================================
*/

.form .text
{
    width:265px;
    margin:0 10px 0 0;
}

.form .fields
{
    width: 265px;
}

fieldset legend
{
    display:none;
}

fieldset label
{
    display:block;
    margin:10px 0 0 0;
}

fieldset label.first
{
    margin:0;
}

fieldset input
{
    background-color:#252525;
    border:2px solid #515151;
    width:265px;
    height:17px;
    padding:2px;
    margin:0 0 3px 0;
    
    color:#FFFFFF;
    font-size:14px;
}
  
fieldset textarea
{
    background-color:#252525;
    border:2px solid #515151;
    width:265px;
    height:130px;
    padding:2px 2px 1px 2px;
    margin:0 0 3px 0;
    
    font-family:Arial, Verdana, Sans-Serif;
    color:#FFFFFF;
    font-size:14px;
}

    fieldset input:focus, fieldset textarea:focus
    {
        border:2px solid #619ca7;
    }

fieldset input.error, fieldset textarea.error
{
    border:2px solid #F49AC1;
}

    fieldset input.error:focus
    {
        border:2px solid #af4975;
    }

fieldset button
{
    border:none;
    color:#619ca7;
    padding:0 7px 0 0;
    margin:10px 0;
    background:url('../media/Assets/arrow_right.gif') no-repeat right 50%;
}
/*
================================
NEWS LIST
================================
*/

.newsList
{
	background-image: url(../assets/page_corners/blue-corner-news.png);
	background-repeat: no-repeat;
	background-position: left top;
	width: 300px;
	margin-top: 10px;
	padding-top: 15px;
	padding-left: 15px;
}

    .newsList div
    {
	display:inline;
	color:#000000;
    }
    
    .newsList div.first
    {
        margin-left:0;
    }
    
        .newsList div span
        {
	font-weight:bold;
        }


h4 {
	color: #FC0;
	font-size: 0.9em;
}

#footer_links {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	height: 20px;
	width: 950px;
	padding-top: 10px;
	padding-right: 5px;
	text-align: right;
}
#footer_txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	height: 30px;
	width: 950px;
	padding-top: 5px;
	padding-right: 5px;
	color: #CCCCCC;
	text-align: right;
}
#partner_logos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	height: 70px;
	width: 300px;
	padding-top: 1px;
	text-align: left;
	padding-left: 5px;
	float: left;
}
#grid-media {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	height: 70px;
	width: 500px;
	padding-top: 1px;
	text-align: right;
	padding-left: 5px;
	float: right;
	color: #FFFFFF;
	padding-right: 10px;
}
p {
	text-align: justify;
}
