
@import "header.css"; /* CSS to match UniTech Head HTML */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, form {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
    background-color: #FFFFFF;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75em;
    /*line-height: 14px;*/
    margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
    padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
    color: #000;
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1.4em;
}

h1.fundraisingPageTitles {
    color: #088519;
}

/* put h2 in themes */
h3 {
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1em;
    padding-bottom: 1em;
}
/* put h2 in themes */

/* Sets the style for unvisited links. */
a,  a:link {
    font-weight: bold;
    text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
    font-weight: bold;
    text-decoration: none;
}

.clear {clear:both !important;}

.marginTop20 {
    margin-top: 20px;
}

.positionRel {
    position: relative;
}

.displayNone {
    display: none;
}

.paddingRight10 {
    padding-right: 10px;
}

.paddingRight20 {

    padding-right: 20px;
}

.errorRed {
    color: #990000;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
    background-color: #fff;
    margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
    text-align: left; /* Redefines the text alignment defined by the body element. */
    width: 934px;
}
#outerWrapper #header {
    background-color: #fff;
    border-bottom: solid 1px #9d9d9d; /* Sets the bottom border properties for an element using shorthand notation */
    padding: 0px 0px 11px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #headerNoBottom {
    background-color: #fff;
    padding: 0px 0px 11px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #leftColumn1 {
    border-right-color: #666;
    border-right-style: none;
    float: left;
    padding: 15px 0px 20px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    width: 205px;
}
#outerWrapper #contentWrapper #rightColumn1 {
    border-left: none 1px #666; /* Sets the left border properties for an element using shorthand notation */
    float: right;
    padding: 15px 0px 20px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    width: 205px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
    margin: 0 205px 0 205px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
    padding: 15px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Contains the main page content full width. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content-1col {
    padding: 15px 0 20px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Contains the main page content full width. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content-2col {
    margin: 0 225px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
    padding: 15px 0 20px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content-2col a:link, #outerWrapper #contentWrapper #content-2col a {
    color: #64379B;
    text-decoration: underline;
}
#outerWrapper #content-2col a:visited {
    text-decoration: underline;
}
#outerWrapper #content-2col a:hover {
    text-decoration: underline;
}
#outerWrapper #content-2col a:active {
    color: #64379B;
    text-decoration: underline;
}

#content a, #content a:link, #tabbedpanel .content a, #tabbedpanel .content a:link {
    color: #64379B;
    text-decoration: underline;
}
#content a:visited, #tabbedpanel .content a:visited {
    text-decoration: underline;
}
#content a:hover, #tabbedpanel .content a:hover {
    text-decoration: underline;
}
#content a:focus, #tabbedpanel .content a:focus {
    text-decoration: underline;
}
#content a:active, #tabbedpanel .content a:active {
    color: #64379B;
    text-decoration: underline;
}

.greenLink a, .greenLink a:link, .greenLink a:active {
    color: #64379B;
    text-decoration: underline;
}
.greenLink a:visited, .greenLink a:hover, .greenLink a:focus {
    text-decoration: underline;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
    clear: both;
    display: block;
}
#outerWrapper #footer {
    border-top: solid 5px #E4E0E0; /* Sets the top border properties for an element using shorthand notation */
    font-size: 0.9em;
    font-weight:bold;
    height: 48px;
    padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer a, #outerWrapper #footer a:link {
    color: #000000;
    text-decoration: underline;
}
#outerWrapper #footer a:visited {
    color: #000000;
    text-decoration: underline;
}
#outerWrapper #footer a:hover {
    color: #000000;
    text-decoration: underline;
}
#outerWrapper #footer a:focus {
    color: #000000;
    text-decoration: underline;
}
#outerWrapper #footer a:active {
    color: #000000;
    text-decoration: underline;
}

/* put left hand nav styling in themed css */

/* removed form elements */

.search-result {margin:0; padding:10px;
    padding-bottom: 0;
}

.search-result img {
    margin-left:0;
}

.search-result div.charityImgContainer {
    float:left;
    width:150px;
    text-align:center;
}

.search-result div.description {
    float:right;
    width:265px;
}

.search-result div.description h2 {
    margin:0;
    color:#64379B;
}

.search-result div.charityNum {
    width:150px;
    padding-top:10px;
    text-align:center;
    font-size: 0.9em;
}



.steps { text-align:right; font-size:1.4em; font-weight:bold;}

/* footer hyperlink formatting */
#footernav {
    width:680px;
    height: 20px;
    padding-top:10px;
    font-weight:bold;
    margin-left:10px;
    margin-bottom:10px;
    float:left;
    text-align:left;
}

#footernav ul {margin:0; padding:0;}

#footerlist li
{
    display: inline;
    list-style-type: none;
    padding-right: 18px;
    font-weight:bold;
}
/* footer follow us jump menu */
.followus {
    float: left;
    font-size: 1.1em;
    font-weight: bold;
    height: 20px;
    margin-bottom: 10px;
    margin-left: 1em;
    padding-top: 0.2em;
    text-align: left;
}
.followus label, .followus span {
    padding-top: 5px;
    width: 90px;
}
.followus strong {
    float:left;
    font-size:1.1em;
    padding-top:0.6em;
    padding-right:0.3em;
}
.followus img {
    padding-left: 0.3em;
    padding-top: 0.4em;
}

#bt-cr {background-color:#E0D6EB; clear:both;}

/* moved cr jump menu for form.css */

/* main menu was here */

/* main title, bt logo, strapline and image */

.mydonate {width:326px; float:left;}

.banner-image {
    float:left;
    width:260px;
    margin-left:70px;
    height:94px;
    text-align:right;
}
/* charity account management */
.standard-box{
    border:#e8e8e8 5px solid;
    padding: 10px;
    margin-top:1em;
    margin-bottom:1em;
    background: #EFEFED url("../images/form-gradient_bigger.jpg") repeat-x;
    word-wrap: break-word;
}

.standard-box-search{
    border:#e8e8e8 5px solid;
    padding: 10px;
    margin-top:1em;
    margin-bottom:1em;
    background: #EFEFED url("../images/form-gradient_bigger.jpg") repeat-x;
    word-wrap: break-word;
    width: 45em;
}

.w484 {
    width:484px;
}

.w375 {
    width:375px;
}

.w75 {
    width:75%;
}

.standard-box h3 {
    padding-bottom:1em;
    font-size:1.5em;
    font-weight:normal;
    font-family: Arial, Helvetica, sans-serif;
}
.standard-box h4 {
    font-size:1.2em;
    padding:0 0 0.8em 0;
}

