@import "https://fonts.googleapis.com/css?family=Roboto:300";
/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); }
  100% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); } }
@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); }
  100% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); } }
@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
/* added to the original element calling slippry */
.sy-box.sy-loading {
  background: url("https://www.stardock.com/images/sy-loader.gif") 50% 50% no-repeat;
  -webkit-background-size: 32px 32px;
          background-size: 32px;
  min-height: 40px; }
  .sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
    visibility: hidden; }

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%; }
  .sy-slides-wrap:hover .sy-controls {
    display: block; }

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden; }

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; }
  .sy-list.horizontal {
    -webkit-transition: left ease;
         -o-transition: left ease;
            transition: left ease; }
  .sy-list.vertical {
    -webkit-transition: top ease;
         -o-transition: top ease;
            transition: top ease; }

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2; }
  .sy-slide.kenburns {
    width: 140%;
    left: -20%; }
    .sy-slide.kenburns.useCSS {
      -webkit-transition-property: opacity;
           -o-transition-property: opacity;
              transition-property: opacity; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
        -webkit-animation-name: left-right;
             -o-animation-name: left-right;
                animation-name: left-right;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
        -webkit-animation-name: right-left;
             -o-animation-name: right-left;
                animation-name: right-left;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
  .sy-slide.sy-active {
    z-index: 3; }
  .sy-slide > img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0; }
  .sy-slide > a {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%; }
    .sy-slide > a > img {
      margin: 0;
      padding: 0;
      display: block;
      width: 100%;
      border: 0; }

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0; }
  .sy-controls li {
    position: absolute;
    width: 10%;
    min-width: 4.2em;
    height: 100%;
    z-index: 33; }
    .sy-controls li.sy-prev {
      left: 0;
      top: 0; }
      .sy-controls li.sy-prev a:after {
        background-position: -5% 0; }
    .sy-controls li.sy-next {
      right: 0;
      top: 0; }
      .sy-controls li.sy-next a:after {
        background-position: 105% 0; }
    .sy-controls li a {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      text-indent: -9999px; }
      .sy-controls li a:link, .sy-controls li a:visited {
        opacity: 0.4; }
      .sy-controls li a:hover, .sy-controls li a:focus {
        opacity: 0.8;
        outline: none; }
      .sy-controls li a:after {
        content: "";
        background-image: url("https://www.stardock.com/images/arrows.svg");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
                background-size: cover;
        text-align: center;
        text-indent: 0;
        line-height: 2.8em;
        color: #111;
        font-weight: 800;
        position: absolute;
        background-color: #fff;
        width: 2.8em;
        height: 2.8em;
        left: 50%;
        top: 50%;
        margin-top: -1.4em;
        margin-left: -1.4em;
        border-radius: 50%; }
  @media only screen and (max-device-width: 600px) {
    .sy-controls {
      display: block; }
      .sy-controls li {
        min-width: 2.1em; }
        .sy-controls li a:after {
          width: 1.4em;
          height: 1.4em;
          margin-top: -0.7em;
          margin-left: -0.7em; } }

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%; }
  .sy-caption-wrap .sy-caption {
    position: relative;
    left: -50%;
    background-color: rgba(0, 0, 0, 0.54);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 1.2em; }
    .sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
      color: #e24b70;
      font-weight: 600;
      text-decoration: none; }
    .sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
      text-decoration: underline; }
  @media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .sy-caption-wrap {
      left: 0;
      bottom: 0.4em; }
      .sy-caption-wrap .sy-caption {
        left: 0;
        padding: 0.2em 0.4em;
        font-size: 0.92em;
        border-radius: 0; } }

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .sy-pager li {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 1em 0 0;
    border-radius: 50%; }
    .sy-pager li.sy-active a {
      background-color: #e24b70; }
    .sy-pager li a {
      width: 100%;
      height: 100%;
      display: block;
      background-color: #ccc;
      text-indent: -9999px;
      -webkit-background-size: 2em 2em;
              background-size: 2em;
      border-radius: 50%; }
      .sy-pager li a:link, .sy-pager li a:visited {
        opacity: 1.0; }
      .sy-pager li a:hover, .sy-pager li a:focus {
        opacity: 0.6; }

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%; }
  .sy-filler.ready {
    -webkit-transition: padding 600ms ease;
         -o-transition: padding 600ms ease;
            transition: padding 600ms ease; }

/* #region Responsive Mixins */
/* #region Responsive */
/* #endregion */
/* #endregion */

div.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: calc(955px + 2rem);
  padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
  div.wrapper {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  div.wrapper {
    align-items: flex-start;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }
}

div.wrapper > div:not(:last-child) {
  margin-bottom: .563rem;
}

@media (min-width: 1024px) {
  div.wrapper > div:not(:last-child) {
    margin-bottom: 0;
    margin-right: .563rem;
  }
}

