.button {
  padding: 2px 7px;
  border-radius: 3px;
  text-align: center;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.6)), color-stop(1, rgba(0, 0, 0, 0.4)));
  background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  background: -moz-linear-gradient(center bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  border: 1px solid #000;
  color: #fff;
  background: #1a1a1a;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000000), color-stop(1, #333333));
  background: -ms-linear-gradient(bottom, #000000, #333333);
  background: -moz-linear-gradient(center bottom, #000000 0%, #333333 100%);
  background: -o-linear-gradient(bottom, #000000, #333333);
}
.button:active:before {
  top: 0;
}
.button:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 4px;
  opacity: 0.02;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 47%, #ffffff 49%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.12) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(47%, rgba(255, 255, 255, 0.96)), color-stop(49%, #ffffff), color-stop(50%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 47%, #ffffff 49%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.12) 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 47%, #ffffff 49%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.12) 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 47%, #ffffff 49%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.12) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#1f000000', GradientType=0);
}
.button:hover {
  background: #121212;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000000), color-stop(1, #262626));
  background: -ms-linear-gradient(bottom, #000000, #262626);
  background: -moz-linear-gradient(center bottom, #000000 0%, #262626 100%);
  background: -o-linear-gradient(bottom, #000000, #262626);
}
.button:active {
  background: #121212;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #262626), color-stop(1, #000000));
  background: -ms-linear-gradient(bottom, #262626, #000000);
  background: -moz-linear-gradient(center bottom, #262626 0%, #000000 100%);
  background: -o-linear-gradient(bottom, #262626, #000000);
}
/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
*/
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #000;
  background: #FFF;
}
/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF. 
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
/*
	TODO Figure out where this list-style rule is best set. Hedger has a request to investigate.
*/
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
/* DatePicker Container */
.ui-datepicker {
  width: 216px;
  height: auto;
  font: 9pt Arial, sans-serif;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.8);
}
.ui-datepicker a {
  text-decoration: none;
}
/* DatePicker Table */.ui-datepicker table {
  width: 100%;
}
.ui-datepicker-header {
  background: #000;
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 1px 1px 0px #fafafa;
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0px #000000;
  line-height: 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #111;
}
.ui-datepicker-title {
  text-align: center;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url('../../../img/arrow.png');
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden;
}
.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}
.ui-datepicker thead {
  background-color: #202020;
  border-bottom: 1px solid #111;
}
.ui-datepicker th {
  text-transform: uppercase;
  font-size: 6pt;
  text-align: center;
  padding: 5px 0;
  color: #aaa;
  text-shadow: 1px 0px 0px #000;
}
.ui-datepicker tbody td {
  padding: 0;
  border-right: 1px solid #111;
}
.ui-datepicker tbody td:last-child {
  border-right: 0px;
}
.ui-datepicker tbody tr {
  border-bottom: 1px solid #111;
}
.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 25px;
  line-height: 25px;
  color: #eee;
  text-shadow: 1px 1px 0px #000;
}
.ui-datepicker-calendar .ui-state-default {
  position: relative;
  background: #191919;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111111), color-stop(1, #191919));
  background: -ms-linear-gradient(bottom, #111111, #191919);
  background: -moz-linear-gradient(center bottom, #111111 0%, #191919 100%);
  background: -o-linear-gradient(bottom, #111111, #191919);
  display: block;
}
.ui-datepicker-calendar .ui-state-default:after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ui-datepicker-calendar .ui-state-hover {
  background: #191919;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111111), color-stop(1, #000000));
  background: -ms-linear-gradient(bottom, #111111, #000000);
  background: -moz-linear-gradient(center bottom, #111111 0%, #000000 100%);
  background: -o-linear-gradient(bottom, #111111, #000000);
  text-decoration: none;
  color: #fff588;
}
.ui-datepicker-calendar .ui-state-active {
  background: #000;
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  color: #fff588;
  text-shadow: 0px 1px 0px #000;
  border: 1px solid #000;
  position: relative;
  margin: -1px;
}
.ui-datepicker-unselectable .ui-state-default {
  background: #111;
  color: #666;
}
.ui-datepicker-unselectable .ui-state-default:after {
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}
#ui-datepicker-div {
  position: static !important;
  display: block !important;
  opacity: 1 !important;
}
.colorpicker {
  width: 356px;
  height: 176px;
  overflow: hidden;
  position: absolute;
  background: url(../../../img/colorpicker/colorpicker_background.png);
  font-family: Arial, Helvetica, sans-serif;
  display: none;
}
.colorpicker_color {
  width: 150px;
  height: 150px;
  left: 14px;
  top: 13px;
  position: absolute;
  background: #f00;
  overflow: hidden;
  cursor: crosshair;
}
.colorpicker_color div {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: url(../../../img/colorpicker/colorpicker_overlay.png);
}
.colorpicker_color div div {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  overflow: hidden;
  background: url(../../../img/colorpicker/colorpicker_select.gif);
  margin: -5px 0 0 -5px;
}
.colorpicker_hue {
  position: absolute;
  top: 13px;
  left: 171px;
  width: 35px;
  height: 150px;
  cursor: n-resize;
}
.colorpicker_hue div {
  position: absolute;
  width: 35px;
  height: 9px;
  overflow: hidden;
  background: url(../../../img/colorpicker/colorpicker_indic.gif) left top;
  margin: -4px 0 0 0;
  left: 0px;
}
.colorpicker_new_color {
  position: absolute;
  width: 60px;
  height: 30px;
  left: 213px;
  top: 13px;
  background: #f00;
}
.colorpicker_current_color {
  position: absolute;
  width: 60px;
  height: 30px;
  left: 283px;
  top: 13px;
  background: #f00;
}
.colorpicker input {
  background-color: transparent;
  border: 1px solid transparent;
  position: absolute;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #898989;
  top: 4px;
  right: 11px;
  text-align: right;
  margin: 0;
  padding: 0;
  height: 11px;
}
.colorpicker_hex {
  position: absolute;
  width: 72px;
  height: 22px;
  background: url(../../../img/colorpicker/colorpicker_hex.png) top;
  left: 212px;
  top: 142px;
}
.colorpicker_hex input {
  right: 6px;
}
.colorpicker_field {
  height: 22px;
  width: 62px;
  background-position: top;
  position: absolute;
}
.colorpicker_field span {
  position: absolute;
  width: 12px;
  height: 22px;
  overflow: hidden;
  top: 0;
  right: 0;
  cursor: n-resize;
}
.colorpicker_rgb_r {
  background-image: url(../../../img/colorpicker/colorpicker_rgb_r.png);
  top: 52px;
  left: 212px;
}
.colorpicker_rgb_g {
  background-image: url(../../../img/colorpicker/colorpicker_rgb_g.png);
  top: 82px;
  left: 212px;
}
.colorpicker_rgb_b {
  background-image: url(../../../img/colorpicker/colorpicker_rgb_b.png);
  top: 112px;
  left: 212px;
}
.colorpicker_hsb_h {
  background-image: url(../../../img/colorpicker/colorpicker_hsb_h.png);
  top: 52px;
  left: 282px;
}
.colorpicker_hsb_s {
  background-image: url(../../../img/colorpicker/colorpicker_hsb_s.png);
  top: 82px;
  left: 282px;
}
.colorpicker_hsb_b {
  background-image: url(../../../img/colorpicker/colorpicker_hsb_b.png);
  top: 112px;
  left: 282px;
}
.colorpicker_submit {
  position: absolute;
  width: 22px;
  height: 22px;
  background: url(../../../img/colorpicker/colorpicker_submit.png) top;
  left: 322px;
  top: 142px;
  overflow: hidden;
}
.colorpicker_focus {
  background-position: center;
}
.colorpicker_hex.colorpicker_focus {
  background-position: bottom;
}
.colorpicker_submit.colorpicker_focus {
  background-position: bottom;
}
.colorpicker_slider {
  background-position: bottom;
}
/*! Hint.css - v1.2.1 - 2013-03-24
* http://kushagragour.in/lab/hint/
* Copyright (c) 2013 Kushagra Gour; Licensed MIT */
/*----------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/labs/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 * 
 * Classes added:
 * 	1) hint
 */
.hint,
[data-hint] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */

  /**
	 * tooltip body
	 */

}
.hint:before,
.hint:after,
[data-hint]:before,
[data-hint]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.1s ease;
  -moz-transition: 0.1s ease;
  transition: 0.1s ease;
}
.hint:hover:before,
.hint:hover:after,
[data-hint]:hover:before,
[data-hint]:hover:after {
  visibility: visible;
  opacity: 1;
}
.hint:before,
[data-hint]:before {
  content: '';
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001;
}
.hint:after,
[data-hint]:after {
  content: attr(data-hint);
  background: #111;
  color: white;
  text-shadow: 0 -1px 0px #000000;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}
[data-hint]:before {
  margin-top: -12px;
}
[data-hint]:after {
  margin-left: -18px;
}
[data-hint]:before,
[data-hint]:after {
  top: 100%;
  left: 50%;
}
[data-hint]:hover:before,
[data-hint]:hover:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}
html {
  height: 100%;
  background: #111111 url(../../../img/bg.png) repeat-x top left;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
div,
li,
span {
  text-shadow: 2px 2px 1px #000000;
  -moz-text-shadow: 2px 2px 1px #000000;
  -webkit-text-shadow: 2px 2px 1px #000000;
  -o-text-shadow: 2px 2px 1px #000000;
  -ms-text-shadow: 2px 2px 1px #000000;
}
body {
  color: #fff;
  margin: 0;
  font: 12px 'Oswald', helvetica, arial, sans-serif;
  text-rendering: optimizeLegibility;
}
img {
  -ms-interpolation-mode: bicubic;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
strong {
  font-weight: bold;
}
input[type='text'],
select {
  width: 100%;
}
input {
  font-size: 13px;
  font-family: helvetica;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #fff588;
}
.header {
  background: url(../../../img/header.jpg) no-repeat top center;
  height: 219px;
  margin-bottom: 10px;
  min-width: 720px;
}
.header h1,
.header h2 {
  text-align: center;
  opacity: 0;
}
.header h1 {
  font-size: 108px;
  line-height: 1;
  padding: 40px;
}
.header h2 {
  line-height: 1;
  margin-top: 420px;
  font-size: 20px;
}
.container {
  padding: 10px;
  width: 720px;
  margin: 0 auto;
}
.box {
  font-size: 17px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3) inset;
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3) inset;
}
.box p {
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 10px;
}
.box p:last-child {
  margin-bottom: 0;
}
.preview-holder {
  margin-top: 20px;
}
.preview {
  display: block;
  margin: 10px auto;
  border: 0;
  width: 462px;
  height: 226px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 480px;
  height: 245px;
}
.generate-preview {
  display: block;
  padding: 10px;
  width: 100%;
}
.edit {
  padding: 20px 0 0;
  zoom: 1;
}
.edit:before {
  content: '';
  display: block;
}
.edit:after {
  content: '';
  display: table;
  clear: both;
}
.edit .date-container {
  width: 220px;
  height: 206px;
  float: left;
  display: block !important;
}
.edit .time-container {
  float: left;
  padding-left: 20px;
  width: 480px;
}
.edit .time-container .time {
  zoom: 1;
  width: 245px;
  float: left;
}
.edit .time-container .time:before {
  content: '';
  display: block;
}
.edit .time-container .time:after {
  content: '';
  display: table;
  clear: both;
}
.edit .time-container .time .time-unit {
  width: 100px;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.edit .time-container .time .time-unit .cog {
  pointer-events: none;
  position: absolute;
  bottom: 5px;
  left: 5px;
  opacity: 0.2;
  width: 16px;
  height: 16px;
  background: url(../../../img/cog.png);
}
.edit .time-container .time .time-unit:hover {
  color: #fff588;
}
.edit .time-container .time .divider {
  width: 40px;
}
.edit .time-container .time .time-unit,
.edit .time-container .time .divider {
  line-height: 90px;
  position: relative;
  font-size: 71px;
  text-align: center;
  float: left;
  overflow: hidden;
}
.edit .time-container .time .time-unit select,
.edit .time-container .time .divider select {
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
}
.edit .time-container .link {
  margin: 10px 0;
}
.edit .time-container .meta {
  float: left;
  width: 215px;
  padding: 0 0 0 10px;
}
.edit .time-container .meta > ul > li {
  position: relative;
  padding: 0 0 5px 70px;
  height: 23px;
}
.edit .time-container .meta > ul > li label {
  font-size: 13px;
  top: 0;
  left: 0;
  text-align: right;
  position: absolute;
}
.edit .time-container .meta > ul > li input {
  position: relative;
  top: 2px;
}
.edit .time-container .meta > ul .colors {
  padding: 5px 0 0;
  zoom: 1;
}
.edit .time-container .meta > ul .colors:before {
  content: '';
  display: block;
}
.edit .time-container .meta > ul .colors:after {
  content: '';
  display: table;
  clear: both;
}
.edit .time-container .meta > ul .colors li {
  cursor: pointer;
  width: 18%;
  margin: 0 1%;
  height: 15px;
  float: left;
  background: #000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  position: relative;
  -moz-transition: background 0.1s linear;
  -webkit-transition: background 0.1s linear;
  transition: background 0.1s linear;
}
.edit .time-container .meta > ul .colors li .cog {
  pointer-events: none;
  background: url(../../../img/cog.png) center center no-repeat;
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 0;
  background-size: 10px 10px;
  opacity: 0.5;
}
.edit .time-container .meta > ul .colors li .inner {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 0;
  content: '';
  display: block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.edit .time-container button.generate-preview {
  font: 20px 'Oswald', helvetica, arial, sans-serif;
}
#footer {
  color: #555;
  text-align: center;
  padding: 10px 0 50px;
}
#footer a {
  color: #fff588;
}