/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

.custom .clear {
    clear:both;
    height:0px;
    width:0px;
    padding:0;
    margin:0;
}

.custom .full_width .page {
    width:97em;
}
.custom #header_area .page {
    position:relative;
    padding-top:0em;
    background-color: transparent;
}

.custom #content {
    margin-top:20px;
}

.custom .rackspaceLogo {
    width:222px;
    float:left;
}

.custom .searchBox {
    position:relative;
    width:215px;
    float:right;
    background:url("images/bg-search-input.png") no-repeat;
    background-position: left top;
    margin-top:10px;
}

.custom #searchsubmit {
    /*background:url("images/btn-search.png") no-repeat;*/
    width:51px;
    border:none;
    padding:0px;
    float:right;
}

.custom .search_form input.text_input {
    float:left;
    border:none;
    width:145px;
    display:block;
    padding:8px;
    background: none;
}

.custom #header {
    position:relative;
}

.custom #footer_area {
    position:relative;
}

.custom #footer_area, .custom #footer_area .page {
    background:url("images/bg-footer.png") repeat-x;
    padding-bottom:0px;
    height:245px;
}

.custom #logo a {
    display:block;
    background:url("images/logo-racker-talent.png") no-repeat;
    text-indent:-9000px;
    width:265px;
    height:36px;
    left:340px;
    position:relative;
}

.custom .nav-extra {
    display:block;
    font-size:15px;
    color:#999999;
    line-height: 18px;
    margin-top:4px;
}

.custom .menu {
    border:none;
    float:right;
    display:block;
    width:620px;
}

.custom .menu a {
    text-transform: none;
    letter-spacing:normal;
    padding:0px 0px 0px 10px;
    border-left:3px solid transparent !important;
    margin:0px;
    vertical-align: baseline;
    line-height:20px;
}

.custom .menu a:hover {
    border-left:3px solid #333333 !important;
}
.custom .menu a, .custom .menu .current ul a, .custom .menu .current-cat ul a {
    background: none;
    border: none;
    font-size:25px; 
}

.custom .menu .current a, .custom .menu .current-cat a, .custom .menu .current-parent a {
    border-left:3px solid #c40022 !important;
    color: #c40022;
}

.custom .menu .tab {
    width:145px;
    margin-right:10px;
}

.custom .box {
	width: 10em;
    margin-left:10px;
}

.custom .box div {
	margin: 0.5em 0 0 -1.75em;
    *margin: 2em 0 1em -1.75em;
}

.custom .box div.topleft {
	display: block;
	background: url("images/shadow-box.png") top left no-repeat white;
	padding: 0em 0em 0em 0em;
}

.custom .box div.topright {
	display: block;
	background: url("images/shadow-box.png") top right no-repeat white;
	padding: 1em 2em;
	margin: -2.0em 0 0 1.0em
}

.custom .box div.bottomleft {
	display: block;
	height: 45px;
	margin-top: -2.0em;
	background: url("images/shadow-box.png") bottom left no-repeat white;
}

.custom .box div.bottomright {
	display: block;
	background: url("images/shadow-box.png") bottom right no-repeat white;
	height: 45px;
	margin-left: 3.0em;
    margin-top:0em;
}

.custom #comments {
    margin-top:20px;
    width:590px;
    margin-left:25px;
}

.custom .hentry {
    background-color:#ffffff;
    padding:20px;
    *padding-bottom:32px;
    margin-top:20px;
    background:url("images/bg-post.png") repeat-y;
}

.custom .teasers_box .hentry {
    *padding-bottom:20px;
}

.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {
    margin: 0px 10px 0px 14px;
}

.custom .post_box {
    margin-right:0px;
}

.custom .full_width #content_box .page {
    width: 575px;
    margin-top: 20px;
}

.custom .full_width #content_box .teasers_box .page {
    width: 260px;
    margin-left:0px;
}

.custom div.postFooter {
    background:url("images/bg-post-bottom.png") bottom center repeat-x;
    height:5px;
    position:relative;
    left:19px;
    bottom:0px;
}

.custom div.postFooter {
    width:607px;
}

.custom .format_teaser div.postFooter {
    width:293px;
    left:-16px;
    bottom:-48px;
}

.custom .headline_area {
    margin-bottom:0em;
    background:url("images/bg-post-top.png") repeat-x;
    padding:0px;
    display:block;
    width:607px;
    position: relative;
    left:-17px;
    top:-24px;
}