.standard-box #reportOptions h4{
    font-size:1.2em;
    padding:0 0 0.8em 0;
    color:black;
    width:115px;
}

.standard-box .boldText {
    font-weight: bold;
}

.standard-box table {
    width:450px;
}
.standard-box table.fixedLayout {
    width:450px;
    table-layout: fixed;
}

.standard-box th, td {
    padding:0.2em 0 0.2em 0;
}
.standard-box th {
    font-weight:bold;
    /* color:#333333; APH 28/02/11 */
}

.standard-box th.topAlign, td.topAlign {
    vertical-align: top;
}

.standard-box td.reports {
    padding:0.2em 1em 0.2em 0.2em;
}

.standard-box hr {
    border: 0;
    color: #e8e8e8;
    background-color: #e8e8e8;
    height: 1px;
    width: 100%;
    text-align: left;
    width:80%;
    text-align:center;
    padding:0;
    margin:1em auto;
}
.standard-box input.account-man-btn {
    color:#fff;
    margin:0.5em 0.5em 0 0;
    font: normal 1em arial,helvetica,sans-serif;
    background-color:#64379B;
    border:#fff solid 1px;
    padding:0.2em 0em;
    cursor:pointer;
    float:left;
}
/* Commenting out as replacing with cross browser JQuery function on needed pages - APH 21/05/10
.unselectable
{
    -moz-user-focus: ignore;
    -moz-user-input: enabled;
    -moz-user-select: none;
}
*/
.dashed {
    border:#999999 dashed 1px;
    background-color:#fff;
    margin-left:180px;
    padding:1em;
}

.dashed-center {
    border:#999999 dashed 1px;
    background-color:#fff;
    margin: 10px;
    padding:1em;
}

/* four boxes for a section landing page */
.standard-box-col1 {
    border:#e8e8e8 5px solid;
    background-color:#f8f9f4;
    padding: 10px;
    margin-top:1.4em;
    background:url("../images/form-gradient.jpg") repeat-x;
    width:42%;
    float:left;
    height:120px;
}

.standard-box-col2 {
    border:#e8e8e8 5px solid;
    background-color:#f8f9f4;
    padding: 10px;
    margin-top:1.4em;
    background:url("../images/form-gradient.jpg") repeat-x;
    width:42%;
    float:right;
    /* margin-left:15px; */
    height:120px;
}

.standard-box-col-inner {
    height: 70px;
}

.standard-box-5050 h3 {
    padding-bottom:0.3em;
    font-size:1.5em;
    font-weight:normal;
    font-family: Arial, Helvetica, sans-serif;
}

/* four boxes for event selection */
.standard-box-event-col1 {
    border:#e8e8e8 5px solid;
    background-color:#f8f9f4;
    padding: 10px;
    margin-top:1.4em;
    background:url("../images/form-gradient.jpg") repeat-x;
    width:20%;
    float:left;
    margin-left:13px;
}
.standard-box-event-col1-3rd {
    border:#e8e8e8 5px solid;
    background-color:#f8f9f4;
    padding: 10px;
    margin-top:1.4em;
    background:url("../images/form-gradient.jpg") repeat-x;
    width:28%;
    float:left;
    margin-left:13px;
}

.standard-box-event-col1 h3 {
    padding-bottom:0.4em;
    font-size:1.4em;
    font-weight:normal;
    font-family: Arial, Helvetica, sans-serif;
}

.standard-box-event-col2 {
    border:#e8e8e8 5px solid;
    background-color:#f8f9f4;
    padding: 10px;
    margin-top:1.4em;
    background:url("../images/form-gradient.jpg") repeat-x;
    width:42%;
    float:right;
    /* margin-left:15px; */
    height:120px;
}

.standard-box-5050 h3 {
    padding-bottom:0.3em;
    font-size:1.5em;
    font-weight:normal;
    font-family: Arial, Helvetica, sans-serif;
}

/* alert box */
.alert-box{
    border:#e8e8e8 dashed 2px;
    padding: 10px;
    margin-top:1em;
    margin-bottom:1em;
}

.logo-on-right {
    padding:1em 0.6em;
}

.left {float:left !important;}
.right {float:right !important;}
.inline {display:inline !important;}
.block {display:block !important;}

/* profile image and link */
.profile-links {overflow:hidden; padding:0.2em; margin-top:0.5em; clear:both;}

.profile-links img {padding-right:0.3em; float:left;}

/* steps */

#steps {
    font-size:1.3em;
    border:1px solid #e8e8e8;
    height:32px;
}
#steps span {
    float:left;
    line-height:22px;
    padding-left:.75em;
    color:#777;
}
#steps span.off {
    display:block;
    padding:5px 15px 5px 10px;
    background:url("../images/crumbs.gif") no-repeat right center;
    list-style-type:none;
}
#steps span.on {
    display:block;
    padding:5px 15px 5px 7px;
    background:url("../images/crumbs.gif") no-repeat right center;
    list-style-type:none;
    color:#64379B;
    font-weight:bold;
}
#steps span a:link, #steps span a:visited {
    text-decoration:none !important;
    color:#b3b3b3;
}
#steps span a:hover, #steps span a:focus {
    color:#64379B;
}

.countdown {
    border:#e8e8e8 solid 1px;
    width:203px;
    padding-top:20px;
    padding-bottom:20px;
    margin-bottom:10px;
    text-align:center;
    font-weight:bold;
    font-size:1.2em;
    background:url("../images/countdown-bg.jpg") no-repeat right center;
}

.grey-box {
    background-color:#e8e8e8;
    padding:1em;
    word-wrap: break-word;
}

/* Thermometer for amount raised */
#amountraised #amountraised-thermometer-overlay h2 {
    position : absolute;
    display : block;
    height : 0;
    visibility : hidden;
    left : -9999px;
    top : -9999px;
    padding : 0;
    margin : 0;
}

