*{
    margin: 0px;
    padding: 0px;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    position: relative;
    
    font-family: "proxima-nova", "Helvetica Neue", Arial;
    font-size: 14px;
    line-height: 20px;
    color: #363636;
    
    background: url('../images/bg_tile_dots.png');
    /* border-top: 4px solid rgb(79,75,74); */
}

body.logged-out {
    background: #FFFFFF;
}

p, li {
    font-family: "proxima-nova", "Helvetica Neue", Arial;
    font-size: 14px;
    line-height: 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: #363636;
}

h1 {
    font-size:24px;
    line-height: 30px;
    font-weight: bold;
}

h2 {
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
}

h3 {
    font-size: 13px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

a {
    color: rgb(63, 169, 245);
    text-decoration: none;
}

a:hover {
    color: rgb(63, 169, 245);
    text-decoration: none;
}

a.button {
    text-decoration: none;
}

hr {
    border-top: 1px solid #c5c5c5;
}

a hr {
    color: pink;
}

.list-divider {
    margin: 9px 0 0;
    padding: 0;
    border-top: 1px dotted #DFDFDF;
}

.button {
    display: inline-block;
    padding: 0 10px;
    line-height: 2.2em;
}

.highlight {
    color: rgb(63, 169, 245);
}

.highlight-orange {
    color: #FF931E;
}

.highlight-blue {
    color: #3FA9F5;
}

.light {
    color: rgb(187, 187, 187);
}

.danger {
    color: #F00001;
}

a.danger:hover {
    color: #F00001;
}

.small {
    font-size: .85em;
}

.yell {
    text-transform: uppercase;
}

.faded {
    opacity: 0.5;
    filter: alpha(opacity=50);
    
    -webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;	
	transition: opacity .25s ease-in-out;
}

.faded:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* Images */

.image {
    position: relative;
    
    background-repeat: no-repeat;
    background-position: center center;
    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.image a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.image img {
    position: relative;
    display: none;
}

.offset-image {
    margin: 0 5px 5px 0;
    -moz-box-shadow: 5px 5px #BEBEBE;
    -webkit-box-shadow: 5px 5px #BEBEBE;
    box-shadow: 5px 5px #BEBEBE;
}

.offset-image-small {
    margin: 0 3px 3px 0;
    -moz-box-shadow: 3px 3px #BEBEBE;
    -webkit-box-shadow: 3px 3px #BEBEBE;
    box-shadow: 3px 3px #BEBEBE;
}

.image a.image-attribution {
    position: absolute;
    display: inline;
    right: 0;
    bottom: -20px;
    width: auto;
    height: auto;
    
    font-size: 12px;
}

/* Forms */

form {
    margin: 0;
}

label,
input,
button,
select,
textarea {
    font-size: 13px;
    line-height: 36px;
    font-weight: normal;
}

input,
button,
select,
textarea {
    font-family: "proxima-nova", "Helvetica Neue", Arial;
}

label, .basic-label {
    display: block;
    
    font-size:14px;
    line-height:20px;
    color: #000;
    font-weight: bold;
    margin-bottom: 16px;
}

label.inline {
    display: inline-block;
    position: relative;
    top: -10px;
    line-height: 38px;
    
    min-width: 130px;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    display: inline-block;
    
    font-size: 13px;
    /* height: 36px; */
    /* line-height: 36px; */
    
    padding: 8px 10px;
    margin: 0 15px 20px 0;
    
    background-color: #4F4B4A;
    color: #EEEEEE;
    
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
}

input,
textarea {
    width: 210px;
}

textarea {
    height: auto;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border: 1px solid #4F4B4A;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  -webkit-transition: box-shadow linear 0.2s;
     -moz-transition: box-shadow linear 0.2s;
       -o-transition: box-shadow linear 0.2s;
          transition: box-shadow linear 0.2s;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    outline: none;

    -webkit-box-shadow: 0 0 0 5px #b8fcf3;
       -moz-box-shadow: 0 0 0 5px #b8fcf3;
            box-shadow: 0 0 0 5px #b8fcf3;
}

input:focus:required:invalid,
textarea:focus:required:invalid,
select:focus:required:invalid {
    color: #EEEEEE;
}

input:focus:required:invalid:focus,
textarea:focus:required:invalid:focus,
select:focus:required:invalid:focus {
    border-color: #4f4b4a;
    
    -webkit-box-shadow: 0 0 0 5px #b8fcf3;
       -moz-box-shadow: 0 0 0 5px #b8fcf3;
            box-shadow: 0 0 0 5px #b8fcf3;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    *margin-top: 0;
    line-height: normal;
    cursor: pointer;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
    width: auto;
}

select,
input[type="file"] {
    height: 38px;
    /* In IE7, the height of the select element cannot be changed by height, only font-size */

    *margin-top: 4px;
    /* For IE7, add top margin to align select with labels */

    line-height: 38px;
}

select {
    width: 220px;
    background-color: #4F4B4A;
    border: 1px solid #bbb;
}

select[multiple],
select[size] {
    height: auto;
}

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.uneditable-input,
.uneditable-textarea {
    color: #EEEEEE;
    cursor: not-allowed;
    background-color: #4F4B4A;
    border-color: #cccccc;
    
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #A3A3A3;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #A3A3A3;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #A3A3A3;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.form-button {
  cursor: pointer;
  
  background-color: #3FA9F5;
  border: none;
  color: #fff;
  font-weight:bold;
  padding: 0 20px;
  margin: 0 15px 20px 0;
}

a.form-button {
    position: relative;
    top: -9px;
    padding: 0 20px;
    margin: 0 15px 20px 0;
    
    display: inline-block;
    
    font-size: 13px;
    line-height: 36px;
    
    font-weight: bold;
    color: #FFFFFF;
}

.cancel-button {
    background-color: #b3b3b3;
}

.delete-button {
    position: relative;
    top: -10px;
    
    display: inline-block;
    margin-right: 15px;
    
    font-size: 13px;
    line-height: 36px;
    
    font-weight: bold;
    color: #F00001;
}

.disabled-button {
    background-color: rgb(178, 178, 178) !important;
    cursor: default;
}

a.delete-button:hover {
    color: #F00001;
}

input.error,
textarea.error,
input:focus.error,
textarea:focus.error,
input:focus:required:invalid:focus.error,
textarea:focus:required:invalid:focus.error,
select:focus:required:invalid:focus.error {
    color: #F00001;
    
    background-color: #FFFFFF;
    border-color: #F00001;
    
    -webkit-box-shadow: 0 0 0 5px #F00001;
       -moz-box-shadow: 0 0 0 5px #F00001;
            box-shadow: 0 0 0 5px #F00001;
}

input.card-number {
    background-image: url('../images/cc-empty.png');
    background-repeat: no-repeat;
    background-position: 190px center;
}

input.card-number.visa {
    background-image: url('../images/cc-visa.png');
    background-position: 190px center;
}

input.card-number.amex {
    background-image: url('../images/cc-amex.png');
    background-position: 190px center;
}

input.card-number.mastercard {
    background-image: url('../images/cc-mastercard.png');
    background-position: 190px center;
}

input.card-number.discover {
    background-image: url('../images/cc-discover.png');
    background-position: 190px center;
}

input.cc-month {
    margin-right: 0px;
}

.input-slash {
    display: inline-block;
    line-height: 38px;
    margin: 0 10px;
    
    font-weight: bold;
    font-size: 18px;
    top: -7px;
    position: relative;
}

.timezone .dk_toggle {
    width: 448px !important;
    background-position: 465px center;
}

/* Form Errors */

.form-error-default {
    margin: 0 0 15px;
}

.form-error-right {
    position: absolute;
    display: none;
    
    margin: 0 0 0 15px;
}

.show-error {
    display: inline-block;
}

.form-errors {
    margin: 0px auto;
    padding: 0 20px;
    display: inline-block;
    
    line-height: 38px;
    min-height: 38px;
    
    font-size: 13px;
    color: #FFFFFF;
    font-weight: bold;
    
    background: #F00001;
}

.form-error-right .form-errors {
    padding-left: 10px;
}

.form-errors-left-arrow {
    position: relative;
    top: -7px;
    float: left;
    width: 0;
    height: 0;
    
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-right: 26px solid #F00001;
}

.form-errors-up-arrow {
    margin: 0px auto;
    width: 0;
    height: 0;
    
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid rgb(255,95,95);
    border-bottom: 10px solid rgba(255,95,95,0.20);
}

.form-errors ul {
    margin: 0;
    list-style-type: none;
}

.form-errors p, .form-errors li {
    margin: 0;
    padding: 0;
    
    font-size: 13px;
    line-height: 38px;
}

/* Modals */

.modal {
    border: 1px solid rgb(79,75,74);
    
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
            
    -webkit-box-shadow: 5px 5px rgb(79,75,74);
       -moz-box-shadow: 5px 5px rgb(79,75,74);
            box-shadow: 5px 5px rgb(79,75,74);
}

.modal-header {
  padding: 30px 30px 9px;
  border-bottom: none;
}

.modal-body {
  padding: 15px 30px;
}

.modal-footer {
    padding: 14px 30px 15px;
    
  text-align: left;
  background-color: #FFFFFF;
  border-top: none;
  
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
          
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
     -moz-box-shadow: inset 0 1px 0 #ffffff;
          box-shadow: inset 0 1px 0 #ffffff;
}

.modal-backdrop {
  background-color: #FFFFFF;
}

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.6;
  filter: alpha(opacity=60);
  
  -webkit-filter: blur;
}

/* Container */

.page-body-container {
    position: relative;
    width: 1020px;
    margin: 35px auto;
    
    background-color: rgb(255,255,255);
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
}

.page-body-container.full-border {
    border: 1px solid #CCCCCC;
}

.page-body-content {
    position: relative;
    margin: 20px 0;
}

.page-body-container.pinned-nav .page-body-sub-header {
    position: fixed;
    top: 0px;
    
    z-index: 5;
}

.page-body-container.pinned-nav .page-body-content {
    padding-top: 40px;
}

.page-body-header {
    min-height: 3px;
    line-height: 60px;
    
    background-color: rgb(79,75,74);
    color: rgb(255,255,255);
    border-bottom: 2px solid rgb(157,149,147);
}

.page-header-center {
    text-align: center;
}

.page-body-header a {
    color: rgb(255,255,255);
}

.page-body-header a.button, .page-body-footer a.button {
    font-size: .85em;
    margin-left: 20px;
    
    font-weight: bold;
    letter-spacing: .1em;
    color: rgb(255, 255, 255);
    text-shadow: 0px 1px 1px #212121;
}

.page-body-header a.button:hover, .page-body-footer a.button:hover {
    background-color: #8A8685;
}

.page-body-header a.button.selected, .page-body-footer a.button.selected {
    background-color: #ECE7E6;
    color: #4F4B4A;
    text-shadow: 1px 1px white;
}

.page-body-header-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    top: 10px;
    margin-right: 5px;
    
    border-radius: 15px;
}

