/* _______________________________________

Reset and  starter stylesheet
________________________________________*/



/* _________ TOC _____________

=1= Miscellaneous conveniences
=2= Reusable classes
=3= Clearing floats
=4= Debugging
____________________________*/



html, body, form, fieldset{ /* Resetting the browser defaults */
  margin: 0;  padding: 0; font: 100%/140% Arial, Helvetica, Verdana, "Trebuchet Ms", sans-serif;
}

body{ /* Set the starting font size */
  font: 12px/150% Arial, Helvetica, Verdana, "Trebuchet Ms", sans-serif; /* 12px/18px now */
}
* html{ font: 62.5%/150% Arial, Helvetica, Verdana, "Trebuchet Ms", sans-serif; } /* Make text resizeable in IE6 as well */
  * html body{ font-size: 120%; }

select, input, textarea{ /* Form field text-scaling */
  font: 99%/140% Arial, Helvetica, Verdana, "Trebuchet Ms", sans-serif;
}

pre, code{ /* Fixing monospaced fonts */
  font: 100% monospace;
}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl{ /* Reset vertical margins */
  margin: 1.5em 0; padding: 0;
}

h1, h2, h3, h4, h5, h6{ /* Default headings styles */
  text-align: left; font-size: 100%; font-weight: bold;
}

li, blockquote, dd{ /* Apply left margin only to the few elements that need it */
  margin-left: 1.5em; padding: 0; list-style: none;
}
ul li{ list-style: none; } /* Unordered lists are used for semantics most of the time any way */



/* _______________________

=1= Miscellaneous conveniences
_______________________ */