/* Amount raised */
#amountraised {
    width: 100%;
}
#amountraised div.thermometer-content {
    background: none;
    padding: 0;
}
#amountraised #amountraised-thermometer,
#amountraised #amountraised-thermometer-overlay {
    width: 47px;
    height: 230px;
    /*width: 35px;
    height: 274px;*/
    overflow: hidden;
}
#amountraised #amountraised-thermometer {
    position: relative;
    float: left;
    background: url('../images/bg-thermometer-new.gif') top left no-repeat;
    /*background: url('../images/bg-thermometer.png') top left no-repeat;*/
    margin-bottom: 15px;
}
#amountraised #amountraised-thermometer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/overlay-thermometer-new.gif') top left no-repeat;
    /*background: url('../images/overlay-thermometer.png') top left no-repeat;*/
    z-index: 100;
}
#amountraised #amountraised-thermometer-wrapper {
    width: 47px;
    /*width: 35px;*/
    height: 174px;
    /*height: 240px;*/
    position: absolute;
    /*bottom: 26px;*/
    bottom: 40px;
    z-index: 90;
    background: none;
}
#amountraised #amountraised-thermometer-total {
    position: absolute;
    bottom: 0;
    /*left: 5px;*/
    height: 50%;
    width: 47px;
    /*width: 35px;*/
    background: url('../images/Thermometer-assets-fill.gif') top left no-repeat;
    /*background: url('../images/bg-thermometer-total.png') top left no-repeat;*/
}
#amountraised .sum,
#amountraised dl {
    float: right;

}
#amountraised .sum {
    background: none;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #64379B;
    width:125px;
}
#amountraised .sum h2 {
    margin: 0;
    font-size: 1em;
    color: #000;
}
#amountraised .sum h3 {
    margin: 0;
    font-size: 0.5em;
}
#amountraised dl dd {
    font-weight: bold;
    color: #64379B;
    margin:0.2em 0 1em 0;
}

#amountraised dl {width:125px; margin:0;}
#amountraised dt {font-weight:bold;}

.clear {
    clear: both;}

.clearRight {
    clear:right;
}

/* event profile picture */
.picture-box{
    border:#e8e8e8 1px solid;
    padding: 2px;
    margin-top:1em;
    margin-bottom:1em;
    text-align:center;
}

/* event profile links */
.links-box{
    border:#e8e8e8 1px solid;
    padding: 10px;
    margin-top:1em;
    margin-bottom:1em;
}

.social-media {
    border:#e8e8e8 solid 1px;
    width:183px;
    padding:10px;
    background: url("../images/social-media-bg.jpg") top left no-repeat;
}

.charity-event-image {
    width:80%;
    text-align:left;
    margin-bottom:5px;
}
.basic {
    /* color:#333333; APH 28/02/11 */
    float:left;
    font-size:1em;
    font-weight:normal;
    line-height:1.1;
    margin:3px 0 0;
    width:250px;
}

.basic-info {overflow:hidden; padding-bottom:0.6em; border:#000 solid 1px;}
.overflow {overflow:hidden;}

.centreText {
    text-align:center;
}

.report table {
    width:750px;

}
.report th, .report td {
    padding:0.4em 0.2em 0.4em 0.2em;
}
.report th {
    font-weight:bold;
    /* color:#333333; APH 28/02/11 */
    background-color:#f1f1f1;
}

.top table {
    vertical-align:top;

}
.top th, .top td {
    vertical-align:top;
    border:#e1e1e1 solid 1px;

}
.top th {
    border:#e1e1e1 solid 1px;
}

/* Override styles to improve styling of elements within RichText content areas */

.richText ul, fieldset div .richText ul {margin-bottom:0.8em; margin-left:0; list-style:disc outside none; float:none;}
.richText ul li, fieldset div .richText ul li {margin-left:1.5em; margin-bottom:5px;}

.richText p {
    word-wrap:  break-word;
}

fieldset div .richText {float:none;} /* Fix for IE float width issue on CharityIndex */

/* New CSS for rollover banner buttons on Start Fundraising index page - 29-11-10 */

#fundHomeButtons li {display:inline;}

#fundHomeButtons li a {
    float:left;
    display:block;
    width: 289px;
    height: 328px;
    margin-right:16px;
    /*text-indent: -9999px;*/
}

#fundHomeButtons #organised a {margin-left:16px; background:url("../images/join-an-organised-combined.jpg") no-repeat;}
#fundHomeButtons #organised a:hover {background:url("../images/join-an-organised-combined.jpg") 0 -329px no-repeat;}

#fundHomeButtons #challenge a {background:url("../images/create-my-challenge-combined.jpg") no-repeat;}
#fundHomeButtons #challenge a:hover {background:url("../images/create-my-challenge-combined.jpg") 0 -329px no-repeat;}

#fundHomeButtons #special a {background:url("../images/celebrate-someone-special-combined.jpg") no-repeat;}
#fundHomeButtons #special a:hover {background:url("../images/celebrate-someone-special-combined.jpg") 0 -329px no-repeat;}

#fundHelpBanner {
    float:left;
    display:block;
    width: 900px;
    height: 96px;
    text-indent: -9999px;
    background:url("../images/hints-and-tips-banner.jpg") no-repeat;
    margin:1em 0 1em 16px;
}

#fundHelpBanner:hover {background-position:0 -97px}

/* Help panel styles */

.helpPanel {
    background: url("../images/help.png") no-repeat scroll 0.5em 0.7em #E9F0FC;
    margin: 0.5em auto;
    padding: 1em 1em 1em 3em;
}

.reKaptchaWrap {
    margin-left:60px;
}

.maxAllowed {
    font-size: 0.9em; font-weight: normal;
}

/* Added CSS hidden class style to hide elements from visual browsers */

.hidden {clear:none !important; float:none !important; left:-9999px !important; position:absolute !important; width:990px !important;}

/* Styles for site wide footer disclaimer text */

#footerStatement {font-size: 0.9em; padding: 0.5em 0;}
#footerStatement a {color: #64379B;}

/* Styles for Skip to Content accessibility header link */

#skip {background-color:#64379B; color:#fff;}
/*#skip a, #skip a:hover, #skip a:visited{ position: absolute; left:0px; top:-1000px; width: 1px; height: 1px; overflow: hidden; background-color:#64379B; color:#fff;}
#skip a:active, #skip a:focus { position:static; width:auto; height: auto; }*/

#skip a, #skip a:hover, #skip a:visited {position: absolute; left:0px; top:-1000px; overflow: hidden; background-color:#64379B; color:#fff;}
#skip a:focus, #skip a:active {position:static; width:auto; height: auto;}
#skiptargetholder {position: absolute; left: -200%}

/* Fix for Charity Search results box contents when too little content */

.standard-box fieldset .search-result {width: 98%;}

/* Fix for event summary table expanding outside of div when long URL in the summary info */

table.eventSummary {
    table-layout: fixed;
    width: 100%;
    word-wrap: break-word;
}

p.changeColour {
    color: red;
}

.black {
    color:black;
}

ul.bullet {
    list-style:disc outside none;
    margin-left: 15px;
}

hr.divider {
    background-color: #C6C6C6;
    border: medium none;
    clear: left;
    color: #C6C6C6;
    height: 1px;
    width:100%;
    /* margin:0;*/
}

.mRight10 {
    float: right;
    margin-right: 10em;
}

.mLeft14 {
    float: right;
    margin-left: 14em;
}