.page-body-title {
    font-size: .925em;
}

.page-body-sub-header {
    position: relative;  
    line-height: 50px;
    
    background-color: #5DC2B4;
    color: rgb(255,255,255);
    
    border-left: 40px solid #5DC2B4;
    border-right: 40px solid #5DC2B4;
}

.page-body-sub-header a, .page-body-sub-header span {
    line-height: 28px;
    margin: 10px 0 10px;
    
    text-transform: uppercase;
    font-size: .85em;
    
    font-weight: bold;
    letter-spacing: .1em;
    color: rgb(255, 255, 255);
    text-shadow: 0px 1px 1px #3E615C;
    
    display: block;
    text-align: center;
    text-decoration: none;
}

.page-body-sub-header a:hover, .page-body-sub-header .nav > li > a:hover{
    background-color: #7FCFC4;
    
    color: #06584D;
    text-shadow: 0px 1px rgb(255,255,255);
}

.page-body-sub-header .nav > li.active > a {
    background-color: #C2E6E1;
    
    color: #06584D;
    text-shadow: 0px 1px rgb(255,255,255);
}

.page-body-sub-header span.disabled {
    font-weight: normal;
    color: #2E4844;
    text-shadow: none;
}

.page-detail-popover {
    display: none;
    position: absolute;
    top: 130px;
    width: 980px;
    margin: 0 20px;
    padding: 20px 0;
    
    z-index: 10;
    
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

#js-detail-popover {
    height: 100%;
}