.custom .headline_area h1, .custom .headline_area h2 {
    display:none;
}

.custom .hentry .headline_area h1, .custom .hentry .headline_area h2 {
    display: inline-block;
    margin:15px 0px 0px 15px;
    width:475px;   
}


.custom .headline_meta {
    display:block;
    margin:0px 0px 0px 15px;
    font-style: normal;
}

.custom .teaser .teaser_author .author, .custom .teaser .teaser_author a {
    font-style:normal;
    letter-spacing: normal;
    text-transform: none;
    font-size:11px;
}

.custom .teaser abbr.teaser_date {
    font-style:normal;
    letter-spacing: normal;
    text-transform: none;
    font-size:11px;
    display:block;
}

.custom .teaser .teaser_author a {
    color:#C40022;
    border:none;
}

.custom .headline_meta span, .custom .headline_meta abbr {
    font-style:normal;
    letter-spacing: normal;
    text-transform: none;
}

.custom .headline_meta a {
    color:#C40022;
    text-decoration: none;
    border-bottom: none;
}

.custom .commentLink a {
    display:block;
    background:url("images/bg-comments-flag.gif") no-repeat;
    font-size:2em;
    font-weight:bold;
    width:54px;
    height:81px;
    position:absolute;
    padding: 13px 0px 0px 0px;
    top:2px;
    right:10px;
    text-align: center;
}

.custom .teasers_box .commentLink a {
    background:url("images/bg-comment-flg-tsr.gif") no-repeat;
    font-size:2em;
    width:43px;
    height:64px;
    padding:9px 0px 0px 0px;
    top:-2px;
    right:10px;
}

.custom .cmtSpan {
    font-size:9px;
    color:#ffffff;
    display:block;
    margin-top:8px;
}

.custom .teasers_box .cmtSpan {
    margin-top:4px;
    font-size:7px;
}

.custom .st-taf {
    display:block;
    float:left;
    width:200px;
}

.custom .format_text .to_comments {
    clear: none;
}

.custom div.postBottomHR {
    width:570px;
    height:2px;
    background-color:#cccccc;
    margin:15px 0;
    clear:both;
}

.custom .to_comments a {
    display:block;
    background:url("images/bg-make-a-comment.gif") no-repeat;
    width:148px;
    height:30px;
    float:right;
    padding-left:12px;
    padding-top:6px;
    font-size:9px;
    margin-right:-10px;
}

.custom .to_comments a:hover {
    text-decoration:none;
}
.custom .to_comments a:active {
    top:1px;
    position:relative;
}
    
.custom .format_text .to_comments span {
    color:#C40022;
}

.custom .customCatName, .custom .customTagName {
    font-weight:bold;
}

.custom .customCatName a, .custom .customTagName a {
    font-weight: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.custom .customTagName a {
    text-transform: none;
}
 

/*
.culture #content {
    width:800px;
}
*/


#careers-sidebar, #culture-sidebar {
    margin-top:25px;
}

/*.culture #sidebars {
    width:150px;
    margin-right:10px;
} */


#customPageTitle {
    float:left;
    width: 340px;
    position:relative;
    height:65px;
}

.custom #customPageTitle h1 {
    font-size:36px;
    font-weight:bold;
    color:#31322d;
    display:block;
    position:absolute;
    /*bottom:-24px;*/
    bottom:-4px;
    left:0px;
}

.custom #customPageTitle h1 a {
    color:#000000;
}

.custom #customPageTitle h1 a:hover {
    color:#C40022;
}

.underscore {
    border-bottom:4px solid #31322d;
    margin-top:15px;
}

#hrsmartframe {
    float:right;
}

.custom .format_text h3 {
    margin-top:0px;
    font-weight:bold;
    font-size:22px;
}

.custom .sidebar_list h3 {
    font-weight:bold;
    font-size:18px;
    margin-bottom:5px;
    font-variant: normal;
    letter-spacing: normal;
}

.custom #careers-sidebar p {
    margin-top:10px;
}

.home .format_text, .racker-talent-united-kingdom .format_text {
    position:relative;
    bottom:-3px;
    line-height: normal;
    padding-top:20px;
}

.home .post_box {
    padding-top:0px;
}

.custom #archive_info {
    display:none;
}