.standard-box fieldset .fundraisingTeams {
    padding-top: 10px;
    margin-bottom: 2px;

}

.standard-box fieldset .deleteImageButton {
    padding-left:3em;
    width:35%;

}

.standard-box fieldset .fundraisingTeamsImage {
    padding-top: 10px;
    margin-bottom: 2px;
    width: 100%;

}

.fontWeightNormal {
    font-weight: normal;
}

.sharePage {
    float:right;
    padding-top:15px;
    padding-bottom:20px; /*changed from 20 to 0*/
    padding-left:20px;   /*changed from 20 to 0*/
    width:182px;
}

.relative {
    position:relative;
    width: 180px;
}

/* Styles for new Charity profile page */

/* horizontal bottom and vertical right box shadow */
.shadow {
    -moz-box-shadow: 5px 5px 5px #c1c2c2;
    -webkit-box-shadow: 5px 5px 5px #c1c2c2;
    box-shadow: 5px 5px 5px #c1c2c2;
    /* filter for IE */
    background-color: #fff;
    zoom: 1;
    filter: progid:DXImageTransform.Microsoft.Shadow(color='#c1c2c2', Direction= 135, Strength=6);
}

.pageBorder {
    border:1px solid #ececec;
    overflow:hidden;
}

.dividingLine {
    margin:20px 0;
    background-image: url(/images/colDivide.gif);
    background-repeat: repeat-y;
    background-position: 492px 0;
    overflow:hidden;
}

.leftColumn2 {
    width: 491px;
    float: left;
}

#charityProfileBox {
    border-bottom: 2px solid #9D9D9D;
    margin-left: 38px;
    margin-right: 30px;
    padding-bottom: 25px;
}

#charityLogo {
    margin-bottom: 35px;
    float: left;
}

#charityDescription {
    margin-bottom: 20px;
}

#charityDescription p {
    margin:0;
    font-size: 1.05em;
}

#photoGalleryBox {
    margin: 0px 29px 48px;
}

.tabBottomBorder {
    margin-left:12px;
    margin-right:12px;
    border-bottom:1px solid #c1c2c2;
    width:126px;
    height:1px;
}

.galleryBackground {
    background-color:#d8d8d8;
}

.photoGalleryImages {
    padding-top:20px;
    padding-left:28px;
    background-color:#dbd8d8;
    left: 0;
    overflow: hidden;
    width:406px;
    height:140px;
}

.photoGalleryImages img {
    margin-right: 18px;
    width: 110px;
    height: 84px;
}

.photoGalleryImages p {
    width:200px;
    font-size:1em;
    color:#55379B;
    float:left;
}

#moreImagesIcon {
    float:right;
    padding-top:50px;
}

/*#moreImagesIcon input {
  border:0;
  padding:0;
  width:20px;
  height:20px;
  background-image:url(/images/mydonate-arrow.png);
  background-repeat:no-repeat;
  cursor:pointer;
  color:transparent;
}*/

#getInTouchBox {
    padding-left:38px;
    padding-right:30px;
    font-size:1.05em;
    padding-top: 20px;
}

#getInTouchBox .getInTouchText {
    float:right;
    width:330px;
    word-wrap:break-word;
}

.getInTouchLabels {
    float:left;
    width:85px;
}

.getInTouchFont {
    font-size:1.05em;
}

a.getInTouchLinks {
    font-weight:bold;
    font-size:1.2em;
    color:#55379b;
}

#endColBorder {
    margin: 0px 29px;
    border-bottom:solid 1px #d5d5d5;
}

.rightColumn2 {
    padding:0px 20px 20px 18px;
    width:399px;
    float:right;
}

#howYouCanHelpBox {
    overflow:hidden;
    border-left:1px solid #d5d5d5;
    border-right:1px solid #d5d5d5;
    border-bottom:1px solid #d5d5d5;
    width:400px;
}

.backgroundGradient {
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F4F9FE'); /* for IE */
    background-color:#F4F9FE; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#F4F9FE)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #FFF,  #F4F9FE); /* for firefox 3.6+ */
}

#howYouCanHelpBox h2 {
    padding-left: 0.1em;
    margin-bottom: 0.5em;
}

#startFundraisingBox {
    margin-left:9px;
    margin-right:10px;
    width:382px;
    height:45px;
    background-image:url(/images/Start-fundraising-box.gif);
    background-repeat:no-repeat;
}

#howYouCanHelpBox div.smallButtonContainer {
    float:right;
    padding-top: 10px;
    padding-right: 6px;
}

#howYouCanHelpBox div.textBoxContainer {
    float:right;
    padding-top: 4px;
    padding-right:0px;
}

a.smallButton, input.smallButton {
    display:inline-block;
    border:0;
    padding:0;
    width:34px;
    height:26px;
    background-image:url(/images/Small-Button2.gif);
    background-repeat:no-repeat;
    color:transparent;
}

a.smallButton:hover, input.smallButton:hover {
    border:0;
    padding:0;
    width:34px;
    height:26px;
    background-image:url(/images/Small-Button-rollover.gif);
}

input.noDonateButton {
    border:none;
    width:188px;
    height:66px;
    background:url(/images/no-donation-button.gif) no-repeat;
    color:transparent;
    font-size:0;
}

/*.charityProfileSprite {
    background: url('/images/charityProfileSprite.gif') no-repeat top left;
}*/

input.donateButton {
    border:none;
    width:190px;
    height:48px;
    /*background:url(/images/Donate-Now-button.gif) no-repeat;*/
    background-position: 0px 0px;
    cursor:pointer;
    color:transparent;
    font-size:0;
    margin-top: 8px;
}

input.donateButton:hover {
    /*background:url(/images/Donate-Now-button-rollover.gif) no-repeat;*/
    background-position: 0px -58px;
    width:190px;
    height:48px;
}

.sponsorFundraiserBox {
    margin-left:9px;
    margin-right:10px;
    margin-bottom:1em;
    width: 367px;
    float: left;
    background-color: #cfdbeb;
    padding: 0.6em;
}

.sponsorFundraiserBoxText {
    float:left;
    color:#55379b;
}

input.searchText {
    margin:0;
    padding:0;
    border:0;
    width:124px;
    height:26px;
    font-size:1.05em;
    color:#9e9e9e;
}

#donateCharity {
    /*overflow:hidden; wasmaking the button disappear so taken off */
    margin-bottom:20px;
    margin-left: 9px;
    padding-top: 10px;
}

.charityProfileSharePage {
    float:right;
    padding-top:15px;
    padding-bottom:0px;
    padding-left: 0 !important;
    width:182px;      /* changed from 182 to 140*/
    margin-top: 15px;
    margin-bottom: 15px;  /*testing*/
}