div.wrapper div.left {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}

@media (min-width: 1024px) {
  div.wrapper div.left {
    flex: 0 0 697px;
  }
}

div.wrapper div.left > :not(:last-child) {
  margin-bottom: .563rem;
}

div.wrapper div.left div.banners {
  max-height: 292px;
  max-width: 697px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

div.wrapper div.left div.banners ul.slipslide {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

div.wrapper div.left div.banners ul.my-sy-pager {
  bottom: 10px;
  display: flex;
  flex-direction: column;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  z-index: 10;
}

div.wrapper div.left div.banners ul.my-sy-pager li {
  background-color: gray;
  border: #000 1px solid;
  cursor: pointer;
  height: 12px;
  opacity: .7;
  position: relative;
  width: 12px;
}

div.wrapper div.left div.banners ul.my-sy-pager li a {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: 0;
}

div.wrapper div.left div.banners ul.my-sy-pager li.sy-active {
  background-color: #FFF;
}

div.wrapper div.left div.banners ul.my-sy-pager li:hover {
  background-color: #D3D3D3;
}

div.wrapper div.left div.banners ul.my-sy-pager li:not(:last-child) {
  margin-bottom: 1px;
}

div.wrapper div.left div.divisions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 697px;
  width: 100%;
}

div.wrapper div.left div.divisions > a {
  align-items: center;
  box-shadow: 0px 0px 20px #909090;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  font: 10vw Roboto, Arial, Helvetica, sans-serif;
  height: calc((49vw - 2rem) / 2);
  line-height: 3rem;
  justify-content: center;
  position: relative;
  text-shadow: 0 0 13px rgba(0, 22, 43, 0.5);
  width: 49%;
}

@media (min-width: 768px) {
  div.wrapper div.left div.divisions > a {
    font-size: 4rem;
  }
}

div.wrapper div.left div.divisions > a::before {
  content: 'Stardock';
  font-size: .35em;
  line-height: 1.75em;
  text-transform: uppercase;
}

div.wrapper div.left div.divisions > a::after {
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  z-index: -1;
}

div.wrapper div.left div.divisions > a.software::after {
  background-image: url("https://www.stardock.com/images/home/2016/division-software.jpg");
}

div.wrapper div.left div.divisions > a.games::after {
  background-image: url("https://www.stardock.com/images/home/2016/division-games.jpg");
}

div.wrapper div.left div.divisions > a:hover::after {
  filter: brightness(130%);
}

div.wrapper div.left div.divisions > a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  div.wrapper div.left div.divisions > a {
    height: 190px;
    width: 343px;
  }
}

div.wrapper div.left section {
  max-width: 697px;
  width: 100%;
}

div.wrapper div.left section > header > h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

div.wrapper div.left section > header, div.wrapper div.left section > footer {
  background-color: #D67455;
  box-shadow: 0px 0px 5px #D2D2D2;
  color: #F6F6F6;
  font-family: "roboto",sans-serif;
  font-weight: 300;
  height: 40px;
  line-height: 40px;
  padding: 0 38px;
}

div.wrapper div.left section > .content > article {
  background: #fafafa;
  box-shadow: 0px 0px 5px #D2D2D2;
  margin-bottom: 10px;
  padding: 25px 40px;
}

div.wrapper div.left section > .content > article > header > h3 {
  font-family: 'roboto', sans-serif;
  font-size: 1.313rem;
  font-weight: 300;
  margin: 0 auto;
}

@media (min-width: 768px) {
  div.wrapper div.left section > .content > article > header > h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

div.wrapper div.left section > .content > article > header > h3 > a {
  color: #2d2d2d;
  text-decoration: none;
}

div.wrapper div.left section > .content > article > header > h3 > a:hover {
  text-decoration: underline;
}

div.wrapper div.left section > .content > article > header > span {
  color: #AAA;
  font-size: .8rem;
  font-weight: normal;
  margin: 0;
}

div.wrapper div.left section > .content > article > p {
  line-height: 1.25em;
}

div.wrapper div.left section > .content > article > footer a {
  color: #1A91D2;
  display: block;
  font-size: .750rem;
  font-weight: bold;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

div.wrapper div.left section > .content > article > footer a:hover {
  text-decoration: underline;
}

div.wrapper div.left section > footer {
  font-size: 1.5em;
  padding: 0;
  text-align: center;
}

div.wrapper div.left section > footer > a {
  color: #F6F6F6;
  display: block;
  height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

div.wrapper div.left section > footer > a:hover {
  background-color: #EC8463;
  text-decoration: underline;
}

div.wrapper div.left section#products > div.content {
  background: #FAFAFA;
  box-shadow: 0 0 5px #d2d2d2;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  padding: 0 24px;
}

@media (min-width: 768px) {
  div.wrapper div.left section#products > div.content {
    flex-direction: row;
  }
}

div.wrapper div.left section#products > div.content > div.col {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  div.wrapper div.left section#products > div.content > div.col {
    flex-basis: 50%;
  }
}