form label    { cursor: default;                                  }
fieldset      { border: none;                                     }
legend        { font-weight: bold; color: inherit; display: none; } /* Hide the legend element by default */
button        { cursor: pointer; font-size: 100%; display: inline }
input:focus, 
textarea:focus{ background: #ffffdf;                              }

a img{ border: none; }

abbr, acronym{ border-bottom: 1px dotted #dfdfdf; cursor: help; }



/*______________

=2= Reusable classes
______________*/



.hr{ /* Horizontal rules, ex. usage: <div class="hr"><hr /></div> */
	clear: both;	margin:10px 0 0 0; background: #fff; border: none; border-top: 1px dotted #dfdfdf;
}
	hr{
		visibility: hidden;	font-size: 0;	line-height: 0;	height: 0; border: none;
	}

.accent{ /* For visualy emphasizing content, ex. usage: <strong class="accent"></strong> or <em class="accent"></em> */
	background: #ffffbf; color: inherit; padding: .2em;
}

.caps{ /* Used on abbr and acronym elements */
  font-variant: small-caps;
}

.amp{ /* Pretty ampersands, ex. usage: <span class="amp">&amp;</span>, taken from Blueprint typography stylesheet */
  color: #666; font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", serif; font-size: 1.1em; line-height:10%; font-style: italic;
}

.noShow{ /* Remove an element from the screen, but remain accessible to non-graphical browsers and handheld devices */
  position: absolute; top: -9999px; left: -9999px; visibility: none; display: block; height: 0; width: 0; overflow: hidden;
}

/* For images */
.left{ float: left; margin: 0 .75em 0 0; }
.right{ float: right; margin: 0 0 0 .75em; }
.center{ display: block; margin: 1.5em auto; }

/* Key-Value pairs */
.keyValue{
  margin: 1.5em 0;
}
  /* When in need of a more robust layout */
  ul.keyValue li{ overflow: hidden; margin: 0; padding: 0; width: 100%; }
    ul.keyValue .key{ float: left; width: 29%; }
    ul.keyValue .value{ float: right; width: 69%; }
  /* When you want more semantics, this layout can't handle multiple rows of text in "key" */
  dl.keyValue dt{ width: 29%; font-size: 100%; font-weight: normal; margin: 0; padding: 0; }
  dl.keyValue dd{ margin: -1.5em 0 0 0; padding: 0 0 0 69%; } /* The negative top margin must match the line-height being used */



/*_____________

=3= Clearing floats
_____________*/



.overflowClear{ overflow: hidden; }

.afterClear:after{
  content: "."; display: block; clear: both; height: 0; line-height: 0; font-size: 0; min-height: 0; visibility: hidden;
}

* html .overflowClear, * html .afterClear{ /* Trigger hasLayout for IE6, hey, we know, give us a break ok... */
  zoom: 1;
}



/*_______

=4= Debugging
_______*/




.debug{ /* Used to outline an element on screen but don't mess with the box model */
  outline: 1px solid fuchsia;
  background: yellow;
  min-height: 1px;
}

.zoom{ zoom:1; } /* Trigger hasLayout for IE */

/* Uni-Form by Dragan Babic [Superawesome Industries]  - http: //dnevnikeklektika.com/uni-form/, http://sprawsm.com/ */ 
/* Some rights reserved - http: //creativecommons.org/licenses/by-sa/2.5/ */
/* It is suggested not to edit this file directly, but rather the uni-form.css provided in the Uni-Form zip archive */

/* ------------------------------------------------------------------------------ */

.uniForm{ margin: 0; padding: 0; position: relative; z-index: 1; } /* reset stuff */

  /* Some generals and more resets */
  .uniForm fieldset{ border: none; margin: 0; padding: 0; }
    .uniForm fieldset legend{ margin: 0; padding: 0; }

    /* This is the main unit that contains our form elements */
    .uniForm .ctrlHolder,
    .uniForm .buttonHolder{ margin: 0; padding: 0; clear: both; }

    /* Clear all floats */ 
    .uniForm:after,
      .uniForm .buttonHolder:after, 
      .uniForm .ctrlHolder:after, 
        .uniForm .ctrlHolder .multiField:after,
          .uniForm .inlineLabel:after{ content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; }

    /* A class to be used on a label that contains a checkbox or a radio button */
    .uniForm .inlineLabel,
    .uniForm .inlineLabels .inlineLabel,
    .uniForm .blockLabels .inlineLabel{ width: auto; float: none; margin: 0; display: block; }
      /* IE shows borders & padding on checkboxes and radio buttons if they are declared on an input element, remove them */
      /* Legacy/Inheritance fix */
      .uniForm .inlineLabel input,
      .uniForm .inlineLabels .inlineLabel input,
      .uniForm .blockLabels .inlineLabel input{ border: none; padding: 0; margin: 0; }

/* ------------------------------------------------------------------------------ */

    /* Styles for form controls where labels are above the input elements */
    /* Set the class of the parent (preferably to a fieldset) to .blockLabels */

      .uniForm label,
      .uniForm .label,
      .uniForm .blockLabels label,
      .uniForm .blockLabels .label{ display: block; float: none; padding: 0; line-height: 100%; width: auto; }

      /* Float the input elements */
      .uniForm .textInput,
      .uniForm .blockLabels .textInput,
      .uniForm .blockLabels .fileUpload,
      .uniForm .selectInput,
      .uniForm .blockLabels .selectInput,
      .uniForm .blockLabels select,
      .uniForm textarea,
      .uniForm .blockLabels textarea{ float: left; }
      
      /* Postition the hints */
      .uniForm .formHint,
      .uniForm .blockLabels .formHint{ float: right; margin: 0; clear: none; }
      
      /* Position the elements inside combo boxes (multiple selects/checkboxes/radio buttons per unit) */
      .uniForm .multiField,
      .uniForm .blockLabels .multiField{ width: auto; float: left; }
        .uniForm .multiField .inlineLabel,
        .uniForm .blockLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
        .uniForm .multiField .blockLabel,
        .uniForm .blockLabels .multiField .blockLabel{ float: left; width: auto; margin: 0; }
        .uniForm .multiField .blockLabel .textInput,
        .uniForm .multiField .blockLabel .selectInput,
        .uniForm .multiField .blockLabel select,
        .uniForm .blockLabels .multiField .blockLabel .textInput,
        .uniForm .blockLabels .multiField .blockLabel .selectInput,
        .uniForm .blockLabels .multiField .blockLabel select{ width: 100%; margin: 0; }

/* ------------------------------------------------------------------------------ */

    /* Styles for form controls where labels are in line with the input elements */
    /* Set the class of the parent (preferably to a fieldset) to .inlineLabels */
        .uniForm .inlineLabels label,
        .uniForm .inlineLabels .label{ float: left; margin: 0; padding: 0; line-height: 100%; position: relative; }
        
        /* Float the input elements */
        .uniForm .inlineLabels .textInput,
        .uniForm .inlineLabels .fileUpload,        
        .uniForm .inlineLabels .selectInput,
        .uniForm .inlineLabels select,
        .uniForm .inlineLabels textarea{ float: left; }

      /* Postition the hints */
      .uniForm .inlineLabels .formHint{ clear: both; float: none; }
      .uniForm .inlineLabels .multiField{ float: left; }
      .uniForm .inlineLabels .multiField .inlineLabel{}
      .uniForm .inlineLabels .multiField .blockLabel{}
        .uniForm .inlineLabels .multiField .blockLabel .textInput,
        .uniForm .inlineLabels .multiField .blockLabel .selectInput,
        .uniForm .inlineLabels .multiField .blockLabel select{ display: block; width: 100%; float: none; }
        .uniForm .inlineLabels .multiField select{ float: left; }
      
/* ------------------------------------------------------------------------------ */

    /* Required fields asterisk styling for .blockLabels */
    .uniForm label em,
    .uniForm .label em,
    .uniForm .blockLabels label em,
    .uniForm .blockLabels .label em{ /* position: absolute; left: -7px; */ }
    
    /* Required fields asterisk styling for .inlineLabels */
    .uniForm .inlineLabels label em,
    .uniForm .inlineLabels .label em{ display: block; position: absolute; left: auto; right: 0; font-style: normal; font-weight: bold; }
    .uniForm .inlineLabel em{ position: absolute; left: 7px; }

/* ------------------------------------------------------------------------------ */

    /* Messages */
    .uniForm #errorMsg,
    .uniForm .error{
    }
      .uniForm #errorMsg dt,
      .uniForm #errorMsg h3{
      }
      .uniForm #errorMsg dd{
      }
        .uniForm #errorMsg ol{
        }
          .uniForm #errorMsg ol li{
          }
      .uniForm .errorField{
      }
    
    .uniForm #OKMsg{
    }