.shareLinks {
    margin-top:0.5em;
}

#boxSpacing {
    margin-top:36px;
}

#forthcomingEventsBox {
    border-left:1px solid #d5d5d5;
    border-right:1px solid #d5d5d5;
    border-bottom:1px solid #d5d5d5;
    width:400px;
    /*background-image:url(/images/Forthcoming-events-box-gradient.png);
    background-repeat:repeat-x;*/
}

#forthcomingEventsBox div.innerBox {
    padding:13px 13px 0px;
}

.titleText {
    font-size:1.3em;
    color:#55379B;
}

.eventDescriptionBox {
    margin-top:13px;
    margin-bottom:26px;
}

.eventDescriptionBox img {
    border:solid 1px #d5d5d5;
    width:135px;
    float:left;
}

.eventDescriptionBox p {
    margin:0;
    width:224px;
    font-size:1em;
}

a.moreDetails {
    text-decoration:underline;
    font-size:1em;
    color:#55379b;
}

a.moreEventLink {
    text-decoration:underline;
    font-size:1.4em;
    color:#4d4d4d;

}

/* styles for charity logos on team profile page. IE6 & 7 will not pick up styles in teamProfilePage.css */

.charityLogoHolder {
    float: left;
    width: 152px;
    padding-bottom: 10px;
    height:150px;
    text-align: center;
    /*line-height: 150px;*/
}

.charityLogoName {
    float:left;
    height: 5em;
    width: 140px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    word-wrap: break-word;

}

/*API registration */

.standard-box .apiTextArea {
    width:449px;
}

#installApplications {
    margin-bottom:10px;
}


/*
	CSS for support user
*/

.donationDetails {
    float: left;
    font-size: 1em;/*.16em;*/
    font-weight: bold;
    line-height: 1.1;
    margin: 3px 0px 0px 0px;  /* was 3px 0px 0px 10px */
    width: 180px; /* RHJ changed from 140px */
}

/* CSS for confirm fundraising team page */

.SelectFromExistingPagesCheckRow {
    padding-bottom: 10px;
}

#addFundraisingPages h4 {
    color: black;
    font-size: 1em;
}

#existingFundraisingPagesHeading {
    padding-bottom:15px;
}

#createFundraisingPagesHeading {
    float:left;
    width:280px;
}

#selectExisitingFundraisingPagesCol {
    float:right;
    width:350px;
    border-left:1px solid #c6c6c6;
    padding-left: 20px;
}

#exisitingFundraisingPagesButton {
    float:right;
    width:100px;
    border-left:1px solid #c6c6c6;
    padding-left: 270px;
}

#createFundraisingPagesButton {
    float:right;
    width:260px;
    padding-right:20px;
}

div.confirmFundraisingPageSocMedButtons {
    float:left;
    padding-left:100px;
    width:87px;
}

/* CSS for manage my fundraising teams page */

.mftTeamRowHolder {
    float: left;
    width: 670px;
    margin-bottom: 10px;
}

.mftTeamRowHolderLeft {
    float: left;
    /*width: 510px;*/
    height:165px;
    border-right: 1px solid #C6C6C6;
}

.mftTeamInfoHolder {
    float: left;
    padding-left: 25px;
    width: 325px;
}

.mftAmountRaisedLabel {
    float: left;
    width: 140px;
    font-weight: bold;
    padding-bottom: 5px;
}

.mftTargetLabel {
    float: left;
    width: 100px;
    font-weight: bold;
    padding-bottom: 5px;
}

.mftLinkedPagesLabel {
    float: left;
    font-weight: bold;
    padding-bottom: 5px;
}

.mtLabel {
    clear: left;
    float: left;
    font-weight: bold;
    padding-left: 10px;
    padding-bottom: 10px;
    width: 150px;
}

.mtInfo {
    float: right;
    width: 160px;
    padding-bottom: 10px;
}


.mftAmountRaised {
    clear: left;
    float: left;
    width: 140px;
}

.mftTarget {
    float: left;
    width: 100px;
}

.mftLinkedPages {
    float: left;
}

.mftTeamRowHolderRight {
    float: right;
    padding-left: 20px;
    width: 135px;
}

h2.black {
    color:black;
}

.mftButtonHolder {
    padding-bottom: 15px;
}

.mftTeamBtn {
    width: 125px!important;
}

.mftUpdateOwnerBtn {
    float: left;
    padding-left: 30px;
}
.mtTeamMemberPagesHeader {
    padding-top: 20px;
    float: left;
}

.mtTeamMemberRow {
    /*clear: left;*/
    float: left;
    padding-bottom: 10px;
}

.mtTeamMemberSubRow {
    clear: left;
    float: left;
    padding-bottom: 15px;
}

.mtName {
    float: left;
    width: 200px;
}

.mtRaised {
    float: left;
    width: 125px;
}

.mtDonations {
    float: left;
    width: 100px;
}

.mtAdministrator {
    float: left;
    width: 125px;
}

.mtSubLabel {
    float: left;
    font-weight: bold;
    padding-bottom: 15px;
}

.mtUpdateTeamMembersBtn {
    float: right;
    width: 175px!important;
}

input.removeBtn {
    border:0;
    padding:0;
    width:73px;
    height:23px;
    background-image:url(/images/remove-button.gif);
    background-repeat:no-repeat;
    color:transparent;
    cursor: pointer;
    font: 0;
}

/* styles for emails signatures page */
div.emailSignatureHolder {
    border-bottom: 3px solid grey;
    overflow: hidden;
    width: 600px;
    padding-bottom: 10px;
}

div.emailSignatureImgHolder {
    float: left;
}

div.emailSignatureDownloadHolder {
    float: right;
    width: 210px;
    padding-top: 85px;
}

span.emailSignatureFontSize {
    font-size: 90%;
    display: block;
}

/* styles for Gift Aid wording */
fieldset div.giftAidStatements {
    background-color: #E8E8E8;
    color: #64379B;
    font-size:1.3em;
    font-weight: bold;
    margin-right: 3px;
    padding: 0;
    width: 20px;
    text-align: center;
}

fieldset div.giftAidWords {
    padding-left:5px;
    padding-top:15px;
}

fieldset ul.giftAidList {
    list-style: disc inside none;
    padding-left:10px;
}

fieldset ul li span.giftAidScroll {
    display: block;
    margin-bottom: 5px;
    margin-left: 12px;
    margin-top: 5px;
    background: none repeat scroll 0 0 #E8E8E8;
    border: 1px solid #CCCCCC;
    overflow: auto;
    width: 365px;
    padding:6px;
    height: 40px;
    font-weight:normal;
}