.custom .teasers_box {
    width:61em;
    padding:0px;
    margin-bottom:20px;
}
.custom .teaser {
    width:260px;
    background:url("images/bg-post-teaser.png") repeat-y;
    margin-right:10px;
    position:relative;
}

.custom .teaser_right {
    margin-right:0px;
}

.custom .teaser h2 {
    background:transparent url(images/bg-post-top.png) repeat-x scroll 0 0;
    display:block;
    left:-17px;
    margin-bottom:0;
    padding:0;
    position:relative;
    top:-24px;
    width:292px;
    font-weight:bold;
}

.custom .teaser h2 a {
    /*padding:20px 0px 0px 20px;*/
    top:20px;
    left:18px;
    position:relative;
    display:block;
    width:260px;

}

.custom .teaser .format_teaser {
    margin-top:.5em;
    margin-bottom:.5em;
}

.custom img.tfe {
    margin-right:10px;
}

.custom #author_info img {
    float:right;
    margin:0px 0px 0px 10px;
}

.custom h3 {
    font-size:2em;
    font-weight:bold;
}

.custom .post_box.author {
    padding-top:1em;
}

.custom .author h3 {
    margin:20px 0px;
}

.custom div.flickr-mini-gallery {
    margin:0px 0px 10px 5px !important;
    line-height: normal !important;
}
.custom .flickr-mini-gallery img {
    width:45px;
    height:45px;
    margin:0px 3px 0px 0px;
    *margin-bottom:3px;
}

.custom #home-sidebar ul.sidebar_list {
    padding-top:0px;
}

.custom #home-sidebar li.widget {
    height:500px;
    margin-bottom:0px;
}

.custom .rackerBg {
    background:url("images/bg-featured-racker.png") no-repeat;
    position:relative;
        width:311px;
    height:475px;
}
.custom .featuredRacker {
    background:url("http://localhost.localdomain/mu/rackspace-talent/files/2010/02/img-racker1.jpg") no-repeat;
    position:relative;
    width:311px;
    height:475px;
    background-position:20px 20px;
}

.custom .rackerText {
    position: absolute;
    bottom:0px;
    left:50px;
    height:90px;
}

.custom .rackerText .name {
    display:block;
    font-weight:bold;
    font-size:12px; 
    color:#000000; 
}

.custom .rackerText .title {
    display:block;
    font-size:11px;
    color:#000000;
}

.custom .rackerText .postLink {
    display:block;
    text-transform: uppercase;
    font-size:10px;
    border-top: 1px solid #C40022;
    margin-top:5px;
}

.custom .frames {
    position:relative;
    top:-20px;
}

.about .columns {
    background:url("images/bg-divisions.jpg") no-repeat;
    width:567px;
    height:335px;
    padding:50px 0px 0px 90px;
    margin-left:62px;
}

.culture .columns {
    width:810px;
}

.custom .sub-feature {
    width:150px;
    float:left;
    margin-right:10px;
}

.custom .columns .divImg {
    background:url("images/bg-divisions-imgs.gif") no-repeat;
    width:146px;
    height:138px;
    position:relative;
}

.custom .feature {
    width:310px;
    float:left;
    margin-right:10px;
}

.custom .feature .divImg {
    background:url("images/bg-rack-feature.gif") no-repeat;
    width:307px;
    height:291px;
    position:relative;
}

.custom .columns .sub-feature .divImg {
    background:url("images/bg-divisions-imgs.gif") no-repeat;
    width:146px;
    height:138px;
    position:relative;
}

.custom .columns .divImg img {
    position:absolute;
    top:8px;
    left:8px;
}

.custom .columns h3 {
    font-size:16px;
    margin-top:10px;
    margin-bottom:3px;
}

.custom .columns p {
    margin-bottom:1em;
}

.custom .columns a {
    text-transform:uppercase;
    text-decoration:none;
}

.custom .columns span.theAuthor {
    font-size:10px;
    color:#969696;
    line-height: 12px !important;
    display:block;
    margin-bottom:2px;
}
.custom .columns .theAuthor a {
    text-transform:none;
}

.custom .columns a:hover {
    text-decoration:underline;
}

.custom .featureFlag, .custom .subFeatureFlag {
    display:block;
    position:absolute;
    right:3px;
    top:0px;
    padding-left:6px;
    padding-top:5px;
    font-weight:bold;
    font-size:10px;
    color:#fff;
    line-height: normal;
}

.custom .featureFlag {
    font-size:11px;
}