/* ------------------------------------------------------------------------------ */

    /* Columns */
    
    .uniForm .col{ float: left; }
    .uniForm .col.first{}
    .uniForm .col.last{}

/*
@import "uni-form-generic.css";
*/

/* Keep in mind that wherever you see 'Required property' it means that the property must exist */

/* ------------------------------------------------------------------------------ */

  /* Generals */
  .uniForm fieldset{}
    .uniForm fieldset legend{ color: #333; font-weight: bold; font-size: 100%; margin: 0; padding: 1.5em 0; }
    
    /* This is the main unit that contains our form elements */
    .uniForm .ctrlHolder{ padding: 7px; border-bottom: 1px solid #dfdfdf; }
    
    .uniForm .buttonHolder{ text-align: right; }
      .uniForm .resetButton{ float: left; }
      .uniForm .primaryAction{ font-weight: bold; }
    
    /* This class gets added to div.ctrlHolder to highlight the row */
    .uniForm .focused{ /* background: #fffcdf; */ }
      
      /* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
      .uniForm .inlineLabel input,
      .uniForm .inlineLabels .inlineLabel input,
      .uniForm .blockLabels .inlineLabel input{  margin: 0 .4em 0 0; }
        .uniForm .inlineLabel span{ float: left; width: 90%; }
        
/* ------------------------------------------------------------------------------ */

    /* .blockLabels (default style, will be applied even if you don't class the parent element) */
    .uniForm .blockLabels .ctrlHolder{}
      
      .uniForm label,
      .uniForm .blockLabels label,
      .uniForm .blockLabels .label{ margin: 0 0 .5em 0; }
      
      .uniForm .textInput,
      .uniForm .blockLabels .textInput,
      .uniForm .blockLabels .fileUpload{ width: 90%; /* <- Required property */ }
    
      .uniForm .selectInput,
      .uniForm select,
      .uniForm .blockLabels .selectInput,
      .uniForm .blockLabels select{ width: 90%; /* <- Required property */ }
      .uniForm textarea,
      .uniForm .blockLabels textarea{ width: 90%; /* <- Required property */ height: 12em; }

      .uniForm .formHint,
      .uniForm .blockLabels .formHint{ width: 90%; /* <- Required property */ font-size: .9em; color: #777; position: relative; }
      
      .uniForm .multiField,
      .uniForm .blockLabels .multiField{ width: 90%; }
        .uniForm .multiField .inlineLabel,
        .uniForm .blockLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
        .uniForm .multiField .blockLabel,
        .uniForm .blockLabels .multiField .blockLabel{ width: 30%; margin: 0 10px 0 0; }
        .uniForm .multiField .blockLabel .textInput,
        .uniForm .multiField .blockLabel .selectInput,
        .uniForm .multiField .blockLabel select,
        .uniForm .blockLabels .multiField .blockLabel .textInput,
        .uniForm .blockLabels .multiField .blockLabel .selectInput,
        .uniForm .blockLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* ------------------------------------------------------------------------------ */

    /* .inlineLabels */
    .uniForm .inlineLabels .ctrlHolder{ /*width: 210px;*/}
    
    .uniForm .inlineLabels label,
    .uniForm .inlineLabels .label{ width: 45%; /* <- Required property */ margin: .3em 2% 0 0; /* <- Required property */ }
    
    .uniForm .inlineLabels .textInput,
    .uniForm .inlineLabels .fileUpload{ width: 330px; /* <- Required property */ height: 30px; border: 1px solid #e2e2e2; font-size: 14px; padding: 0 5px; color: #505050; }
    
    .uniForm .inlineLabels .selectInput,
    .uniForm .inlineLabels select{ width: 330px; /* <- Required property */ height: 30px; border: 1px solid #e2e2e2; font-size: 14px; padding: 0 5px; color: #505050;}
    
    .uniForm .inlineLabels textarea{ width: 330px; /* <- Required property */ height: 50px; border: 1px solid #e2e2e2; font-size: 14px; padding: 5px; color: #505050; }

    .uniForm .inlineLabels .formHint{ margin-top: 0; margin-left: 47%; font-size: .9em; color: #777; position: static; }
    
    .uniForm .inlineLabels .multiField{ width: 45%; /* <- Required property */ margin: 0 0 .3em 0; }
      .uniForm .inlineLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
      .uniForm .inlineLabels .multiField .blockLabel{ float: left; width: 26%; margin: 0 3% 0 0; }
      .uniForm .inlineLabels .multiField .blockLabel .textInput,
      .uniForm .inlineLabels .multiField .blockLabel .selectInput,
      .uniForm .inlineLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* Focus pseudoclasses */
.uniForm .ctrlHolder .textInput:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm .ctrlHolder textarea:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
.uniForm div.focused .formHint{ color: #333; }

/* Columns (they are floated left by default) */
.uniForm .col{ width: 47.9%; /* <- Required property */ margin: 0 2% 20px 0; }
/* Use .first and .last classes to control the layout/spacing of your columns */
.uniForm .col.first{ width: 49%; /* <- Required property */ float: left; clear: none; }
.uniForm .col.last{ width: 49%; /* <- Required property */ float: right; clear: none; margin-right: 0; }

/* Messages */
.uniForm #errorMsg{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
.uniForm .error{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; }

  .uniForm #errorMsg dt, .uniForm #errorMsg h3{ margin: 0 0 .5em 0; font-size: 100%; line-height: 100%; font-weight: bold; }
  .uniForm #errorMsg dd{ margin: 0; padding: 0; }
    .uniForm #errorMsg ol{ margin: 0; padding: 0; }
      .uniForm #errorMsg ol li{ margin: 0; padding: 2px; list-style-position: inside; border-bottom: 1px dotted #df7d7d; position: relative; }
    .uniForm .errorField{ color: #af4c4c; margin: 0 0 6px 0; padding: 4px; background: #ffbfbf; }

.uniForm #OKMsg{ background: #C8FFBF; border: 1px solid #A2EF95; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
  .uniForm #OKMsg p{ margin: 0; }

/*
IT IS STRONGLY ADVISED TO MAKE YOUR CHANGES AFTER THIS COMMENT BY REPEATING (COPYING) THE SELECTOR FROM ABOVE, 
AND MODIFYING IT WITH YOUR OWN PROPERTIES/VALUES. THIS IS RECOMMENDED BECAUSE IF YOU HAPPEN TO RUN INTO TROUBLE, 
YOU CAN VERY EASILY REVERT TO A GENERIC STYLE OF UNI-FORM. BEST OF LUCK... 
*/

/* ------------------------------------------------------------------------------ */

html{ background: #efefef; color: #333; }
  
/* Links and Typography */
a:link{ color: #3fa9e0; }
a:hover{ text-decoration: none; }
a:visited{ color: #2380b1; }

/* Style lists for the main column */
#primary_main ul li{ list-style: square; margin-bottom: .75em; padding: 0 0 .75em 0; border-bottom: 1px dotted #ccc; }
#primary_main ol li{ list-style: decimal; margin-bottom: .75em; padding: 0 0 .75em 0; border-bottom: 1px dotted #ccc; }

/* IE7 hack */
*+html #primary_main ol li{ margin-left: 2em; }
/* IE6 hack */
* html #primary_main ol li{ margin-left: 2em; }

#primary_main dt{ text-transform: uppercase; font-weight: bold; }
#primary_main dd{ margin: 0 0 .75em 0; padding: 0 0 .75em 0; border-bottom: 1px dotted #ccc; }

blockquote{ margin-left: 1.5em; padding: 0 0 0 1.5em; border-left: 2px solid #dfdfdf; }

input[type=text], input[type=password], textarea{ border: 1px solid #aaa; padding: 2px; }
input[type=text]:focus, input[type=password]:focus, textarea:focus{ border-color: #777; }

  #wrapper{ width: 740px; margin: 1em auto; background: #fff url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/main_bg_middle.png) 0 0 repeat-y; position: relative; font-size: 11px; }
    
    /* ### Begin iPetitions header, DO NOT MODIFY!!! ### */
    #iPT{ background: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/ipt_bg.png) 0 100% no-repeat; width: 740px; margin: 0 auto; padding: 10px 0 24px 0; line-height: 24px; }
    #iPT:after{ content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; }
      .iPTLogo{ float: left; margin: 0; padding: 0 0 0 24px; width: 105px; height: 24px; }
        .iPTLogo a{ display: block; height: 24px; text-indent: -9999px; background: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/icn_ipt_logo.png) 0 0 no-repeat; }
      .startPet{ float: right; margin: 0 24px 0 0; display: inline; }
    /* ### End iPetitions header, DO NOT MODIFY!!! ### */
    
    /* Header */
    #header{ background: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/main_bg_top.png) 0 0 no-repeat; padding: 20px 40px 0 40px; }
      #header_top{}
      #header_name{ margin: 20px 0 0 0; padding: 20px 200px 20px 1.5em; border: 1px solid #dfdfdf; border-width: 1px 0; position: relative; }
        #header_name h1{ margin: 0; font-size: 3em; line-height: 120%; letter-spacing: -.07em; }
      #header_bottom{}
      
      /* Navigation bar */
      #navigation{}
        #navigation ul{ margin: 0; border-bottom: 1px solid #dfdfdf; overflow: hidden; width: 100%; }
          #navigation li{ float: left; margin: 0; padding: .5em 0; list-style: none; }
            #navigation a{ display: block; padding: .5em 1.5em; line-height: 100%; text-transform: uppercase; border-left: 1px solid #dfdfdf;  font-weight: bold; letter-spacing: -.08em; }
            #navigation a:link, #navigation a:visited, #navigation a:hover{ text-decoration: none; }
            #navigation a:hover{ color: #2380b1; }
            #navigation li.first a:link, #navigation li.first a:visited, #navigation li.first a:hover{ border: none; }
            #navigation li.last a{}
            #navigation li.selected a:link, #navigation li.selected a:visited, #navigation li.selected a:hover{ background: #3fa9e0; color: #fff; }
      
    /* Content area */
    #primary_wrapper{ padding: 0 0 0 40px; float: left; width: 460px; }
    #primary_top{}
    #primary_main{ width: 470px; overflow: hidden; }
    #primary_bottom{}
      
      #petition{ font-size: 1.1em; }
      
        .signPetBtn{ margin: 1.5em 0; text-align: center; height: 36px; line-height: 36px; font-weight: bold; font-size: 14px; }
          .signPetBtn a, .signPetBtn a span{ display: block; background-image: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/btn_sign_petition.png); background-repeat: no-repeat; }
          .signPetBtn a{ background-position: 0 0; padding: 0 0 0 10px; }
          .signPetBtn a:link, .signPetBtn a:visited, .signPetBtn a:hover{ color: #fff; text-decoration: none; }
          .signPetBtn a:hover{ text-decoration: underline; }
            .signPetBtn span{ background-position: 100% 0; padding: 0 10px 0 0; }

		.sideBarA {
		   text-align:center;
		}
      
      #sign_petition, #comment_form, #emailFriends{ background: #efefef; border: 1px solid #dfdfdf; border-width: 1px 0; margin: 20px 0; padding: 0px; }
        #sign_petition h2, #comment_form h2, #emailFriends h2{ margin: 0; }
      
      #blog{}
        .post{ border-bottom: 1px solid #dfdfdf; font-size: 1.1em; }
          .post h2{ border-bottom: 1px dotted #dfdfdf; padding: 0 0 .5em 0; }
            .blog_post_title{ float: left; width: 269px; }
            .post_info{ float: right; width: 190px; font-size: 11px; text-align: right; font-weight: normal; }
              .date{}
              /*.commentLink{ padding: 0 0 0 10px; background: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/icn_comment.png) 0 50% no-repeat; }*/

        #comments{}
          ol.comments{}
            #primary_main .comments li{ margin-bottom: 1.5em; padding: 0; border-bottom: 1px solid #dfdfdf; position: relative; }
            
            /* IE7 hack */
            *+html #primary_main .comments li{ margin-left: 0 !important; list-style-position: inside; }
            /* IE6 hack */
            * html #primary_main .comments li{ margin-left: 0 !important; list-style-position: inside; }
            
              .comment_info{}
                .date{}
                .comment_perm_link{ position: absolute; top: 0; right: 0; }
                .comment_perm_link:link, .comment_perm_link:visited, .comment_perm_link:hover{ color: #ccc; text-decoration: none; }
                .comment_perm_link:hover{ color: #3fa9e0; }
              ol.comments li p{ margin-top: 0; }
        #comment_form{}
      
      h2{ width: 100%; font-size: 1.3em; margin: 1.3em 0; zoom: 1; }
      h2:after{ content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; }
        h2 .sig_title{ float: left; }
        h2 .sig_total{ float: right; color: #999; font-weight: normal; font-variant: small-caps; }
          h2 .sig_total strong{ padding: 2px 4px; background: #efefef; color: #777; }
      
      p.pagination{ line-height: 100%; border: 1px solid #dfdfdf; border-width: 1px 0; padding: 1.5em 0; }
      #blog p.pagination{ border-top: none; margin-top: 0; }
        .pagination a, .pagination strong, .pagination span{ padding: .25em .5em; }
        .pagination span.pagination_label{ padding: 0 13px 0 0; color: #999; }
        .pagination a:link, .pagination a:visited, .pagination a:hover{ text-decoration: none; }
        .pagination a:hover{ text-decoration: underline; }
        .pagination a.pagin_first, .pagination span.pagin_first{}
        .pagination a.pagin_previous, .pagination span.pagin_previous{}
        .pagination a.pagin_next, .pagination span.pagin_next{}
        .pagination a.pagin_last, .pagination span.pagin_last{}
        .pagination strong{ background: #efefef; }
        .pagination span.hellip{}
      
      #signatures_list{ background: #efefef; border-top: 1px solid #dfdfdf; /*width: 660px; position: relative;*/ }
         #primary_main #signatures_list li{ margin: 0; padding: 10px; border-bottom: 2px solid #fff; list-style: none; position: relative; }
        #signatures_list li:after{ content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; }
          .sig_num{ float: left; margin-right: 15px; display: block; text-align: right; line-height: 100%; width: 30px; }
            .sig_num a:link, .sig_num a:visited, .sig_num a:hover{ color: #555; font-weight: bold; text-decoration: none; padding: 2px; }
            .anonymous{ color: #777; font-weight: normal; }
          .sig_item, .sig_comment{}
          .sig_comment:after{ content: "."; display: block; height: 0; line-height: 0; font-size: 0; clear: both; min-height: 0; visibility: hidden; }
          #signatures_list h3{ float: left; width: 65px; margin: 0; }
          #signatures_list .sig_comment_content{ float: right; width: 370px; }
            .sig_comment_content *{ margin: 0; }
            .sig_comment_content p, .sig_comment_content ul, .sig_comment_content ol, .sig_comment_content blockquote{ margin: 0; display: inline; }
    .sig_wrapper {
        float: left;
        width: 400px;
      }
    /* Secondary area */
    #secondary{ float: right; width: 170px; padding: 0 40px 0 0; }
      
      #secondary h3{ margin: 1.5em 0 0 0; font-size: 1.2em; }
        #secondary h3 span{ background: #fff; padding-top: 4px; }
      
      /* A generic class used for content */
      .details{}
        
        .details ul{ margin: 0 0 1.5em 0; }
          .details li{ margin: 0; padding: .5em 0; border-bottom: 1px solid #efefef; }
      
      #disclaimer{ font-size: 11px; color: #999; margin: 1.5em 0; }
        #disclaimer_top{}
        #disclaimer h3{ margin: 0; border: none; }
        #disclaimer p{ margin: 0; }
        #disclaimer_bottom{}
    
    /* Footer */
    #footer{ background: #efefef url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/main_bg_bottom.png) 0 0 no-repeat; padding: 20px 10px 1.5em 10px; clear: both; font-size: 11px; color: #999; position: relative; }
      
      #footer p{ margin: 0; padding: 1em 220px 0 0; }
        #footer a:link, #footer a:visited, #footer a:hover{ color: #777; }
        
        .bottom_nav{ margin: 1em 0 0 0; width: 100%; overflow: hidden; }
          .bottom_nav li{ margin: 0; float: left; list-style: none; }
            .bottom_nav a{ display: block; padding: .25em 1em; border-left: 1px solid #efefef; }
            .bottom_nav li.first a{ border: none; padding-left: 0; }
          
          .bottom_nav li.last{ float: right; }
            .bottom_nav li.last a{ border: none; padding: .25em 0; }

/* Uni-Form Overrides */
.uniForm .ctrlHolder{ padding: .5em 0; border-bottom: none; }

  .uniForm .inlineLabels label,
  .uniForm .inlineLabels .label{ width: 120px; padding-right: 15px; font-size: 1.1em; font-weight: bold; text-align: right; }
  .uniForm .inlineLabels .label{ margin-top: .1em; }
  .uniForm .inlineLabels .inlineLabel{ text-align: left; width: auto; font-weight: normal; }
  
  .uniForm .inlineLabels .textInput,
  .uniForm .inlineLabels .fileUpload,
  .uniForm .inlineLabels .selectInput,
  .uniForm .inlineLabels select,
  .uniForm .inlineLabels textarea{ width: 330px; /* <- Required property */ height: 30px; border: 1px solid #e2e2e2; font-size: 14px; padding: 0 5px; color: #505050; }
  
  .uniForm .inlineLabels .formHint{ margin-left: 145px; width: 286px; }
  .uniForm .inlineLabels .multiField{ width: 270px; }

  .uniForm .buttonHolder{ padding: .5em 0 15px 0px; text-align: right; /*width: 220px;*/ }
    .uniForm .buttonHolder button{ padding: 10px 15px; color: #fff; background: #3fa9e0; border: 0; border-radius: 5px; -moz-border-radius: 5px; }
    
    
  /****************************************** NEW ***********************************************/
 
  /* for proper alignment of textboxes */
 .uniForm .questionControl .tbox_default input { padding:2px; width:265px; }
 
  /* for proper alignment of radio/checkbox groups */
  .uniForm .questionControl .tbox { margin: 0.5em 0 0.5em 13em; width:45%; text-align:left }  

#crumbs{
   position: relative; top: 18px;
   color: #999;
}
  #scrumbs p{ display: inline; }
    #crumbs a{ text-decoration: none; font-size:13px; }

.captcha img{ margin: 0 12px 0 0; }
.captcha input{ 
  display: block;
  width: 164px !important;
  margin: 9px 0 0 143px;
  height: 30px;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  padding: 0 5px;
  color: #505050;
} 

.blog_body img, #pet_descrip img {
    max-width:450px;
}

#content_main {
width: 650px;
margin-left: 60px;
}

#powered_by {
width: 650px;
margin-left: 20px;
}

/* Sign Form */
#questionsForm {
  float: left;
  width: 480px;
  background: #fff;
  padding: 5px;
  margin-left: -14px;
  border-radius: 5px 5px 10px 10px;
  -moz-border-radius: 5px 5px 10px 10px;
}

#questionsForm h2 {
  font-size: 16px;
  margin-bottom: 15px;
  margin-left: 10px;
}

#signForm {
  clear: both;
  margin: 5px 9px;
  border: 1px solid #d4d4d4;
  border-top: 0;
}

#arrow {
  width: 100%;
  height: 22px;
  background: url(http://www.ipetitions.com/assets/images/form-arrow.png) no-repeat 102px bottom;
}

#arrow.fb {
  background-position: 355px bottom;
}

#signTitle, #signTitleFb {
  background-color: #ebebeb;
  color: #2380B1;
  margin: 0 8px;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
}

#signTitleFb {
  display: none;
}

#signFormInner {
  border: 1px solid #fff;
  border-top: 0;
  background-color: #f3f3f3;
  padding: 15px 14px 0;
  font-size: 12px;
}

p.formHint {
  width: 100%;
  padding: 0 !important;
  text-align: right !important;
}

#signForm #signFormInner .ctrlHolder {
  width: 100% !important;
}

p.label {
  padding: 8px 11px !important;
}

.signOr {
  text-align: center;
  float: left;
  width: 32px;
  padding-top: 25px;
  color: #2f2f2f;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
/*
.postToFb {
  padding: 10px 0 10px 90px;  
}*/

.displayWrapper {
  padding-left: 90px;
  margin-bottom: 10px;
}

.displayWrapper p.label {
  color: #2380B1 !important;
  font-weight: bold;
  padding: 10px 0 20px !important;
}

.fbButton {
  text-align: center;
}

.bellowQuestions {
  clear: both;
  padding: 20px 0;
}


/** New form **/

#regularSign {
  width: 223px;
  height: 66px;
  float: left;
  background: url(http://www.ipetitions.com/assets/images/petition-tabs.png) no-repeat 0 -66px;
  margin-left: 9px;
  display: block;
}

#fbSign {
  width: 240px;
  height: 66px;
  float: left;
  background: url(http://www.ipetitions.com/assets/images/petition-tabs.png) no-repeat -223px 0;
  display: block;
}

#regularSign.selected {
  background: url(http://www.ipetitions.com/assets/images/petition-tabs.png) no-repeat 0 0;
}

#fbSign.selected {
  background: url(http://www.ipetitions.com/assets/images/petition-tabs.png) no-repeat -223px -66px;
}

#regularSign, #fbSign {
  cursor: pointer;
}

#signFormInner .question label {
  float: left;
  clear: left;
  width: 82px;
  color: #505050;
  padding-top: 8px;
  padding-right: 8px;
  font-weight: bold;
  text-align: right;
}

#signFormInner .inlineLabel, #signFormInner .questionControl, #signFormInner p.label {
  color: #505050;
}

#signFormInner .question label em, p.formHint em, #emailFriends .ctrlHolder label em {
  color: #ff9000;
}

#signFormInner .question .questionControl {
  float: left;
  width: 340px;
}

#signFormInner p.errorField {
  margin: 0 -15px 8px;
  text-align: center;
}

#signFormInner .error {
  margin: 0 -15px;
  padding: 0 15px 8px;
}

#signFormInner .blockLabels {
  margin: 0 -15px;
  float: left;
}

#signFormInner input[type="text"], #signFormInner input[type="password"], #signFormInner textarea, #signFormInner select {
  width: 330px;
  height: 30px;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  padding: 0 5px;
  color: #505050;
}

#signFormInner textarea {
  height: 50px;
  padding: 5px;
}

#signFormInner select {
  width: 342px;
  background: #fff;
}

#signFormInner .tbox {
  margin: 0;
}

#signFormInner .tbox label {
  font-weight: normal;
}

#emailFriends {
  padding: 10px;  
}

#emailFriends .ctrlHolder label {
  width: 120px;
  padding-top: 6px;
}

#emailFriends input[type="text"], #signFormInner input[type="password"] {
  padding: 0 5px;
  width: 284px;
}

#emailFriends textarea {
  width: 284px;
  padding: 5px;
  height: 50px;
}

#emailFriends p.formHint {
  text-align: left !important;
}

