
/*-----------------------------------------------
    Screen Styles
  ----------------------------------------------- */
  *:first-child {
    margin-top: 0;
  }
  *:last-child {
    margin-bottom: 0;
  }


/*  =Layout (Global)
  ----------------------------------------------- */
  body {
    margin: 0;
    padding: 10px 0 30px;
  }
  #branding,
  #nav,
  #container,
  #info {
    width: 930px;
    margin: 0 auto;
  }
  #branding h2 {
    margin: 55px 0 40px 390px;
  }
  #branding h2 a,
  #branding h2 img {
    display: block;
  }
  #container {
    padding: 10px;
    -moz-border-radius      : 2px;
    -webkit-border-radius   : 2px;
    border-radius           : 2px;
  }
  #content {
    position: relative;
    padding: 20px;
    -moz-border-radius      : 7px;
    -webkit-border-radius   : 7px;
    border-radius           : 7px;
  }

  /* For browsers that don't yet support rounded corners. */
  #content .corner-top-left,
  #content .corner-top-right,
  #content .corner-bottom-right,
  #content .corner-bottom-left {
    position: absolute;
    background: transparent url(/images/content-corners.png);
    width: 7px;
    height: 7px;
  }
  #content .corner-top-left {
    background-position: 0 0;
    top: 0;
    left: 0;
  }
  #content .corner-top-right {
    background-position: -7px 0;
    top: 0;
    right: 0;
  }
  #content .corner-bottom-right {
    background-position: -7px 7px;
    bottom: 0;
    right: 0;
  }
  #content .corner-bottom-left {
    background-position: 0 -7px;
    bottom: 0;
    left: 0;
  }

  /* Navigation */
  #nav div {
    position: absolute;
    z-index: 2;  /* Always position the navigation above other content. */
    top: 0;
    width: 930px;
  }
  #nav ul,
  #nav p {
    position: absolute;
    top: -10px;
  }
  #nav ul {
    right: -7px;
  }
  #nav p {
    left: -10px;
  }

  /* Footer */
  #info {
    margin-top: 12px;
    margin-bottom: 2px;
  }
  #info h2,
  #info p,
  #info ul {
    display: inline;
  }
  #legal {
    float: left;
  }
  #connect {
    float: right;
    padding-right: 100px;
    position: relative;
  }
  #connect ul {
    position: absolute;
    top: -2em;
    right: 0;
  }
  #connect li {
    display: inline;
  }
  #connect li a {
    display: inline-block;
    background: transparent url(/images/connect-icons.png) no-repeat;
    width: 23px;
    height: 23px;
    text-indent: -9999px;
    overflow: hidden;
    margin-left: 5px;
  }
  #connect .facebook a {
    background-position: 0 0;
  }
  #connect .twitter a {
    background-position: -30px 0;
  }
  #connect .rss a {
    background-position: -60px 0;
  }
  #connect .sms a {
    background-position: -90px 0;
  }

  /* Content */
  #content {
    min-height: 650px;
    margin-right: 315px;
  }
  #home-page #content {
    margin-right: 0;
    min-height: 0;
  }
  #about-page #content h1+p {
    margin-top: 0;
  }

  /* Photo */
  #photo {
    position: relative;
  }
  #photo div {
    position: absolute;
    z-index: 1;
    right: 15px;
    top: -35px;
  }
  #home-page #photo div {
    background: transparent url(/images/photos/home.png) 0 0 no-repeat;
    width: 505px;
    top: auto;
    right: auto;
    height: 510px;
    left: -65px;
    bottom: 0;
  }
  #about-page #photo div {
    background: transparent url(/images/photos/about.png) 0 0 no-repeat;
    width: 345px;
    height: 675px;
  }
  #about-page #content {
    padding-right: 50px;
  }
  #signup-page #photo div,
  #subscribe-page #photo div,
  #unsubscribe-page #photo div,
  #confirmation-page #photo div,
  #change-address-page #photo div {
    background: transparent url(/images/photos/subscribe.png) 0 0 no-repeat;
    width: 363px;
    height: 640px;
  }
  #signup-page #content,
  #subscribe-page #content,
  #unsubscribe-page #content,
  #confirmation-page #content,
  #change-address-page #content {
    padding-right: 30px;
  }


/*  =Lists
  ----------------------------------------------- */
  #nav ul,
  #nav li,
  #info ul,
  #info li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  #nav li,
  #legal li {
    display: inline-block;
    background: transparent url(/images/delimiters/dark.png) left no-repeat;
    padding-left: 1px;
  }
  #legal li {
    background-image: url(/images/delimiters/light.png);
  }
  #nav p a,
  #nav li a {
    display: inline-block;
    padding: 10px 7px 10px 10px;
  }
  #legal li a {
    padding: 10px 3px 10px 6px;
  }
  #nav li:first-child,
  #legal li:first-child {
    padding-left: 0;
    background-image: none;
  }