.popover-close {
    position: absolute;
    top: 3px;
    right: 7px;
    color: #5DC2B4;
    
    cursor: pointer;
}

.page-detail-popover .container, .page-detail-popover .row {
    position: relative;
    height: 100%;
}

.page-detail-popover .sidebar {
    height: 100%;
    overflow-y: auto;
	overflow-x: hidden;
}

.page-body-container.pinned-nav .page-detail-popover {
    position: fixed;
    top: 70px;
}

.page-detail-popover img {
    max-height: 100%;
}

.detail-popover-content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-section {
    padding: 20px 0 30px;
}

.page-section.first {
    padding-top: 0;
}

.section-label {
    margin-bottom: 30px;
}

.page-body-section { /* This is only used on the dashboard page */
    margin-bottom: 60px;
    clear: both;
    overflow: auto;
}

.page-body-footer {
    position: relative;
    line-height: 40px;
    min-height: 3px;
    
    color: rgb(255,255,255);
    background-color: rgb(79,75,74);
    
    -webkit-box-shadow: 0 2px rgb(157,149,147);
       -moz-box-shadow: 0 2px rgb(157,149,147);
            box-shadow: 0 2px rgb(157,149,147);
}

a.page-browse-right {
    display: block;
    text-align: right;
    float: right;
    overflow: auto;
}

a.page-browse-right div {
    float: right;
}

a.page-browse-left {
    display: block;
    text-align: left;
    float: left;
    overflow: auto;
}

a.page-browse-left div {
    float: left;
}

.page-browse-image {
    width: 40px;
    height: 40px;
    margin: 8px 10px 0;
    
    border: 2px solid rgb(255,255,255);
    border-radius: 22px;
    
    zoom: 1;
	filter: alpha(opacity=25);
	opacity: 0.25;
	
	-webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;	
	transition: opacity .25s ease-in-out;
}

a.page-browse-right:hover .page-browse-image,
a.page-browse-left:hover .page-browse-image {
    filter: alpha(opacity=100);
	opacity: 1;
}

.page-browse-arrow {
    position: relative;
    display: inline-block;
    top: 5px;
}