#emailFriends select {
  width: 286px;
  padding: 0 5px;
}

/* Added by Davor - New Donation UI - user testing, round A mockups - 1/20/12 */
.donate #content_wrapper { font-family:"Cabin",Arial,Helvetica,sans-serif; margin-top:15px; margin-left: -1px; width:100%; padding: 0; }
.donate #content_wrapper h2 { font-family:"Cabin",Arial,Helvetica,sans-serif; background:url(http://www.ipetitions.com/assets/images/donation-sprite.png) no-repeat right -222px; display:inline-block; font-size:26px; font-weight:normal; height:auto; line-height:1; margin:0 15px; padding:0 34px 0 0; text-transform: none; width: auto }
.donate #content_wrapper p { font-size:14px; line-height:1.6; padding: 8px 15px; font-family:"Cabin",Arial,Helvetica,sans-serif }
.donate #content_wrapper #thankYouForSubmission { color:#000; font-size:18px; margin:15px 0 15px 45px }
.donate #content_main { border-radius:8px; padding:25px 15px 15px; margin-left: 30px }
.donform { background:#f6f6f6; font-size:16px; margin:15px -15px; padding:15px 30px }
.donform h3 { background-image:none; color:#333; font-size:18px; font-weight:normal; margin: 0 0 10px;  width:100% }
.donform form { font-weight:bold }
.donform input { font-size:16px; font-weight:bold }
.sbm_button { background:url(http://www.ipetitions.com/assets/images/donation-sprite.png) repeat-x 0 -32px; border:0; border-radius:4px; box-shadow:0 2px 2px rgba(0,0,0,.2); color:#442b03; cursor:pointer; float:right; height:35px; line-height:1; padding:1px 15px 0; text-shadow:0 1px 0 rgba(255,255,255,.4) }
.sbm_button:hover { background-position:0 -68px }
.sbm_button:active { background-position:0 -103px }
.donform input, .donform select { font-family:"Cabin",Arial,Helvetica,sans-serif }

/* oldstyle radio buttons */
input[type=radio] { margin-bottom:10px }
.oldstyle .sbm_button { float:none; margin:10px 0 5px }

/* newstyle radio buttons */
.newstyle { overflow:hidden; padding:20px 30px 25px }
.newstyle label { font-family:"Cabin",Arial,Helvetica,sans-serif; font-size: 15px; background:#CCCCC0; border-radius:8px; float:left; list-style:none; margin-right:6px; padding:8px 0; text-align:center; width:50px }
.newstyle label.active { background:#999988; color:#fff }
.newstyle b { display:block; margin-top:2px }
.newstyle label.other_amount { width:66px }
.newstyle label.other_amount input[type=text] { background:url(http://www.ipetitions.com/assets/images/donation-sprite.png) no-repeat 3px -141px #fff; border:1px solid #aaa; color:#000; display:block; font-size:14px; margin:0 auto; padding:1px 1px 1px 12px; width:34px }
.newstyle input[type=radio] { margin:0 }
.newstyle .sbm_button { margin-top:19px }

/* dropdown selection */
.dropdown .sbm_button { margin-top:-7px }
select { border:1px solid #aaa; font-size:14px; margin:-2px 0 10px; padding:3px; width:175px }
.dropdown .other_amount { background:url(http://www.ipetitions.com/assets/images/donation-sprite.png) no-repeat 5px -138px #fff; border:1px solid #aaa; color:#333; font-size:14px; font-weight:normal; margin-left:10px; padding:3px 3px 3px 17px }


.donate .checkbox, .donate .radio { background: #f6f6f6 !important; width: auto !important; display: block }
.donate #wrapper { margin: 0 auto }
.donate #powered_by { padding-top: 7px; display: block; height: 28px; text-align: right; background: url(http://www.ipetitions.com/assets/themes/awesome_white/css/images/icn_ipt_logo.png) 0 5px no-repeat; width: 690px }