fieldset label.giftAidLabel {
    width: 95%;
    font-weight: bold;
    margin: 0;
}

fieldset a.margin {
    margin-top: 120px;
}

.notEligibleGiftAid {
    float:right;
    width:320px;
}

.giftAidAmount {
    font-weight:bold;
    color:#64379B;
    font-size:1.12em;
}

/* New styles for fundraiser page */
#fundraiserRibbonPanel {
    background-image:url(/images/fundraiser-ribbon-and-panel.gif);
    background-repeat: no-repeat;
    width: 924px;
    height: 361px;
    padding-left: 10px;
}

#fundraiserSomeoneSpecial {
    color: #ffffff;
    padding-top: 15px;
    text-align: center;
    margin-bottom: 10px;
}

#fundraisingInfoPanel {
    background-image:url(/images/Top-panel.gif);
    background-repeat: no-repeat;
    height: 290px;
    /*padding-left: 16px;
    padding-top: 16px;*/
    width: 934px;
}

#fundraisingInfoPanelLeft {
    float: left;
    width: 480px;
    margin-left: 20px;
    margin-top: 20px;
}

.fundraisingTitle {
    color: #55379B;
    padding-bottom: 20px;
    font-weight: normal;
    width: 415px;
    word-wrap: break-word;
}

.fundraisingPictureHolder {
    float: left;
    width: 154px;
    height: 154px;
    padding-right: 10px;
    overflow: visible;
    text-align:center;
}

.fundraiserPicture {
    max-width: 150px;
    max-height:150px;
}

#fundraiserInfoHolder {
    position: relative;
    height:150px;
    margin-bottom: 10px;
}

.fundraiserNameText {
    font-size: 1.5em;
    margin: 0;
    float: left;
    width: 250px;
}

#fundraiserLocation {
    float:left;
    width:250px;
}

#fundraiserStrapline {
    padding-top: 10px;
    float: left;
    width: 250px;
    word-wrap: break-word;
}

#fundraiserSharePage {
    float: left;
    width: 140px;
    bottom: 0;
    position: absolute;
    left: 165px;
}

#fundraisingInfoPanelRight {
    float: left;
    margin-top: 30px;
    width: 345px;

}

#fundraiserAmounts {
    float:left;
    width:250px;
    font-weight:bold;
    font-size:1.375em;
}

#fundraiserAmounts div.amountLabel {
    float:left;
    color:#6D6D6D;
    width:120px;
}

#fundraiserAmounts div.amount, #eventAmounts div.amount {
    float:left;
    color:#55379B;
}

div.fundraiserDonationSummary {
    padding-top:20px;

}

.donationsAcceptedUntil {
    float:left;
    font-size:0.875em;
    color:#6D6D6D;
    font-weight:bold;
}

.opacity {
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.fundraiserSprite {
    background: url('/images/fundraiserSprite.gif') no-repeat top left;
}

input.fundraiserTopDonateButton {
    border:none;
    width:306px;
    height:49px;
    background-position: 0px -122px;
    /*background:url(/images/Fundraiser-Top-Donate-Button.gif) no-repeat;*/
    cursor:pointer;
    color:transparent;
    font-size:0;
    margin-top: 18px;
    padding: 0;
}

input.fundraiserTopDonateButton:hover {
    /*background:url(/images/Fundraiser-Top-Donate-Button-rollover.gif) no-repeat;*/
    width:306px;
    height:49px;
    background-position: 0px -181px;
}

/*input.fundraiserTopNoDonateButton {
    border:none;
    width:306px;
    height:49px;
    background:url(/images/Fundraiser-Top-Donations-Closed.gif) no-repeat;
    color:transparent;
    font-size:0;
    margin-top: 18px;
    padding: 0;
} */

.fundraiserTopButtonMargin {
    float:left;
    margin-top:18px;
}

#fundraiserLeftCol, #eventLeftCol {
    width: 433px;
    float: left;
    clear: both;
    padding-right:22px;
    padding-left: 5px;
    /*border-right: 1px solid #CCCCCC;*/ /*added for event page, remove for fundraiser page */
}

#fundraiserLeftCol h2, #fundraiserRightCol h2, #eventLeftCol h2, #fundraiserLeftCol a, #eventLeftCol a, #fundraiserRightCol a, #fundraisingInfoPanel a {
    color:#55379B;
}

hr.fundraiser {
    color: #CCCCCC;
    background-color: #CCCCCC;
    margin-top: 0;
    margin-bottom: 0;
    clear: both;
    border: none;
    height: 1px;
}

.fundraiserContainers {
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 433px;
    word-wrap: break-word;
}

.fundraiserContainers div#fundraiserEventImage {
    float: left;
    width: 170px;
}

.fundraiserContainers div#fundraiserEventDetails {
    padding-left: 30px;
    float: right;
    width: 226px;
    border-left: 1px solid #CCCCCC;
}

.fundraiserContainers div#fundraiserEventDetails h3, div#eventDetails h3 {
    font-size: 100%;
    padding-bottom: 0.5em;
}

.fundraiserContainers div.fundraiserEventText {
    padding-bottom: 20px;
}

.fundraiserContainers div.countDownText {
    font-size: 1.2em;
    font-weight: bold;
}

.fundraiserContainers div#fundraiserEventLocation {
    float: left;
    padding-bottom:1em;
    width: 180px;
    word-wrap: break-word;
}

.fundraiserContainers div#locationText {
    float: left;
    width: 180px;
}

#fundraiserRightCol {
    float: right;
    width: 445px;
    padding-bottom: 25px;
    padding-left: 22px;
}

#fundraiserRightCol div#fundraiserCharityLogo {
    display: table-cell;
    vertical-align: middle;
    width: 445px;
    height: 150px;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: center;
}

div#fundraiserNoCharityLogo {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    height:150px;
    background-color: #DDD7EA;
}

div#fundraiserNoCharityLogo p {
    margin-top:65px;
    font-size: 1.875em;
    color: #55379B;
    text-align: center;
}

#fundraiserRightCol div#donations {
    float:left;
    padding-top: 25px;
}

#fundraiserRightCol .fundraiserDonationsHeader {
    color: #55379B;
    background-color: #E0E0E0;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    padding-left: 0.5em;
    margin: 0;
}

#fundraiserRightCol div#donations #fundraiserDonationsTable {
    width: 445px;
    border-collapse:collapse;
}

#fundraiserDonationsTable td.fundraiserDonationsBy {
    border-left: 1px solid #E0E0E0;
    padding-left: 10px;
    padding-top: 18px;
    color: #6D6D6D;
    width: 350px;
    font-weight: bold;
}