.page-browse-arrow.left {
    border-right: 11px solid rgb(255,255,255);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.page-browse-arrow.left.disabled {
    border-right: 11px solid rgba(255,255,255,.1);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.page-browse-arrow.right {    
    border-left: 11px solid rgb(255,255,255);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.page-browse-arrow.right.disabled {
    border-left: 11px solid rgba(255,255,255,.1);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Account Create */

.beta-register-disabled {
    position: relative;
}

.beta-register-overlay, .beta-settings-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    
    background-color: rgba(255, 255, 255, .6);
    
    z-index: 1000;
}

.beta-register-overlay .modal {
    position: absolute;
}

.beta-settings-overlay {
    height: 90%;
}

.beta-settings-overlay .modal {
    position: absolute;
    margin-top: -110px;
    z-index: 1000;
}

.go-arrow {
    width: 200px;
    margin: 0 auto 30px;
}

.go-arrow-body {
    height:100px;
    width: 150px;
    margin: 0 auto;
    
    background-color: rgb(255, 252, 211);
}

.go-arrow-body p {
    text-align: center;
    font-size: 30px;
    padding-top: 45px;
    font-weight: bold;
    color: #635624;
}

.go-arrow-arrow {
    border-top: 40px solid rgb(255, 252, 211);
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
}

.plan-options {
    margin-bottom: 30px;
}

.plan-option {
    position: relative;
    width: 280px;
    height: 280px;
    
    text-align: center;
    
    background-color: #C2C2C2;
    background-image: url('../images/registration-backgrounds.png');
    color: #FFFFFF;
    cursor: pointer;
    
    -webkit-border-radius: 20px;
       -moz-border-radius: 20px;
            border-radius: 20px;
    
    /*
	-webkit-transition: background-image .8s ease-in-out;
	-moz-transition: background-image .8s ease-in-out;
	-o-transition: background-image .8s ease-in-out;
	-ms-transition: background-image .8s ease-in-out;	
	transition: background-image .8s ease-in-out;
	*/
}

.plan-option:hover {
    background-position: -280px top;
}

.plan-option.selected {
    background-position: -560px top;
    cursor: normal;
    
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .25);
       -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, .25);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .25);
            
    text-shadow: 0px -1px rgba(0, 0, 0, .3) ;
}

.plan-option.micro {
    float: left;
}

.plan-option.personal {
    margin: 0px auto;
}

.plan-option.mega {
    float: right;
}

.plan-option-title {
    padding: 20px 0 15px;
    font-weight: bold;
    color: #FFFFFF;
}

.plan-price-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    
    background: #FFFFFF;
    
    color: #989795;
    text-shadow: none;
    
    -webkit-border-radius: 75px;
       -moz-border-radius: 75px;
            border-radius: 75px;
}

.plan-option:hover .plan-price-circle, .plan-option.selected .plan-price-circle {
    color: #ff931c;
}

.plan-option.selected .plan-price-circle {
    box-shadow: 0 -1px 1px rgba(0, 0, 0, .25);
}

.plan-price {
    line-height: 140px;
    margin: 0 0 0 -15px;
    font-size: 88px;
}

.plan-dollar {
    font-size: 26px;
    position: relative;
    top: -38px;
}

.plan-month {
    position: absolute;
    width: 100%;
    top: 105px;
}

.plan-price-number {
    letter-spacing: -.05em;
}

.plan-features {
    list-style-type: none;
    margin: 10px 0 0;
}

.plan-services {
    text-align: center;
}

.plan-service-icon {
    width: 25px;
    height: 25px;
    
    margin: 4px;
}

.plan-options-info p {
    margin-bottom: 5px;
}

.plan-favorite {
    position: absolute;
    width: 85px;
    height: 26px;
    top: 30px;
    right: -20px;
    
    background-image: url('../images/registration-backgrounds.png');
    background-position: -840px top;
}

.register-payment-section {
    background: #EFEFEF;
}

.register-billing-info {
    float: right;
    width: 350px;
    margin-top: 10px;
    
    background-color: #FFFFFF;
}

.register-billing-info .message {
    margin: 25px;
}

.register-almost-there {
    float: right;
    width: 240px;
    margin-top: 50px;
    
    color: #635624;
}

.register-almost-there .arrow {
    float: right;
    
    border-left: 55px solid rgb(255, 252, 211);
    border-top: 125px solid transparent;
    border-bottom: 125px solid transparent;
}

.register-almost-there .message {
    height: 190px;
    margin-right: 40px;
    margin-top: 30px;
    background: rgb(255, 252, 211);
}

.register-almost-there p {
    margin-left: 30px;
    margin-right: 30px;
}

.register-almost-there p.first {
    padding-top: 25px;
}

/* Account Management */

.account-service-header {
    margin-bottom: 20px;
}