div.wrapper div.left section#products > div.content > div.col > a {
  background-repeat: no-repeat;
  background-position: 1em center;
  background-size: 48px 48px;
  box-sizing: border-box;
  color: #2d2d2d;
  display: flex;
  flex-direction: column;
  padding: 1em 1em 1em calc(2em + 48px);
  text-decoration: none;
}

div.wrapper div.left section#products > div.content > div.col > a > strong {
  border-bottom: 1px solid #CCC;
  font-weight: 500;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

div.wrapper div.left section#products > div.content > div.col > a > span {
  color: #777;
  display: block;
  font-size: .9em;
  margin: 0;
  height: 26px;
}

div.wrapper div.left section#products > div.content > div.col > a:hover > strong {
  text-decoration: underline;
}

div.wrapper div.left section#products > div.content > div.col > a:last-child {
  margin-top: auto;
}

div.wrapper div.left section#products > div.content > div.col > a:last-child > strong {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

div.wrapper div.right {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  max-width: 697px;
  width: 100%;
}

@media (min-width: 1024px) {
  div.wrapper div.right {
    flex: 0 1 100%;
  }
}

div.wrapper div.right aside {
  background-color: #ffffff;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 0px 5px #D2D2D2;
  display: block;
  margin: 0 0 .563rem;
}

div.wrapper div.right aside > h2 {
  background-color: #6B6B6B;
  border: 1px solid #3D3D3D;
  color: #F6F6F6;
  font-family: "roboto",sans-serif;
  font-weight: 300;
  font-size: 1.313rem;
  line-height: 1.905em;
  margin: 0;
  text-align: center;
}

div.wrapper div.right aside > div.content {
  display: block;
  padding: .438rem 0;
  text-align: center;
}

div.wrapper div.right #hot > div.content {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1024px) {
  div.wrapper div.right #hot > div.content {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

div.wrapper div.right #hot > div.content > a {
  border: 2px solid #D6D6D6;
  margin: 5px;
}

@media (min-width: 1024px) {
  div.wrapper div.right #hot > div.content > a {
    margin: 0 auto 5px;
  }
}

div.wrapper div.right #hot > div.content > a:hover {
  border: 2px solid #1ba5c7;
}

div.wrapper div.right #hot > div.content > a > img {
  display: block;
}

div.wrapper div.right #hot2 > div.content {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 1024px) {
  div.wrapper div.right #hot2 > div.content {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

div.wrapper div.right #hot2 > div.content > h3 {
  margin: 1em 0;
}

div.wrapper div.right #hot2 > div.content > h3:first-child {
  margin-top: 0;
}

div.wrapper div.right #hot2 > div.content > a {
  line-height: 1.5;
}

div.wrapper div.right #social-links > div.content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 17px 0 7px;
}

div.wrapper div.right #social-links > div.content > a {
  margin: 0 10px 10px;
}

div.wrapper div.right #social-links > div.content > a > img {
  display: block;
  height: 32px;
  width: 32px;
}

div.wrapper div.right #twitch-status {
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
}

div.wrapper div.right #twitch-status.offline {
  background: #6441A4;
}

div.wrapper div.right #twitch-status.online {
  background: #00D127;
}

div.wrapper div.right #twitch-status:hover {
  filter: brightness(1.1);
}

div.wrapper div.right #twitch-status > a {
  align-items: flex-start;
  color: #FFF;
  display: flex;
  flex-direction: row;
  flex: 1 1 100%;
  flex-direction: row;
  font-size: 2rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
}

div.wrapper div.right #twitch-status > a:hover {
  text-decoration: none;
}

div.wrapper div.right #featured-event > div.content {
  padding: 1em;
}

div.wrapper div.right #featured-event > div.content > a {
  color: #2D2D2D;
  text-decoration: none;
}

div.wrapper div.right #featured-event > div.content > a > img {
  display: block;
  margin: 0 auto;
}

div.wrapper div.right #featured-event > div.content > a > h3 {
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 7px;
}

div.wrapper div.right #featured-product > div.content {
  padding: 0;
}

div.wrapper div.right #featured-product > div.content > a > img {
  display: block;
  margin: 0 auto;
  max-width: 467px;
  width: 100%;
}

div.wrapper div.right #featured-product > div.content > h3 {
  font-weight: normal;
  margin: 10px auto 12px;
}

div.wrapper div.right iframe.discord {
  width: 350px;
}

@media (max-width: 1025px) {
  div.wrapper div.right iframe.discord {
    width: 100%;
  }
}