#fundraiserDonationsTable td.fundraiserDonationsDate {
    border-left: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    padding-left: 10px;
    padding-bottom: 18px;
    font-weight: bold;
    color: #6D6D6D;
    width: 350px;
}

#fundraiserDonationsTable td.fundraiserDonationsGiftAidAmount {
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    font-weight: bold;
    width: 115px;
    padding-bottom: 18px;
    color: #6D6D6D;
}

#fundraiserDonationsTable td.fundraiserDonationsDescription {
    padding-bottom: 0;
    border-left: 1px solid #E0E0E0;
    padding-left: 10px;
    padding-top: 18px;
    color: #6D6D6D;
    padding-right: 10px;
    width: 340px;
}

#fundraiserDonationsTable td.fundraiserDonationsDescriptionSpacer {
    border-right: 1px solid #E0E0E0;
}

#fundraiserDonationsTable td.fundraiserDonationsAmount {
    border-right: 1px solid #E0E0E0;
    width: 115px;
    vertical-align: bottom;
    color: #6D6D6D;
    font-weight: bold;
}

#fundraiserDonationSummaryBox {
    padding-top: 25px;
    width: 445px;
    float: left;
}

#fundraiserDonationSummaryBox div#fundraiserDonationSummeryInfo {
    float:left;
    background-color: #fdfeff;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    width: 443px;
    color: #6D6D6D;
    padding-bottom: 15px;
}

div#fundraiserOnlineOffline {
    float: left;
    padding-left: 10px;
    width: 190px;
    padding-right: 10px;
}

div.fundraiserOnlineOfflineText {
    float: left;
    width: 100px;
    padding-top: 10px;
}

div.fundraiserOnlineOfflineAmount {
    float: left;
    color: #55379B;
    font-weight: bold;
    width: 90px;
    padding-top: 10px;
}

div.fundraiserLinkSpacing {
    padding-top: 10px;
}

#fundraiserTotals {
    float:right;
    width: 185px;
}

div.fundraiserSummaryTotalsText {
    float: left;
    width: 70px;
    padding-top: 10px;
}

div.fundraiserSummaryTotalsAmount {
    float: right;
    color: #55379B;
    font-weight: bold;
    width: 115px;
    padding-top: 10px;
}

#div.fundraiserDonateButton {
    float: left;
    width: 448px;
    text-align: center;
}

input.fundraiserBottomDonateButton {
    border:none;
    width:416px;
    height:51px;
    /*background:url(/images/Fundraiser-Bottom-Donate-Button.gif) no-repeat;*/
    background-position: 0px 0px;
    cursor:pointer;
    color:transparent;
    font-size:0;
    margin-top: 8px;
}

.fundraiserBottomButtonMargin {
    float:left;
    margin-top: 10px;
    margin-left: 23px;
}

input.fundraiserBottomDonateButton:hover {
    /*background:url(/images/Fundraiser-Bottom-Donate-Button-rollover.gif) no-repeat;*/
    background-position: 0px -61px;
    width:416px;
    height:51px;
}

#gallery a {
    padding-right: 6px;
}

/*input.fundraiserBottomNoDonateButton {
    border:none;
    width:413px;
    height:48px;
    background:url(/images/Fundraiser-Bottom-Donations-Closed.gif) no-repeat;
    color:transparent;
    font-size:0;
    margin-top: 8px;
} */

.galleryImg {
    width: 64px;
    height: 64px;
}

#thermometerContainer {
    float:left;
    width:100px;
    margin-top: 8px;
}

/*
  Popular Event styles
*/
.PopularEventEditLabel {
    float: left;
    width: 180px;
}

/* Fundraiser confirmation styles */

div#fundraiserConfirmationURL {
    float:left;
    width:320px;
    word-wrap: break-word;
}

#fundraiserConfirmationViewPage {
    float:right;
    padding-right: 12px;
    margin-bottom: 20px;
}

#fundraiserConfirmationShareText {
    float:left;
    padding-top: 10px;
    color:#64379B;
    font-size: 1.2em;
    font-weight:bold;
}

#fundraiserConfirmationText {
    margin-top:40px;
    color:#64379B;
    font-size: 1.2em;
    font-weight:bold;
    text-align:center;
}

#fundraiserConfirmationFacebook {
    float:left;
    padding-left: 25px;
}

#fundraiserConfirmationTwitter {
    float:left;
    padding-left: 40px;
    padding-top: 5px;
}

hr#fundraiserConfirmation {
    background-color:#64379B;
    color:#64379B;
    height:5px;
    margin: 0.5em 0;
}

div#fundraiserConfirmationPromoButtonContainer {
    float:left;
    width:142px;
    height:208px;
    margin-left:8px;
    margin-right:5px;
    margin-top: 39px;
    background:url(/images/button_image.gif) no-repeat;
}

div#fundraiserConfirmationPromoButtonText {
    padding-left: 10px;
    padding-top: 105px;
    color:#FFFFFF;
    font-size: 1.1em;
    font-weight: bold;
}

div#fundraiserConfirmationPromoMobileContainer {
    float:left;
    width:142px;
    height:247px;
    margin-right:5px;
    background:url(/images/mobile_image.gif) no-repeat;
}

div#fundraiserConfirmationPromoMobileText {
    padding-left: 8px;
    padding-top: 145px;
    color:#FFFFFF;
    font-size: 1.1em;
    font-weight: bold;
}

div#fundraiserConfirmationPromoEmailSigContainer {
    float:left;
    width:142px;
    height:208px;
    margin-top:39px;
    background:url(/images/signatures_image.gif) no-repeat;
}

div#fundraiserConfirmationPromoEmailSigText {
    padding-left: 7px;
    padding-top: 105px;
    color:#FFFFFF;
    font-size: 1.1em;
    font-weight: bold;
}

div#fundraiserConfirmationActivationWarning {
    border:1px solid #FFC200;
    margin-bottom:15px;
    padding:5px;
    float:left;
}

div#fundraiserConfirmationActivationImage {
    float:left;
    padding-right:5px;
}

/* someone special preview area styles */

#someoneSpecialText {
    font-size: 0.9em;
}

#someoneSpecialReason {
    float:left;
    margin-right: 0.4em;
}

#reasonBox {
    float:left;
    /*width:205px;*/
    margin-right:0.4em;
}

.someoneSpecialMaxChar {
    /*float:right;*/
    font-size:0.8em
}

#someoneSpecialNamesBox {
    float:left;
    /*width:200px;*/
}

#someoneSpecialPreview {
    float:right;
    margin-top: 1em;
}

#previewHeading {
    color:#64379B;
    font-size: 1.5em;
    padding-left: 30px;
}