.account-service-icon {
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.account-service-name {
    float: left;
    margin-right: 10px;
    
    font-size: 15px;
    line-height: 25px;
}

.account-service-add {
    float: right;
    margin-left: 10px;
    
    line-height: 25px;
}

.account-list-divider {
    margin-top: 12px;
}

.account-service {
    margin-left: 35px;
    margin-bottom: 20px;
}

.account-buddyicon {
    float: left;
    width: 30px;
    height: 30px;
    
    -webkit-border-radius: 15px;
       -moz-border-radius: 15px;
            border-radius: 15px;
}

.account-service-info {
    margin-left: 40px;
    line-height: 30px;
}

.account-profile-image {
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 15px;
}

.cc-remove {
    margin-left: 20px;
}

.account-latest {
    margin: 10px 0;
}

.account-latest .thumbnail-image {
    margin-left: -10px;
}

.plans {
    
}

.plan {
    padding: 15px;
    padding-left: 65px;
    margin: 0 0 10px;
    cursor: pointer;
    
    color: #85817d;
    
    background-image: url('../images/checkbox-empty.png');
    background-repeat: no-repeat;
    background-position: 20px center;
    
    border: 3px solid transparent;
    
    -webkit-border-radius: 15px;
       -moz-border-radius: 15px;
            border-radius: 15px;
}

.plan:hover {
    background-image: url('../images/checkbox-empty-hover.png');
    color: inherit;
    
    border: 3px solid #19c8b5;
}

.plan.selected {
    font-weight: bold;
    cursor: normal;
    color: inherit;
    
    border: 3px solid #19c8b5;
    
    background-image: url('../images/checkbox-checked.png');
}

.modal-plan-detail {
    float: left;
    margin-right: 15px;
    padding-left: 15px;
}

/* Archive Status (Dashboard) Stuff */

.welcome-message {
    padding: 20px 0;
}

.welcome-intro {
    margin-bottom: 20px;
}

.intro-1, .intro-2, .intro-3 {
    height: 130px;
    padding: 15px 15px 0;
    border-radius: 15px;
}

.intro-1 {
    background: rgb(189, 204, 212) url('../images/onboarding/01.png') bottom center no-repeat;
}

.intro-2 {
    background: rgb(189, 204, 212) url('../images/onboarding/02.png') bottom center no-repeat;
}

.intro-3 {
    background: rgb(189, 204, 212) url('../images/onboarding/03.png') bottom center no-repeat;
}

.force-walkthrough-complete {
    text-align: right;
    font-weight: bold;
    line-height: 20px;
}

.breakdown-intro {
    margin-bottom: 20px;
}

.archive-status-summaries {
    overflow: auto;
    margin-bottom: 30px
}

.archive-status-breakdown {
    float: left;
    width: 25%;
}

.archive-status-breakdown .archive-status-summary {
    margin-left: 20px;
}

.archive-status-summary, .archive-status-connect {
    padding-top: 5px;
    
    text-align: center;
    font-weight: bold;
}

.archive-status-connect, a.archive-status-connect {
    margin: 0 15px;
}

a.archive-status-connect {
    display: block;
    
    color: rgb(63, 169, 245);
    text-decoration: none;
}

.archive-status-connected.highlight .archive-status-connect, .archive-status-connected.highlight .archive-status-summary {
    background-color: rgb(255, 252, 211);
}

.archive-status-connected.highlight .archive-status-summary hr {
    margin-left: 10px;
    margin-right: 10px;
}

.archive-status-connected-arrow {
    position: absolute;
}

.archive-status-connected.highlight .archive-status-connected-arrow {
    border-top: 40px solid rgb(255, 252, 211);
    border-right: 110px solid transparent;
    border-left: 110px solid transparent;
}

.archive-status-connected.highlight .archive-status-connected-arrow.summary {
    border-right: 98px solid transparent;
    border-left: 98px solid transparent;
}

.archive-status-connect-another {
    display: block;
    position: relative;
    top: -5px;
    
    z-index: 1;
    font-weight: bold;    
    text-align: center;
}

a.archive-status-summary {
    display: block;
    color: rgb(63, 169, 245);
    text-decoration: none;
    
	zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
	
	-webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;	
	transition: opacity .25s ease-in-out;
}

a.archive-status-summary:hover {    
	zoom: 1;
	filter: alpha(opacity=100);
	opacity: 1;
}

.archive-status-summary span,
.archive-status-connect span,
.archive-status-summary h3,
.archive-status-connect h3 {
    line-height: 60px;
}

.archive-status-summary h3,
.archive-status-connect h3 {
    font-family: "apertura", "Helvetica", sans-serif;
    font-size: 50px;
    font-weight: bold;
    font-weight: 800;
    
    color: rgb(63, 169, 245);
}

.archive-status-logo {
    margin-top: 25px;
}

.archive-status-connect .archive-status-logo {
    padding: 0 10px;
}

.archive-status-logo hr {
    margin: 0;
    border-top: 1px solid rgb(79,75,74);
}

.archive-status-logo hr.total {
    margin: 0;
}

.archive-status-logo img {
    position: relative;
    top: -14px;
}

.archive-status-logo.faded {
    zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

a.archive-status-service-title {
    display: block;
    text-decoration: none;
    color: inherit;
}

.archive-status-service-title {
    float: left;
    line-height: 25px;
    margin: 0 10px 18px 0;
    padding-left: 35px;
}

.archive-status-service-title strong {
    font-weight: bold;
    text-transform: uppercase;
}

.archive-status-service-title.instagram {
    background: url('../images/status-dashboard/instagram-25px.png') left center no-repeat;
}

.archive-status-service-title.flickr {
    background: url('../images/status-dashboard/flickr-25px.png') left center no-repeat;
}

.archive-status-service-title.twitter {
    background: url('../images/status-dashboard/twitter-25px.png') left center no-repeat;
}

.archive-status-service-title.foursquare {
    background: url('../images/status-dashboard/foursquare-25px.png') left center no-repeat;
}

.archive-status-service-title-line {
    margin: 12px 0 0;
    border-top: 1px dotted rgb(223, 223, 223);
}

.archive-status-service-actions {
    float: right;
    position: relative;
        
    font-weight: bold;
    font-size: .9em;
}

.archive-status-service-actions a {
    margin-left: 5px;
    
    border: 1px solid transparent;
    text-decoration: none;
}

a.service-action-zip {
    color: rgb(122, 201, 67);
}

a.service-action-zip:hover {
    border: 1px solid rgb(122, 201, 67);
}

a.service-action-browse {
    color: rgb(255, 147, 30);
}

a.service-action-browse:hover {
    border: 1px solid rgb(255, 147, 30);
}

a.service-action-dropbox {
    color: rgb(63, 169, 245);
}

a.service-action-dropbox:hover {
    border: 1px solid rgb(63, 169, 245);
}

.archive-status-service-actions .button.disabled {
    color: rgb(178, 178, 178);
    border: 1px solid transparent;
    
    cursor: default;
}

.archive-status-quickstats {
    margin-bottom: 12px;
    font-size: .9em;
}

.archive-activity-tray {
    padding: 18px 40px 30px;
    margin-bottom: 18px;
    
    border-left: 1px solid rgb(79,75,74);
    border-right: 1px solid rgb(79,75,74);
    border-bottom: 1px solid rgb(79,75,74);
}

.archive-activity-status, .archive-activity-complete {
    float: left;
}

.archive-activity-status {
    line-height: 2em;
    font-weight: bold;
}

.archive-activity-complete strong {
    color: rgb(122, 201, 67);
}

.archive-activity-buttons {
    float: right;
}

.archive-activity-status-button {
    background-color: rgb(178, 178, 178);
    color: rgb(255, 255, 255);
    
    font-weight: bold;
}

a.archive-activity-download-button {
    background-color: rgb(122, 201, 67);
    color: rgb(255, 255, 255);
    
    font-weight: bold;
}

a.archive-activity-cancel-button {
    background-color: rgb(172, 25, 20);
    color: rgb(255, 255, 255);
}

.archive-activity-cancel-button i {
    position: relative;
    top: 1px;
}

.archive-activity-thumbs {
    float: right;
    height: 2em;
    margin-right: 10px;
}

.archive-activity-thumbs img {
    max-height: 100%;
    margin-right: 5px;
}

.archive-status-graph-overall {
    text-align: center;
}

.graph-years, .graph-year-labels {
    display: inline-block;
}

.graph-year {
    float: left;
    margin-right: 20px;
}

.graph-year-label {
    float: left;
    margin-right: 20px;
    width: 69px;
    
    font-size: .8em;
    font-weight: bold;
    text-align: left;
}

.graph-separator {
    margin: 0 0 4px;
    clear: both;
}

.quick-faq {
    margin: 0 40px 30px;
    padding: 20px 0;
    background-color: rgb(222, 230, 234);
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.quick-faq.expanded {
    margin: 0;
}

.mini-quick-faq {
    margin: 0 20px;
    font-weight: bold;
    
    cursor: pointer;
}

.faq-q {
    font-weight: bold;
}

.faq-a {
    margin-bottom: 20px;
}

.quick-faq ol {
    margin-left: 50px;
}

.quick-faq li {
    margin-bottom: 9px;
}

/* Listing Archive Items */

.list-month {
    margin-bottom: 15px;
}

.partial-month {
    margin-top: -15px;
}

.archive-list-month-label {
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
}

.archive-list-month-divider {
    margin: 8px 0 0;
    padding: 0;
    
    border-top: 4px solid rgb(255, 147, 30);
}

.list-day {
    margin-bottom: 10px;
}

.list-day .archive-list-month-label  {
    margin-bottom: 10px;
}

.archive-list-day-label {
    float: left;
    width: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    
    font-size: 10px;
    text-align: center;
    
    color: rgb(255,255,255);
    background-color: rgb(79,75,74);
    
    border-radius: 10px;
}

.archive-list-day-divider {
    margin: 9px 0 0;
    padding: 0;
    border-top: 1px dotted #DFDFDF;
}

.archive-item {
    clear: both;
    padding: 10px 0;
    overflow: auto;
}

.archive-item.expanded {
    border-top: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}

.archive-item-timestamp {
    width: 80px;
    
    text-transform: uppercase;
    float: left;
}

.archive-item-item {
    position: relative;
    display: block;
    margin-left: 90px;
}

.archive-item-loading {
    position: absolute;
    top: 2px;
    left: -21px;
    width: 16px;
    height: 16px;
    
    display: none;
    
    background-image: url('../images/loading/spin-small.gif');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 16px 16px;
}

.archive-item-primary {
    -webkit-transition: all 100ms ease-in-out;
}

.archive-item-context {
    margin-left: 90px;
}

.archive-item-tweet {
    margin: 0;
}

.archive-item-primary .archive-item-tweet {
    cursor: pointer;
    
    -webkit-transition: all 100ms ease-in-out;
    
    -moz-box-shadow: 0 0 0 10px rgb(255,255,255);
    -webkit-box-shadow: 0 0 0 10px rgb(255,255,255);
    box-shadow: 0 0 0 10px rgb(255,255,255);
}

.archive-item-primary .archive-item-tweet:hover {
    background-color: rgb(209, 229, 240);
    
    -moz-box-shadow: 0 0 0 10px rgb(209, 229, 240);
    -webkit-box-shadow: 0 0 0 10px rgb(209, 229, 240);
    box-shadow: 0 0 0 10px rgb(209, 229, 240);
}

.archive-item.expanded .archive-item-primary {
    margin: 10px 0;
}

.archive-item.expanded .archive-item-primary .archive-item-tweet {
    font-weight: bold;
}

.archive-item.expanded .archive-item-primary .archive-item-tweet:hover {
    background-color: inherit;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tweet-detail {
    display: none;
    overflow: auto;
}

.archive-item-timestamp.reply {
    text-align: right;
}

.tweet-meta {
    overflow: auto;
}

.tweet-info {
    float: left;
}

.tweet-info .icon-map-marker {
    color: rgb(0, 166, 248);
}

.tweet-info .icon-retweet {
    color: rgb(0, 153, 67);
}

.tweet-twitter-link {
    float: right;
    
    zoom: 1;
	filter: alpha(opacity=0);
	opacity: 0;
	
	-webkit-transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-o-transition: opacity .25s ease-in-out;
	-ms-transition: opacity .25s ease-in-out;	
	transition: opacity .25s ease-in-out;
}

.archive-item.expanded .archive-item-item:hover .tweet-twitter-link {
    filter: alpha(opacity=100);
	opacity: 1;
}

/* Foursquare Archive Items */

.ai-4sq-venue-type-icon {
    position: relative;
    float: left;
    height: 100%;
    margin-right: 15px;
}

.ai-4sq-checkin-content {
    margin-left: 47px;
    
    cursor: pointer;
}

.ai-4sq-venue {
    font-weight: bold;
}

.ai-4sq-photos-map {
    clear: both;
}

.ai-4sq-photos-map .image {
    width: 150px;
    height: 150px;
}

.ai-4sq-photos-map .map {
    display: none;
    height: 150px;
}

.ai-4sq-photos-map .image {
    float: left;
    margin-right: 15px;
}

.ci-4sq-meta-left {
    float: right;
}

.ai-4sq-meta {
    clear: both;
    display: none;
    
    padding-top: 15px;
}

.ai-4sq-meta span {
    margin-right: 15px;
}

#loading {
    text-align: center;
}

#js-loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10;
    text-align: center;
    padding: 20px;
    margin-left: -71px;
    
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .3);
}

.archive-loading {
    display: inline-block;
    line-height: 30px;
    padding-left: 40px;
    background: url('../images/loading/spin.gif') no-repeat top left;
}

/* Service Browsing Stuff */

.thumbnail-image-container {
    max-height: 220px;
    min-height: 220px;
}

.month-anchor {
    position: relative;
    top: -50px;
    
    display: inline-block;
    float: left;
}

.month-container-placeholder {
    clear: both;
    text-align: center;
}

.thumbnail-image-month-block {
    width: 150px;
    height: 150px;
    text-align: center;
    background-color: rgb(79,75,74);
    color: rgb(255,255,255);
}

.thumbnail-image-month {
    min-height: 1.5em;
    line-height: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: inherit;
}

.thumbnail-image-month-block .thumbnail-image-month {
    font-weight: normal;
    padding-top: 66px;
}

.thumbnail-image {
    display: inline-block;
    padding: 10px;
}

.thumbnail-image:hover {
    background-color: rgb(244, 244, 244);
}

.thumbnail-image-row .thumbnail-image {
    margin-left: 22px;
}

.thumbnail-image .image {
    width: 150px;
    height: 150px;
}

.thumbnail-image .caption {
    width: 150px;
    margin-top: 15px;
    
    text-align: center;
    font-size: .8em;
    line-height: 1.2em;
    
    max-height: 2.4em;
    min-height: 2.4em;
    overflow: hidden;
}

.sidebar-section {
    margin: 0 20px 18px 0;
    clear: both;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-icon {
    display: inline-block;
    width: 1em;
    text-align: center;
    
    margin-right: 10px;
}

.sidebar-label {
    float: left;
    margin-right: 10px;
}

.sidebar hr {
    position: relative;
    top: .6em;
    margin: 0;
    
    border-top: 1px solid rgb(191, 183, 180);
}

.sidebar-likes {
    clear: both;
}

.sidebar-buddyicon {
    float: left;
    margin: 0 13px 13px 0;
    
    width: 45px;
    height: 45px;
}

.sidebar-comments {
    clear: both;
}

.sidebar-comment-buddyicon {
    float: left;
}

.sidebar-comment-buddyicon .image {
    width: 25px;
    height: 25px;
}

.sidebar-comment-text {
    position: relative;
    top: -2px;
    margin-left: 38px;
}

.sidebar-comment-author {
    font-weight: bold;
}

.sidebar-comment-time {
    font-size: .75em;
}

.sidebar-tags {
    clear: both;
}

/* Time Archive Stuff (MOST OF THIS SHOULD BE REFACTORED TO USE NEWER STUFF) */

.time-archive-container { /* Depricated */
    margin-top: 30px;
    margin-bottom: 30px;
    
    background-color: rgb(255,255,255);
    border-left: 1px solid rgb(79,75,74);
    border-right: 1px solid rgb(79,75,74);
}

.time-archive-header { 
    margin-bottom: 30px;
    line-height: 60px;
    
    background-color: rgb(79,75,74);
    border-bottom: 2px solid rgb(157,149,147);
}

.time-archive-header .row {
    color: rgb(255,255,255);
}

.time-archive-date i {
    color: rgb(93,194,180);
}

.time-archive-map-toggle {
    text-align: right;
}

.time-archive-map-toggle i {
    color: rgb(121,204,60);
}

.time-archive-map-toggle span {
    cursor: pointer;
}

.time-archive-item {
    margin-bottom: 20px;
}

.time-archive-item hr {
    height: 1px;
    margin: .6em 0 0;
    background-color: rgb(79,75,74);
    border: none;
}

.time-archive-item a {
    font-weight: bold;
}

.time-archive-datestamp, .time-archive-partofday {
    text-align: right;
    font-weight: bold;
    
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.time-archive-item-timestamp {
    text-align: right;    
    color: rgb(217,217,217);
}

.time-archive-sunrise {
    color: rgb(121,204,60);
}

/*
.time-archive-sunrise hr {
    background-color: rgb(121,204,60);
}
*/

.time-archive-noon {
    color: rgb(204,135,60);
}

/*
.time-archive-noon hr {
    background-color: rgb(204,135,60);
}
*/

.time-archive-sunset {
    color: rgb(67,119,153);
}

/*
.time-archive-sunset hr {
    background-color: rgb(67,119,153);
}
*/

.time-archive-footer {
    position: relative;
    top: 2px;
    line-height: 40px;
    
    color: rgb(255,255,255);
    background-color: rgb(79,75,74);
    border-bottom: 2px solid rgb(157,149,147);
}

.time-archive-footer .time-archive-date {
    text-align: center;
}

.archive-browse-arrow-container {
    display: block;
    width: 100%;
    text-align: center;
}

.archive-browse-arrow {
    position: relative;
    display: inline-block;
    top: 5px;
}

.archive-browse-arrow.left {
    border-right: 11px solid rgb(255,255,255);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.archive-browse-arrow.left.disabled {
    border-right: 11px solid rgba(255,255,255,.1);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.archive-browse-arrow.right {    
    border-left: 11px solid rgb(255,255,255);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.archive-browse-arrow.right.disabled {
    border-left: 11px solid rgba(255,255,255,.1);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.archive-item-image {
    width: 150px;
    height: 150px;
    
    max-width: 100%;
}

.archive-item-image-info {
    display: none;
    border-bottom: 1px dotted rgb(79,75,74);
}

/* XOXO */

.xoxo-intro h2 {
    margin-bottom: 10px;
}

.xoxo-intro-image {
    width: 100%;
    height: 260px;
    background-image: url('https://farm9.staticflickr.com/8460/7987761068_4e4b318548_z.jpg');
}

.xoxo-days {
    float: right;
}

.xoxo-days .button {
    text-transform: uppercase;
}

.xoxo-schedule.affix {
    top: 20px;
    width: 220px;
}

.xoxo-tweet {    
    -webkit-transition: all 100ms ease-in-out;
}

.xoxo-tweet:hover {
    background-color: rgb(209, 229, 240);
    
    -moz-box-shadow: 0 0 0 10px rgb(209, 229, 240);
    -webkit-box-shadow: 0 0 0 10px rgb(209, 229, 240);
    box-shadow: 0 0 0 10px rgb(209, 229, 240);
}

.xoxo-tweet-link {
    display: none;
    float: right;
    margin-right: 10px;
}

.xoxo-tweet-link i {
    line-height: 1;
}

.xoxo-tweet:hover .xoxo-tweet-link {
    display: inline;
}

.xoxo-tweet .archive-item-timestamp {
    margin-left: 10px;
}

.xoxo-tweet .archive-item-tweet {
    margin-right: 10px;
}

.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
    color: white;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    background-color: #08C;
}