.custom .featureFlag {
    background:url("images/bg-feature-flag.png") no-repeat;
    width:97px;
    height:60px;
}

.custom .subFeatureFlag {
    background:url("images/bg-feature-flg-sm.png") no-repeat;
    width:72px;
    height:42px;
}

.custom .columns .read_more {
    display:block;
}

.custom #footer {
    text-align:left;
    font-size:11px;
    padding-top:0px;
    padding-left:0em;
}

.custom #footer li.widget {
    font-size:10px;
    line-height:1.1em;
}

.custom #footer a {
    border-bottom: none;
    text-transform:uppercase;
    font-size:11px;
}

.custom #footer a:hover {
    text-decoration:underline;
    color:#ffffff;
}

.custom #footer-widget1{
    width:350px;
    float:left;
}

.custom #footer-widget2, .custom #footer-widget3 {
    width:295px;
    float:left;
} 

.custom a.doNothing {
    text-transform: none;
}

.custom #footer h3 {
    font-size:12px;
    margin-bottom:10px;
}

.custom .child-pages a {
    text-transform:uppercase;
    font-size:11px;
}

.custom .child-pages li.widget, .custom .child-pages li.widget ul li  {
    line-height:1em;
    margin-bottom:0px;
}

.custom li.widget ul.child-pages li {
    margin-bottom:0px;
}

.custom .menu a:hover, .custom .menu .current ul a:hover, .custom .menu .current-cat ul a:hover, .custom .menu .current-parent a:hover { 
    color: #111111; 
    background: none; 
}

.custom .sidebar ul.sidebar_list {
    padding-left:0px;
}

.custom ul.sidebar_list {
    padding-top:0px;
}

.custom #footer ul.sidebar_list {
    padding-top:1.8em;
}

.custom .box {
    padding-top:1.5em;
    *padding-left:1em;
}

.custom .page_item a {
    text-transform: uppercase;
    font-size:11px;
}

.custom .shortcode-author-avatars div.author-list .user {
    padding:0px;
    display:inline-block !important;
}

.custom .simple-section-nav h3 {
    display:none;
}

.author-list .avatar img {
    float:left;
    /**padding:0px 10px 10px 0px;*/
    margin:0px 5px 5px 0px;
}

.custom .multiwidget_author_avatars .author-list {
    text-align:left;
}

.custom .multiwidget_author_avatars .author-list .user {
    display: inline-block;
    *display: inline-table;
    *padding:0px;
}

.custom .author-list .avatar img {
    float: none !important;
    border:1px solid #C40022;
}

.custom .sectionMenu {
    font-size:1.3em;
    margin-top:25px;
    /*line-height:1.1em;*/
}
.custom .sectionMenu h2 {
    margin-bottom:.272em;
    /*font-size:1.2em;*/
    font-size:19px;
}
.custom .sectionMenu li {
    list-style-type: none !important;
    margin-bottom:.272em;
}

.custom li.widget {
    margin-bottom:1em;
}

.custom #header_area {
    background:url("images/bg-header-rackmain.png") repeat-x;
    background-position:top;
}

.custom #rackcorp-wrap {
    height:26px;
    margin-bottom:20px;
    text-transform: uppercase;
    letter-spacing:1px;
}
.custom #rackcorp-wrap ul li {
    display: inline;
}

.custom #rackcorp-wrap ul li a {
    color:#ffffff;
    display: inline-block;
    padding:10px 15px;

}

.custom #rackcorp-wrap ul li a:hover {
    background:url("images/tab-hover.png") repeat-x;
}

.custom #rack-corp-footer-wrap {
    position:absolute;
    bottom:0px;
}

.custom #rack-corp-footer-wrap, #rack-corp-footer-wrap a {
    color:#CCCCCC;
    font-family:verdana,arial,sans-serif;
    padding-bottom:10px;
}

#rack-corp-footer-wrap .copyright {
padding-right:130px;
}

#rack-corp-footer-wrap .footerlink {
padding:0 5px;
}

a.basement {
color:#CCCCCC;
text-decoration:none;
}

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

.readMoreLink {
    text-decoration: none;
    text-transform: uppercase;
}

.custom .box {
    width:260px;
}
.flickrImg {
    margin-right:4px;
    width:50px;
    height:50px;
}

h4 {
    font-size:16px;
    margin:0px 0px 10px 10px;
}

.custom .tweetmeme_button {
    margin:5px -25px 0px 0px !important;
}