 /*
 * Fallr v1.0 - jQuery Plugin
 * Simple & elegant modal box jQuery plugin
 *
 * Copyright 2011 amatyr4n
 * http://codecanyon.net/user/amatyr4n
 *
 * licensed under Envato licenses
 * http://wiki.envato.com/support/legal-terms/licensing-terms/
 */

#fallr-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: #333;
    height: 100%;
    width: 100%;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
	z-index: 100000;
    color: #000;
}

#fallr-wrapper,
#fallr-wrapper * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-weight: normal;
    line-height: 19px;
    color: #000;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
	z-index: 100000;
}

#fallr-wrapper {
    position: fixed;
    overflow: hidden;
    background: #e4e8e8;
    border: 1px solid #fff;
    box-shadow: 0 0 5px #111;
    -moz-box-shadow: 0 0 5px #111;
    -webkit-box-shadow: 0 0 5px #111;
	z-index: 100000;
}

#fallr-icon {
    position: absolute;
    top: 35px;
    left: 20px;
    height: 1px;
    width: 1px;
    background-position: 0 0;
    background-repeat: no-repeat;
}

#fallr {
    position: relative;
    padding: 20px;
    width: 100%;
}

#fallr-buttons {
    position: relative;
    bottom: 4px;
    right: 10px;
    margin: 15px;
    clear: both;
    display: block;
    text-align: right;
}

/*  Github button style
    http://nicolasgallagher.com/lab/css3-github-buttons/ 
*/

#fallr-wrapper .fallr-button {
    position: relative;
    overflow: visible;
    display: inline-block;
    padding: 4px 15px;
    margin-left: 10px;
    margin-top: 10px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background-color: #50a182;
    border: 1px solid #50a182;
    border-radius: 25px;
}

    #fallr-wrapper .fallr-button:hover,
    #fallr-wrapper .fallr-button:focus {
        border-color: #1f284e;
        text-decoration: none;
        color: #fff;
        background-color: #1f284e;
    }

#fallr-wrapper .fallr-button.fallr-button-danger {
    color: #FFF;
}

.fallr-button
{
    color: #FFF !important;
}

#fallr-wrapper .fallr-button.fallr-button-danger:hover,
#fallr-wrapper .fallr-button.fallr-button-danger:focus {
    border-color: #1f284e;
    color: #fff;
    background-color: #1f284e;
}

#fallr h1, 
#fallr h2,
#fallr h3,
#fallr h4,
#fallr h5,
#fallr h6 {
    color: #1f284e;
    font-weight: bold;
}

#fallr h1, 
#fallr h2,
#fallr h3,
#fallr h4,
#fallr h5,
#fallr h6,
#fallr p,
#fallr form,
#fallr input,
#fallr label {
    margin-bottom: 10px;
}

#fallr h1 {
    font-size: 23px;
    line-height: 45px;
}

#fallr h2 {
    font-size: 20px;
    line-height: 45px;
}

#fallr h3 {
    font-size: 14px;
    line-height: 45px;
}

#fallr h4 {
    font-size: 12px;
    line-height: 37px;
}

#fallr h5 {
    font-size: 10px;
    line-height: 30px;
}

#fallr input[type="text"],
#fallr input[type="password"], 
#fallr textarea {
    background: #fff;
    border: solid 1px #999;
    color: #777;
    padding: 5px;
    width: 97%;
    box-shadow: inset #bbb 0px 0px 5px;
    -moz-box-shadow: inset #bbb 0px 0px 5px;
    -webkit-box-shadow: inset #bbb 0px 0px 5px; 
}

#fallr ol li, 
#fallr ul li,
#fallr blockquote, 
#fallr q {
    margin-left: 20px;
}

#fallr table {
    border: 1px solid #ddd;
	border-collapse:collapse;
	border-spacing: 0;
	line-height: 1.35em;
	width: 100%;
}

#fallr th, 
#fallr td {
    padding: 10px;
}