/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0,0,0,.8);
		z-index: 100;
		display: none;
		top: 0;
		left: 0; 
		}
	
	.reveal-modal {
		visibility: hidden;
		top: 100px; 
		left: 50%;
		margin-left: -35%;
		width: 66%;
		background: #fff;
		position: absolute;
		z-index: 101;
		padding: 10px 2% 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
		-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
		-box-shadow: 0 0 10px rgba(0,0,0,.4);
		}
		
	.reveal-modal.small 		{ width: 200px; margin-left: -140px;}
	.reveal-modal.medium 		{ width: 400px; margin-left: -240px;}
	.reveal-modal.large 		{ width: 600px; margin-left: -340px;}
	.reveal-modal.xlarge 		{ width: 800px; margin-left: -440px;}
	
	.reveal-modal .close-reveal-modal {
		font-size: 22px;
		line-height: .5;
		position: absolute;
		top: 16px;
		right: 14px;
		color: #aaa;
		text-shadow: 0 -1px 1px rbga(0,0,0,.6);
		font-weight: bold;
		cursor: pointer;
        font-family: serif;
		}
    .reveal-modal h1{
        font-size: 18px;
        line-height: 25px;
        margin:0 0 10px;

    }
.reveal-modal h2{
    font-size: 16px;
    line-height: 20px;
    margin:0 0 10px;
}
.reveal-modal .holder{
    overflow: hidden;
    margin-bottom: 5px;
    padding: 5px 0;
}
.reveal-modal .lbl{
    float: left;
    width: 37%;
    padding: 0 2% 0 1%;
    text-align: right;
}
.reveal-modal .search-tickers{
    width: 50%;
    padding: 5px;
    border: 1px solid #999999;
    border-radius: 3px;
    height: 24px;
    line-height: 24px;
    float:left;
}
.reveal-modal .search-tickers:focus{
    border: 1px solid #229cdc;
    -webkit-box-shadow: 0 0 2px 2px #9CC3FF;
    box-shadow: 0 0 2px 2px #9CC3FF;
}
.reveal-modal .saparator{
    background: url(../images/seperator_img.png) no-repeat 50% 50%;
    overflow: hidden;
    clear: both;
    text-align: center;
    padding: 10px 0;
}
.reveal-modal .saparator span{
    background: #fff;
    padding: 5px 25px;
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
}
.reveal-modal .btn-holder{
    overflow: hidden;

    padding: 10px 0;
}
.reveal-modal .btn {
    background: none repeat scroll 0 0 #00396f;
    color: #fff;
    cursor: pointer;
    float: right;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0 !important;
    padding: 0 15px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    margin-left: 5px;
}
.reveal-modal .btn:hover{
    background: #575757;
    -webkit-transition: background 0.2s ease-in;
    -moz-transition: background 0.2s ease-in;
    -ms-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}
@media (max-width: 550px ) {
    .reveal-modal{
        width: 86%;
        margin-left: -45%;

    }

}
@media (max-width: 420px ) {
    .reveal-modal{
        width: 96%;
        margin-left: 0;
        left: 0;
    }
    .reveal-modal .lbl{
        width: 45%;
    }

}
	/*
		
	NOTES
	
	Close button entity is &#215;
	
	Example markup
	
	<div id="myModal" class="reveal-modal">
		<h2>Awesome. I have it.</h2>
		<p class="lead">Your couch.  I it's mine.</p>
		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p>
		<a class="close-reveal-modal">&#215;</a>
	</div>
	
	*/
