/*
	 Button Maker
	 by Chris Coyier
	 http://css-tricks.com
*/

* {
    margin: 0;
    padding: 0;
}

body {
    font: 14px Georgia, serif;
    color: #000;
}

#page-wrap {
    width: 500px;
    margin: 30px auto;
    overflow: hidden;
}

@media (max-width: 1000px) {
    #page-wrap {
        width: 400px;
        padding: 20px;
        margin-left: 20px;
    }
}

#button-box {
    background: #336699;
    border-radius: 20px;
    height: 100px;
    width: 300px;
    margin: 0 auto;
    vertical-align: middle;
}

#controls {
    width: 390px;
    padding: 20px;
    margin: 0 auto;
}

h1 {
    font: 46px Georgia, Serif;
    margin: 0 0 20px 0;
}

.button {
    text-align: center;
}

.button {
    border-top: 1px solid #96d1f8;
    background: #336699;
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
    vertical-align: middle;
}

.button:hover {
    border-top-color: #28597a;
    background: #223366;
    color: #ccc;
}

.button:active {
    border-top-color: #1b435e;
    background: #000;
    outline: 0;
}

#the-css {
    display: none;
    text-align: left;
}

.sliderBar {
    margin: 0 0 15px 0;
}

.ui-dialog-content {
    font: 12px Monaco, MonoSpace;
}

#colors>div {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 0 0 5px 0;
}

#colors>div>input {
    width: 300px;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

#colors>div>label:hover {
    font-weight: bold;
}

#colors>div>label {
    display: block;
    text-align: center;
    color: black;
    position: relative;
    z-index: 20;
    color: white;
    text-shadow: 0 0 8px black, 0 1px 0 black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 5px;
    position: absolute;
}

.colorpicker {
    z-index: 1000;
}