/*  =Forms  
  ----------------------------------------------- */
  form .error-message {
    margin-top: 1.55em;
    font-size: 10px;
  }
  form .error-message ul {
    margin-top: 0;
  }
  textarea,
  .text input {
    -moz-border-radius      : 2px;
    -webkit-border-radius   : 2px;
    border-radius           : 2px;
    border: 1px solid #c3c3c3;
    padding: 2px 4px;
    width: 250px;
  }
  form label br {
    display: none;
  }
  #content form p.text {
    margin-top: 0.5em;
    overflow: auto;
    width: 376px;
  }
  #change-address-page #content form p.text {
    width: 406px;       /* 376 + 30 */
  }
  #content form .required-note+p.text {
    margin-top: 1.55em;
  }
  #content textarea,
  #content .text input,
  #content .text select {
    display: block;
    float: right;
  }
  #content .text select {
    margin-right: 60px;
  }
  #content form label span {
    display: block;
    float: left;
    width: 110px;
  }
  #change-address-page #content form label span {
    width: 140px;       /* 110 + 30 */
  }
  #content form .submit {
    margin-top: 2em;
  }
  #content form .error-message,
  #content form .submit,
  #content form label .note {
    display: block;
    width: 260px;
    margin-left: 116px;
  }
  #change-address-page #content form .error-message,
  #change-address-page #content form .submit,
  #change-address-page #content form label .note {
    margin-left: 146px; /* 116 + 30 */
  }
  #content form .submit {
    text-align: center;
  }
  form label .note {
    margin-top: 0.25em;
  }
  .submit,
  .submit li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  .submit li {
    display: inline;
    margin-left: 1em;
  }
  .submit li:first-child {
    margin-left: 0;
  }
  .disclosure {
    margin-top: 3em;
  }