div.wrapper div.right #subscribe > .content {
  font-size: .813rem;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
}

div.wrapper div.right #subscribe > .content > p {
  margin: 0;
}

div.wrapper div.right #subscribe > .content > form {
  margin-bottom: 12px;
  position: relative;
}

div.wrapper div.right #subscribe > .content > form input[type='email'] {
  border: 1px solid #ABABAB;
  font-size: 12px;
  height: 30px;
  margin: 1em auto;
  padding: 0 9px;
  width: 162px;
}

div.wrapper div.right #subscribe > .content .formsuccess > p.manage {
  font-size: 10px;
  color: #7D7D7D;
}

div.wrapper div.right #subscribe > .content .formsuccess > p.manage a {
  color: #7D7D7D;
}

/*  Keep this file separate as it is also called by sam tools */

#deallayout { width: 247px;  }
#deallayout img.banner { display: block; float: none; max-width: 247px;}
#deallayout img.emblem { display: none; float: none; }
#deallayout div.progress-full { background: linear-gradient(to bottom, #f2f2f2 0%, #f2f2f2 100%); display: inline-block; height: 4px; vertical-align: top; width: 170px; margin: 10px 20px 4px 20px; border-radius: 25px; }
#deallayout div.progress-completed { background: linear-gradient(to bottom, #ffb400 0%, #c36221 100%); height: 4px; border-radius: 25px; }
#deallayout div.progress-numbers { display: flex; flex-direction: row; font-size: 12px; font-weight: 100; justify-content: space-between; margin: 0 20px 10px; }
#deallayout p { font-size: 14px; text-align: center;  color: #000; }
#deallayout p.info { float: none; margin: 10px 10px 0; }
#deallayout p.info:last-child { margin-bottom: 10px; }
#deallayout p.login.info { width: 185px; text-align: center; margin: 8px 10px 16px 10px;  }
#deallayout p.price { font-size: 14px; margin: 10px 20px; text-align: center; word-spacing: 5px; }
#deallayout p.description { font-size: 14px; margin: 10px 20px; text-align: center; word-spacing: 5px; }
#deallayout p.buttons { text-align: center; margin: 4px 20px 12px 20px; }
#deallayout p.pending { text-align: center; margin: 4px 20px 12px 20px; }
/*
#deallayout a.claimbutton { border-radius: 5px; background-color: #FF9F00; color: #FFFFFF; line-height:34px; margin: 0 3px 0 3px; padding: 4px 18px 5px 18px; text-decoration: none; text-transform: uppercase; }
#deallayout a.claimbutton:hover { background-color: #5ad749; text-decoration: none; }
*/

#dailydeal
{
    background-color: #ffffff;
    border: 1px solid #D6D6D6;
    box-shadow: 0px 0px 5px #D2D2D2;
    display: block;

}
#dailydeal > .title
{
	background-color: #6B6B6B;
    border: 1px solid #3D3D3D;
    color: #F6F6F6;
    font-family: "roboto",sans-serif;
    font-weight: 300;
	font-size: 1.75em;
    height: 40px;
    line-height: 40px;
	margin: 0 auto;
	text-align: center;
}
#dailydeal > div.content
{
	display: block;
	margin: 0 auto;
	padding: 0px 0;
	position: relative;
	text-align: center;
}


#ddclaim, 
a.claimbutton {
    background-color: #0d4d8b;
    background: -webkit-linear-gradient(#0161c1, #0d4d8b);
    background: -o-linear-gradient(#0161c1, #0d4d8b);
    background: -moz-linear-gradient(#0161c1, #0d4d8b);
    background: linear-gradient(#0161c1, #0d4d8b);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#0161c1', endColorstr='#0d4d8b');
    -moz-box-shadow: inset 0 0 4px #488ed3;
    -webkit-box-shadow: inset 0 0 4px #488ed3;
    box-shadow: inset 0 0 4px #488ed3;
    border: 1px solid #0d4e8d;
	color: #ffffff;
}

a.claimbutton {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    height: 34px;
    line-height: 34px;
    margin: 0;
    min-width: 76px;
    padding: 0 24px;
    position: relative;
    text-align: center;
    text-decoration: none;
}
a.claimbutton:hover
{
	background-color: #1061b2;
	background: -webkit-linear-gradient(#007efb, #1061b2); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#007efb, #1061b2); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#007efb, #1061b2); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#007efb, #1061b2); /* Standard syntax */
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#007efb', endColorstr='#1061b2');/*For IE7-8-9*/
	-moz-box-shadow: inset 0 0 4px #4798e9;
	-webkit-box-shadow: inset 0 0 4px #4798e9;
	box-shadow: inset 0 0 4px #4798e9;
	border: 1px solid #0d4e8d;
	color: #fff;
	text-decoration: none;
}
