    /******************************************************************************************************************************/
    /* BASE STYLES ****************************************************************************************************************/
	.BlueLink
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        text-decoration: none;

		font-weight: 400;
        color: #060807;
		
		border-bottom: 2px solid #f9284b;
            
        -webkit-transition: color .2s, cursor .1s;
        transition: color .2s, cursor .1s;
    }

    .BlueLink:hover
    {
        text-decoration: none;

        color: #aaa;
		 
		border-bottom: 2px solid #aaa;

        cursor: pointer;

        -webkit-transition: color .2s, cursor .1s;
        transition: color .2s, cursor .1s;
    }
        
    H1
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 28px;
        line-height: 1.5;
        text-align: left;
		
        color: #363837;
    }

	H2
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 25px;
        line-height: 1.375;
        text-align: left;
		
        color: #363837;
    }

	H3
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 22px;
        text-align: left;
		
        color: #363837;
    }

	H4
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 20px;
        text-align: left;
		
        color: #363837;
    }

	H5
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 18px;
        text-align: left;
		
        color: #363837;
    }

	H6
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 100%;

        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 16.5px;
        text-align: left;
		
        color: #363837;
    }

	blockquote
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;

        width: 70%;

        margin: auto;
        
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        font-size: 22px;
        text-align: left;
		
        color: #727272;
    }

    .LargeQuote
    {
        -webkit-text-size-adjust: 102%;
        -moz-text-size-adjust: 102%;
        -ms-text-size-adjust: 102%;
        text-size-adjust: 102%;
        
        width: 80%; 
        align-self: center;

        margin: auto;
        margin-top: 40px;
        margin-bottom: 45px;
        
        font-family: lora;
        font-size: 28px;
        font-weight: 300;
        text-align: left;
        letter-spacing: .5px;
        line-height: 1.5;
        
        color: #141414;
    }


    /******************************************************************************************************************************/
    /* RESPONSIVE *****************************************************************************************************************/
    @media only screen and ( max-width: 930px )
    {
        blockquote
        {
            font-size: 24px;
        }

        .LargeQuote
        {
            width: 90%;
            
            font-size: 24px;
        }
    }

    @media only screen and ( max-width: 650px )
    {
        H1
        {
            font-size: 22px;
        }
        
        H2
        {
            font-size: 21px;
        }
    
        H3
        {
            font-size: 19px;
        }
    
        H4
        {
            font-size: 18px;
        }
    
        H5
        {
            font-size: 17px;
        }
    
        H6
        {
            font-size: 16.5px;
        }
    
        blockquote
        {
            font-size: 24px;
        }

        .LargeQuote
        {
            font-size: 20px;
        }
    }