/*  =Buttons
  ----------------------------------------------- */
  button {
    display: inline-block;
    border: 1px solid #a27a1b;
    color: #fff;
    font-weight: bold;
    -moz-border-radius      : 4px;
    -webkit-border-radius   : 4px;
    border-radius           : 4px;
    -moz-box-shadow       : rgba(0, 0, 0, 0.3) 0 1px 2px;
    -webkit-box-shadow    : rgba(0, 0, 0, 0.3) 0 1px 2px;
    box-shadow            : rgba(0, 0, 0, 0.3) 0 1px 2px;
    background: #926908;
    background: -moz-linear-gradient(top, #b18723, #926908 70%);
    background: -webkit-gradient(linear, left top, left bottom, from(#b18723), color-stop(70%, #926908));
    border-width: 0;
    padding: 1px;
  }
  button:hover,
  button:active {
    background: #a47a0c;
    background: -moz-linear-gradient(top, #be952b, #a47a0c 70%);
    background: -webkit-gradient(linear, left top, left bottom, from(#be952b), color-stop(70%, #a47a0c));
  }
  button > span {
    display: inline-block;
    font-size: 12px;
    padding: 4px 9px;
    -moz-border-radius      : 4px;
    -webkit-border-radius   : 4px;
    border-radius           : 4px;
    background: #b28210;
    background: -moz-linear-gradient(top, #d5a638, #b28210 70%);
    background: -webkit-gradient(linear, left top, left bottom, from(#d5a638), color-stop(70%, #b28210));
  }
  button:hover > span,
  button:active > span {
    background: #be8f16;
    background: -moz-linear-gradient(top, #e1b342, #be8f16 70%);
    background: -webkit-gradient(linear, left top, left bottom, from(#e1b342), color-stop(70%, #be8f16));
  }
  /* Remove padding in Firefox
  (KUDOS: http://www.aheadcreative.com/removing-unwanted-button-padding-in-firefox/) */
  button::-moz-focus-inner { 
    border: 0;
    padding: 0;
  }

  /* Override specific buttons with an image (so they'll look nicer
  in browsers that don't support rounded corners and gradients). */
  button.get-access-now,
  button.no-thanks,
  button.register-now,
  button.start-my-free-subscription, a.start-my-free-subscription, 
  button.submit-comment,
  button.subscribe,
  button.unsubscribe,
  button.update-email {
    -moz-box-shadow       : none;
    -webkit-box-shadow    : none;
    box-shadow            : none;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
    background-position: 0 0;
    background-color: transparent;
    height: 28px;
  }
  button.get-access-now:hover,
  button.get-access-now:active,
  button.no-thanks:hover,
  button.no-thanks:active,
  button.register-now:hover,
  button.register-now:active,
  button.start-my-free-subscription:hover, a.start-my-free-subscription:hover, 
  button.start-my-free-subscription:active, a.start-my-free-subscription:active, 
  button.submit-comment:hover,
  button.submit-comment:active,
  button.subscribe:hover,
  button.subscribe:active,
  button.unsubscribe:hover,
  button.unsubscribe:active,
  button.update-email:hover,
  button.update-email:active {
    background-color: transparent;
    background-position: 0 -50px;
  }
  button.get-access-now {
    background-image: url(/images/buttons/get-access-now.png);
    width: 121px;
  }
  button.no-thanks {
    background-image: url(/images/buttons/no-thanks.png);
    width: 89px;
  }
  button.register-now {
    background-image: url(/images/buttons/register-now.png);
    width: 103px;
  }
  button.start-my-free-subscription, a.start-my-free-subscription {
    background-image: url(/images/buttons/start-my-free-subscription.png);
    width: 261px;
    height: 39px;
  }
	a.start-my-free-subscription {
		display:block;
		text-indent:-9999px;
		margin:20px 0 0;
	}
  button.submit-comment {
    background-image: url(/images/buttons/submit-comment.png);
    width: 128px;
  }
  button.subscribe {
    background-image: url(/images/buttons/subscribe.png);
    width: 84px;
  }
  button.unsubscribe {
    background-image: url(/images/buttons/unsubscribe.png);
    width: 99px;
  }
  button.update-email {
    background-image: url(/images/buttons/update-email.png);
    width: 102px;
  }


/*  =Home
  ----------------------------------------------- */

  /* Introduction */
  #home-page #intro {
    margin: 20px 30px 0 390px;
  }
  #home-page #intro .bio {
    margin-top: 32px;
    margin-left: 60px;
    line-height: 1.35;
  }
  #home-page #intro blockquote {
    margin-top: 0;
  }
  #home-page #intro .cite {
    margin-top: 0;
    text-align: right;
  }

  /* Replace a few bits of text with images, so they'll
  look nicer for users who don't have Helvetica Neue. */
  #home-page #intro blockquote {
    background: transparent url(/images/text/home-intro-quote.png) 0 8px no-repeat;
    width: 515px;
    height: 50px;
    text-indent: -9999px;
    overflow: hidden;
  }
  #home-page #intro .cite {
    position: absolute;
    left: -9999px;
  }
  #home-page #subscribe h1 {
    background: transparent url(/images/text/home-subscribe-headline.png) 0 12px no-repeat;
    width: 452px;
    height: 40px;
    text-indent: -9999px;
    overflow: hidden;
  }

  /* Columns */
  #home-page #content {
    overflow: auto;
  }
  #home-page #comments {
    float: left;
    width: 400px;
  }
  #home-page #recent {
    float: right;
    width: 460px;
  }

  /* Comments */
  #home-page #comments h2+div {
    margin-top: 0.5em;
  }
  #home-page #comments div {
    margin-top: 1.55em;
    overflow: auto;
  }
  #home-page #comments cite {
    font-weight: bold;
    font-style: normal;
  }
  #home-page #comments div blockquote,
  #home-page #comments div p {
    display: inline;
  }

  /* Latest Issue */
  #home-page #recent h3 {
    margin-top: 0;
  }
  #home-page #recent .byline,
  #home-page #recent .date {
    margin-top: 0;
    display: inline;
  }
  #home-page #recent .date {
    margin-left: 5px;
    padding-left: 10px;
    background: transparent url(/images/delimiters/dark.png) left no-repeat;
  }
  #home-page #recent img {
    float: right;
    margin: 8px 0 20px 20px;
  }
  #home-page #recent .more {
    text-align: right;
  }
  #home-page #recent .more a {
    display: inline-block;
    background: transparent url(/images/arrows/dark.png) 100% 4px no-repeat;
    padding-right: 14px;
  }
  #home-page #recent .more a:hover,
  #home-page #recent .more a:active {
    background-position: 100% -96px;
  }

  /* Forms */
  #home-page #subscribe {
    margin: 25px 10px 45px 450px;
  }
  #home-page #subscribe form {
    margin-top: 25px;
  }
  #home-page #subscribe input {
    width: 185px;
    padding: 5px 7px;
    border-width: 0;
    -moz-border-radius      : 2px;
    -webkit-border-radius   : 2px;
    border-radius           : 2px;
  }
  #home-page #subscribe button {
    margin-left: 0.45em;
  }
  #home-page #subscribe label br {
    display: none;
  }
  #home-page #subscribe label {
    display: inline-block;
    position: relative;
    top: 2px;
  }
  #home-page #subscribe form .placeholder {
    display: block;
    position: absolute;
    top: -3px;
    left: 0;
    padding: 5px 7px;
  }


