/* CSS Document */
        	/********************************/
            /*******3rd PARTY LEAVING********/
            /********************************/
            
                #extDis {
                    display: none;
                    position: fixed;
                    width: 100%;
                    height: 100%;
                    top: 0px;
                    left: 0px;
                    z-index: 1000;
                }
                #extDis h2{
                    text-align: center;
                }
                
                #extDis .extDisMsg {
                    background-color: #102E56;
                    border: 5px solid #FFF;
                    border-radius: 10px;
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
                    color: #FFF;
                    margin: 3em auto;
                    padding: 2em;
                    position: relative;
                    text-align: left;
                    width: 80%;
                    font-size: 0.80em;
                }
                #extDis .extDisMsg p{
                    padding: 0 0 20px 0;
                }
                #extDis .extDisBg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
                }
            
                #extDis a.continueBtn:hover,#extDis a.continueBtn:focus,#extDis a.closeBtn:focus {
                    background-color: #EF3337;
                    color:#FFF;
                    
                }
                #extDis a.closeBtn, #extDis a.continueBtn {
                    background-color: #FFF;
                    color: #381404;
                    display: inline-block;
                    font-weight: bold;
                    margin: 10px 20px 0px 0px;
                    padding: 10px 20px;
                    border-radius: 10px;
                    cursor: pointer;
                    text-decoration: none;
                }

        	/********************************/
            /*******3rd PARTY LEAVING********/
            /********************************/
            
                #extDisCredit {
                    display: none;
                    position: fixed;
                    width: 100%;
                    height: 100%;
                    top: 0px;
                    left: 0px;
                    z-index: 1000;
					
                }
                #extDisCredit  h2{
                    text-align: center;
                }
                
                #extDisCredit  .extDisMsg {
                    background-color: #102E56;
                    border: 5px solid #FFF;
                    border-radius: 10px;
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
                    color: #FFF;
                    margin: 3em auto;
                    padding: 2em;
                    position: relative;
                    text-align: center;
                    max-width:  600px;
                    font-size: 1em;
					
                }
                #extDisCredit .extDisMsg p{
                    padding: 0 0 20px 0;
                }
                #extDisCredit .extDisBg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
                }
            
                #extDisCredit a.continueBtn:hover,#extDisCredit a.continueBtn:focus,#extDisCredit a.closeBtn:focus {
                    background-color: #EF3337;
                    color:#FFF;
                    
                }
                #extDisCredit a.closeBtn, #extDisCredit a.continueBtn {
                    background-color: #FFF;
                    color: #381404;
                    display: inline-block;
                    font-weight: bold;
                    margin: 10px 20px 0px 0px;
                    padding: 10px 20px;
                    border-radius: 10px;
                    cursor: pointer;
                    text-decoration: none;
                }


#calculators a{
		display: block; 
		background-color: #73BD3E;
		color: #FFF;
		margin: 2px;
		padding:0.5em;
		float: left;
		width: 98%;
		border-radius: 10px;
		text-decoration: none;
			
			border: 3px solid #FFF ;
			color: #FFF;
		transition: all 1s;
		
		
	 }
		#calculators a:hover, #calculators a:focus{
		 color: #73BD3E;
			border: 3px solid #73BD3E ;
			background-color: #FFF ;
			box-shadow: 2px 2px 5px rgba(0,0,0,00.25);
	 }
	 #calculators strong{
		display: block;
		clear: both;
		padding:5px;
		font-size: 1.25em;
		margin-top: 16px;
	 }
	 .calculatorSection{
		width: 100%;
		float: left;
		margin: 5px;
	 }
	 #prsnpl a{ width: 49%;}
	 #lease  a{ width: 32.5%;}
	 #prsnfi a{ width: 49%;}
	 #retire a{ width: 49%;}
	 #invest a{ width: 49%;}
	 #home   a{ width: 49%;}
	 
#btt {
    background-color: #000;
    border-radius: 5px;
    bottom: 2em;
    color: white;
    display: none;
    
    opacity: 0.6;
    padding: 0.5em;
    position: fixed;
    right: 0.5em;
    text-align: center;
    cursor: pointer;
    z-index: 30;
	font-size: 1.5em;
}


 /*accordian*/
            
            .ac_btn{
				background-color: #fff;
				color: #1C323F;
				padding: 1em;
				cursor: pointer;
				margin-top: 10px;
				border: #aaa 1px solid;
				box-shadow: 2px 2px 3px rgba(0,0,0,0.25);
            }
			.ac_btn h2{
				background-color: inherit;
				color: inherit;
				font-size: 1.5em;
				font-weight: inherit;
				margin: 0;
			}
			.ac_btn:hover, .ac_btn:focus{
				background-color: #ccc;				
}
            .ac_btn.open{
                background-color: #0E2547;
				color: #FFF;
            }
            
            
            .ac_collapsible{
                overflow: hidden;
                transition: max-height 0.5s ease 0s;
                max-height: 0px;
                box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
            }
            .ac_collapsible.open{
                max-height: 4000px;
            }
            
            .ac_collapsible .inside{
                padding: 1em;	
				font-size: 1em;
            }
