/*
 *	Recommended style revisions
 *	These are things I think would make the Cox standard css a little better
 */

.content-fragment-page p {
	padding:0;
	margin:0 0 15px;
}

.content-fragment-page p:last-child {
	padding:0;
	margin:0;
}

.content-fragment-page ul,
.content-fragment-page ol {
	padding-left: 22px;
	margin-bottom: 15px;
}
 
/* */


/*	
 *	Inline search box
 *	Taken from all.css on cox.com
 */

.search {
	border-top: 1px dotted #CCC;
	border-bottom: 1px dotted #CCC;
	padding: 16px 0 12px 10px;
	margin: 20px 0;
	overflow: visible;
	text-decoration:center;
}

/* */


/* 
 *	3 column containers
 */
 
.container_columns {
	overflow:hidden;
}

.container_columns .single_3Column {
	width:33.3%;
	float:left;
}

.container_columns .single_3Column div, .container_columns .double_3Column div {
	padding-right:10px;
}

.container_columns .single_3Column:last-child div, .container_columns .double_3Column:last-child div {
	padding-right:0;
}

.container_columns .double_3Column {
	width:66.6%;
	float:left;
}

/* */


/*
 * Register page specific styles
 */

.register_selectAvatarContainer {
	margin:0 0 0 10px;
	padding:0 0 0 10px;
	border-left:1px solid #ddd;
}

.register_selectAvatarContainer .selectAvatar {
	width:80px;
	margin:0 auto;
}

.register_selectAvatarContainer .selectAvatar p {
	text-align:center;
}

/* */


/*
 * Cox style forms
 */

ul.list_form {
	margin:0 0 20px;
	padding:0;
	list-style-type:none;
	overflow:hidden;
}

ul.list_form li {
	margin:0 0 7px;
	overflow:hidden;
}

ul.list_form li.noLabel {
	padding-left:25%;
}

ul.list_form li:last-child {
	margin:0 0 7px;
	overflow:hidden;
}

ul.list_form label {
	float:left;
	width:25%;
	font-weight:bold;
	line-height:25px;
	font-size:1.1em;
}

ul.list_form span.input_text {
	display:block;
	float:left;
	height:25px;
	padding:0 6px 0 0;
	margin:0;
	background:url("/experis/img/sprite_inputs.png") right -25px no-repeat;
}

ul.list_form span.input_text input[type="text"] {
	background:url("/experis/img/sprite_inputs.png") 0 0 no-repeat;
	padding:0 0 0 6px;
	margin:0;
	border:none;
	height:25px;
	line-height:21px;
}

/* */
 


/* 
 *	New tabs
 *
 *	NOTES:
 *	CSS3 border-radius does not work in IE < 8
 *	Advanced child selectors do not work in IE < 8 (This can be rectified with IE9.js)
 */

ul.list_tabs {
	overflow:hidden;
	border-bottom:2px solid #007bbc;
	margin:0 0 20px;
}

ul.list_tabs li {
	float:left;
	font-weight:bold;
	border:1px solid #d0d8dc;
	border-bottom:none;
	border-right:none;
	background:url("/experis/img/sprite_bg_tabs.png") 0 0 repeat-x;
}

ul.list_tabs li a {
	display:block;
	padding:0 15px;
	line-height:32px;
	border:none;
	text-decoration:none;
	color:#005498;
}

ul.list_tabs li a:hover {
	color:#005498;
}

ul.list_tabs li:first-child {
	border-top-left-radius:4px;
	-moz-border-top-left-radius:4px;
	-webkit-border-top-left-radius:4px;
}

ul.list_tabs li:last-child {
	border-top-right-radius:4px;
	-moz-border-top-right-radius:4px;
	-webkit-border-top-right-radius:4px;
	border-right:1px solid #d0d8dc;
}

ul.list_tabs li.active {
	border:1px solid #007bbc;
	border-bottom:none;
	background:url(sprite_bg_tabs.png) 0 -100px repeat-x;
}

ul.list_tabs li.active a {
	color:#fff;
}

ul.list_tabs li.active a:hover {
	color:#fff;
}

/* */


/* 
 *	Forum sub section content
 */

.container_forumSubsection {
	padding:10px 0 0 55px;
	margin:0 0 20px;
}

.container_forumSubsection h2 {
	padding:0;
	margin:0 0 10px;
}

.container_forumSubsection h3 {
	padding:0;
	margin:0 0 10px;
}

.container_forumSubsection ol {
	list-style-type: decimal;
	margin:0 0 20px 15px;

}

.container_forumSubsection ol li {
	margin: 0 0 7px;
	clear:both;
}

.container_forumSubsection ol li div.postInfo {
	display:block;
	float:right;
}

.container_forumSubsection ol li span.date {
	display:block;
	float:left;
	color:#777;
	margin:0 15px 0 0;
}

.container_forumSubsection ol li span.replies {
	display:block;
	float:right;
	font-weight:bold;
}

.container_forumSubsection ol li:last-child {
	margin:none;
}

.container_forumSubsection.television h2 {
	color:#bd4092;
}

.container_forumSubsection.internet h2 {
	color:#b0d249;
}

.container_forumSubsection.phone h2 {
	color:#f7b435;
}

.container_forumSubsection.wireless h2 {
	color:#3cbbc6;
}

/* */


/* 
 *	Post table
 *	
 *	NOTES
 *	Advanced child selector will not work in IE < 9
 *	We can solve the text alignment in the last cell a number of different ways if we decide we cannot use the child selector
 *
 */
 
table.sorttable thead tr th span {
	padding-right:25px;
}

table.sorttable tbody tr td:last-child {
	text-align:center;
}

table.table_posts span.title {
	
}

table.table_posts span.forum {
	color:#777;
}

table.table_posts span.date {
	color:#777;
	font-size:.9em;
}

table.table_posts span.replies {
	color:#555;
	font-size:2em;
}

table.table_posts span.replies.solved {
	color:#39b54a;
}

/* */


/* 
 *	Text
 */
 
.text_small {
	font-size:.9em;
}

.text_grey {
	color:#777;
}

.sticky-thread-banner
{
	padding-right: 0 !important;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconsticky30x27.png') no-repeat scroll right center #FFFFFF;
}

.locked-thread-banner
{
	padding-right: 0 !important;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconlocked30x27.png') no-repeat scroll right center #FFFFFF;
}

.lockedsticky-thread-banner
{
	padding-right: 0 !important;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconlockedsticky30x27.png') no-repeat scroll right center #FFFFFF;
}
.sticky 
{
	padding-left: 20px;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconsticky16x15.png') no-repeat scroll left center #FFFFFF;
}

.locked 
{
	padding-left: 20px;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconlocked16x15.png') no-repeat scroll left center #FFFFFF;
}

.lockedsticky 
{
	padding-left: 20px;
	background: url('http://forums.cox.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/iconlockedsticky16x15.png') no-repeat scroll left center #FFFFFF;
}