/*  =Contact
  ----------------------------------------------- */
  #content .vcard {
    margin-top: 1.55em;
  }
  #content .vcard p {
    margin-top: 0;
  }
  #content .vcard .org {
    font-weight: bold;
  }


/*  =Confirmation
  ----------------------------------------------- */
  #confirmation-page #content .more a {
    display: inline-block;
    background: transparent url(/images/arrows/dark.png) 100% -96px no-repeat;
    padding-right: 14px;
  }

/*  =Internet Explorer 6/7 Fixes
  -----------------------------------------------
  IE7 fixes begin with a star. For example:
  *rule

  IE6 fixes begin with an underscore. For example:
  _rule
  ----------------------------------------------- */

  /* In IE the label and placholder text are positioned differently. */
  #home-page #subscribe form label {
    *top: -6px;
    _top: -6px;
  }
  #home-page #subscribe form .placeholder {
    *top: -2px;
    _top: -2px;
  }

  /* IE6 and IE7 treat z-indexes differently, such that the photo element's z-index
  is basically ignored. Work around this by giving the photo container a z-index. */
  #photo {
    *z-index: 1;
    _z-index: 1;
  }

  /*  IE6 and IE7 don't support true "inline-block", so simulate it instead.
  KUDOS: http://www.brunildo.org/test/InlineBlockLayout.html  */
  #nav li,
  #legal li,
  #nav p a,
  #nav li a,
  #home-page #subscribe form label,
  #home-page #subscribe button,
  button,
  button > span,
  #connect li a,
  #home-page #recent .more a,
  #confirmation-page #content .more a {
    *display: inline;
    *zoom: 1;
    _display: inline;
    _zoom: 1;
  }
  button {
    *display: block;
    _display: block;
  }
  #nav li,
  #legal li {
    _display: block;
    _float: left;
  }
  form .submit li {
    *float: left;
    _float: left;
  }
  form ul.submit li {
    *float: none;
    _float: none;
  }
  .submit li button {
    *display: inline !important;
    *text-indent: 0 !important;
    *background-color: transparent !important;
    _display: inline !important;
    _text-indent: 0 !important;
    _background-color: transparent !important;
  }
  .submit li button span {
    *display: block;
    *position: absolute;
    *left: -9999px;
    _display: block;
    _position: absolute;
    _left: -9999px;
  }
  #connect li a {
    *display: block;
    _display: block;
  }
  #home-page #subscribe label {
    _margin-top: 10px;
    _float: left;
  }

  /* Prevent scrollbars from appearing around the content area */
  #home-page #content {
    *overflow: visible;
    _overflow: visible;
  }

  /* Set "hasLayout" to "true" */
  #connect,
  #connect *,
  #home-page #subscribe,
  #home-page #subscribe * {
    *zoom: 1;
    _zoom: 1;
  }
  #photo,
  #content {
    _zoom: 1;
  }

  /* Simulate minimum height. */
  #content {
    _height: 650px;
  }

  /* IE6 doesn't support "first-child" selectors */ 
  #home-page #subscribe h1,
  #connect h2 {
    _margin-top: 0;
  }

  /* Hide the rounded corners in IE6 */
  #content .corner-top-left,
  #content .corner-top-right,
  #content .corner-bottom-right,
  #content .corner-bottom-left {
    _display: none;
  }

  /* IE6 doesn't support transparent PNGs without a little help. */
  #home-page #photo div {
    _background-image: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/images/photos/home.png, sizingMethod=crop);
  }
  #about-page #photo div {
    _background-image: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/images/photos/about.png, sizingMethod=crop);
  }
  #signup-page #photo div,
  #subscribe-page #photo div,
  #unsubscribe-page #photo div,
  #confirmation-page #photo div,
  #change-address-page #photo div {
    _background-image: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/images/photos/subscribe.png, sizingMethod=crop);
  }
  #home-page #intro blockquote {
    _background-image: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/images/text/home-intro-quote.png, sizingMethod=crop);
  }
  #home-page #subscribe h1 {
    _background-image: none;
    _filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=/images/text/home-subscribe-headline.png, sizingMethod=crop);
  }