hr#previewHr {
    color: #CCCCCC;
    background-color: #CCCCCC;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
    border: 0;
    height: 2px;
}

#fundraiserPreviewImage {
    background:url(/images/Fundraiser-Preview.jpg) no-repeat;
    width: 700px;
    height:253px;
}

#someoneSpecialPreviewImage {
    background:url(/images/Celebrate-Preview.gif) no-repeat;
    width: 700px;
    height:253px;
}

#someoneSpecialPreviewReason {
    padding-top: 20px;
    text-align: center;
    color:#ffffff;
}

#someoneSpecialPreviewText {
    font-size: 1.3em;
    text-align:center;
    color:#ffffff;
}

.someoneSpecialPreviewSprite {
    background: url('/images/someoneSpecialPreviewSprite.gif') no-repeat top left;
}

#outerWrapper #contentWrapper #content-2col a.previewLink {
    height: 16px;
    width: 80px;
    text-decoration: none;
    font-size: 1.1em;
    padding-top: 8px;

}

/*.previewLink:hover {
    background-image:url(/images/Celebrate-Preview-button-rollover.gif);
    display:block;
    height:31px;
    width:122px;
    background-position: 0px -41px;
}*/

#eventLocation {
    width:175px;
    float:left;
    padding-right:10px;
}

/* Google maps styles */
#mapDisclaimer {
    position:absolute;
    bottom: -215px;
    padding-right: 5px;
}

#fundraiserMap {
    border:solid 1px #cccccc;
}

#eventMap {
    margin-top:18px;
    border:solid 1px #cccccc;
}

#eventMapDisclaimer {
    position:absolute;
    bottom: -230px;
}

input.fundraiserNotActive {
    border:none;
    width:306px;
    height:49px;
    background-position: 0px -122px;
    background:url(/images/BT-MyDonate-Page-Activation-Button.gif) no-repeat;
    cursor:pointer;
    color:transparent;
    font-size:0;
    margin-top: 18px;
    padding: 0;
}


#charityLogoForFundraiserSearch {
    float:right;
    width: 150px;
    max-height: 150px;
    text-align: center;
    overflow: hidden;
    max-height: 150px;
}

#fundraiserSearchDivWithLogo {
    width:70%;
    padding-bottom: 0.5em;
}

#searchByCharityWithLogo {
    max-width:510px;
    width:auto!important;
}

#widthWithCharityLogo{
    width:45em;
}

#searchWithCharityLogo{
    height: 1.75em;
    padding: 0em 0.5em 0em 0.5em!important;
}

#searchCharityLogo{
    margin-left:0!important;
}

#searchByCharityBox{
    margin-top:0.25em;
    margin-left:0.5em;
}

#searchButtonHolder{
    width:71.3%
}

/* New Event page styles */

.startFundraisingSprite {
    background: url('/images/Event-start-fundraising-sprite.gif') no-repeat top left;
}

/*input.startFundraisingButton {
    display:block;
    height:49px;
    width:306px;
    background-position: 0px 0px;
    border:none;
    cursor:pointer;
    color:transparent;
    font-size:0;
}*/

/*input.startFundraisingButton:hover {
    display:block;
    height:49px;
    width:306px;
    background-position: 0px -59px;
}*/

#eventInfoHolder {
    float:left;
    position: relative;
    width:200px;
    height: 200px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#eventCharityText {
    float:left;
    padding-top: 5px;
}

#eventPageLocation {
    float:left;
    width:200px;
    padding-top: 5px;
}

#eventSharePage {
    width:160px;
    position:absolute;
    bottom:0;
    left:0;
}

#eventCharityLogo {
    display:table-cell;
    width:230px;
    height:155px;
    text-align:center;
    vertical-align:middle;
    margin-top:20px;
    padding-top: 10px;
}

div#eventNoCharityLogo {
    width: 150px;
    height:75px;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    background-color: #DDD7EA;
    margin-left:40px;
}

div#eventNoCharityLogo p {
    color:#55379B;
    font-size: 1.2em;
    margin: 0;
}

.eventDonationSummary  {
    float:left;
    padding-top: 10px;
}

#eventLeftCol {
    padding-right:28px;
}

#eventYouTube {
    float:left;
    padding-top: 10px;
}

.eventContactContainer {
    float:left;
    padding-bottom:10px;
    width:145px;
}

.pageColDivider {
    background-image: url(/images/eventDivider.gif);
    background-position: 466px 0;
    background-repeat:repeat-y;
    overflow: hidden;
}

a.greyUnderline , #fundraiserRightCol a.greyUnderline{
    color:#6D6D6D;
    text-decoration:underline;
}

div#eventOnlineOffline {
    float: left;
    width: 190px;
    border-right:1px solid #CCCCCC;
    margin-top:10px;
    padding-left: 10px;
    padding-right: 10px;
}

#eventAmounts {
    float:left;
    width:330px;
    font-weight:bold;
    font-size:1.8em;
}

#eventAmounts div.amountLabel {
    float:left;
    color:#6D6D6D;
    width:150px;
}

/* Styles for refresh of Create My Challenge page */

.addressSpacer {
    padding-bottom:5px;
}

.largeAddressSpacer {
    padding-bottom:10px;
}

.sectionHeading {
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #9D9D9D;
}

#creationDate {
    float: right;
    width: 266px;
}

#rightColumnInfo {
    position:absolute;
    left:710px;
    width:205px;
    word-wrap:break-word;
}

#addressFields {
    padding-top:5px;
}

#addressFields label, #challengeStartDate label, #challengeEndDate label{
    font-weight: normal;
}

#startDateStr, #startHour, #startMin, #eventEndDate, #endHour, #endMin{
    width: auto;
}

#fundraisingStory input,  #fundraisingStory textarea{
    width: 410px;
}

.currency {
    font-size: 1.3em;
}

.file-upload-supported {
    width:450px;
}

#imageupload {
    width: auto;
    margin-right: 1em;
}

#fundraiserImage {
    margin-right:3em;
    margin-top:3em;
}

#ImgUploadFailure {
    font-weight:bold;
    color:#990000;
}

fieldset .web label {
    display:inline-block;
    width:265px;
    font-weight: normal;
}

#strAcceptDonationInMonths {
    width:155px;
}

#emailLabel, #passwordLabel {
    float:left;
    width:100px;
    clear:both;
}

#buttonSpacer {
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #9D9D9D;
}

#pleaseNote, #giftAidNote {
    margin-top: 10px;
}

/* Styles for  Start fundraising images */
.block1 {margin-right:14px;}
.block2 {margin-right:13px;}
.block4 {margin-top:10px;
    margin-left: 16px;
}



