/* HTML Code */
html
{
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;
}


/* Body Code */
body
{
    margin: 0;
    padding: 0;
    min-width: 0px;
    max-width: 100%;
    height: 100%;
    background-image: url(/IMAGES/3.jpg);
    background-position: center;
    background-size: cover 100%;
    background-repeat: no-repeat;
    background-color: #fff;
}


/* Header Code */
header
{
    background-image: url(/IMAGES/header_gradient.jpg);
    background-repeat: repeat-x;
    background-color: #000;
    height: 144px;
    min-width: 0px;
    width: 100%;
}

.header_logo
{
    width: 33%;
    height: 60%;
    margin-top: 2%;
    margin-left: 2%;
    background-image: url(/IMAGES/header_logo.png);
    background-repeat: no-repeat;
    float: left;
}

.header_animcontain
{
    text-align: left;
    padding-top: 25px;
    float: left;
   /* min-width: 400px;*/
}

.header_menu
{
    padding-top: 22px;
    float: right;
    width: 385px;
    text-align: left;
    color: #fff;
    font-family: "Arial";
}


.header_menu a:link
{
    color: #fff;
    text-decoration: none;
}

.header_menu a:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}

.header_menu a:active
{
    color: #c772fe;
    text-decoration: none;
}

.header_menu a:visited
{
    color: #fff;
    text-decoration: none;
}

.header_menu a:visited:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}


.header_menu_item_standard
{
    margin-top: 30px;
    padding-left: 20px;
    width: 20%;
    display: inline-block;
}

.header_menu_item_standard:hover
{
    cursor: pointer;
    color: #c772fe;
}

.header_menu_item_dropdown
{
    top: 0px;
    padding-left: 20px;
    width: 30%;
    height: 30px;
    display: inline-block;
    position: relative;
}

.header_menu_item_dropdown:hover
{
    cursor: pointer;
    color: #c772fe;
}

.header_menu_item_dropdown_background
{
    color: #fff;
    background-color: #484151;
    position:absolute;
    z-index: 99;
    top: 30px;
    left: -4px;
    width: 150px;
    height: 190px;
    opacity: 0.95;
    display: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header_menu_item_dropdown_triangle
{
    height: 10px;
    width: 10px;
    margin-left: 30px;
    display: inline-block;
    background-image: url(/IMAGES/menu_triangle.png);
    background-repeat: no-repeat;
    background-position: right;
}

.header_menu_item_dropdown:hover .header_menu_item_dropdown_background
{
    display:block;
    -webkit-animation-name: menu_fadein ; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    animation-name: menu_fadein ;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    cursor: pointer;
}
    
.header_menu_item_dropdown:hover .header_menu_item_dropdown_triangle
{
    background-image: url(/IMAGES/menu_triangle.png);
    -webkit-animation-name: menu_triangle_spin ; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards;
    animation-name: menu_triangle_spin ;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    cursor: pointer;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes menu_fadein {
    from {
        opacity: 0;
        height: 0px;
    }
    to {
        opacity: 0.95;
        height: 190px;
    }
}

/* Standard syntax */
@keyframes menu_fadein {
    from {opacity: 0;
        height: 0px;
    }
    to {opacity: 0.95;
        height: 190px;
    }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes menu_triangle_spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(-90deg);}
}

/* Standard syntax */
@keyframes menu_triangle_spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(-90deg);}
}

.header_menu_line
{
    padding-top: 14px;
    position: absolute;
    width: 1px;
    height: 60px;
    background-color: #141416;
    display: inline-block;
}

.header_menu_submenu_item
{
    text-align: center;
    padding-top: 10px;
    height: 18%;
    width: 100%;
    font-size: 17px;
}

.header_menu_submenu_item:hover
{
    background-color: #fff;
    opacity: 0.5;
    color: #5f009e;
    cursor: pointer;
}

.back_button
{
    border: 1px solid #666;
    width: 90px;
    height: 22px;
    padding-top: 4px;
    background-color: #606;
    font-family: "Arial";
    font-weight: bold;
    font-size: 11pt;
    color: #ddd;
    position: absolute;
    top: 0px;
    cursor: pointer;
    opacity: 0.3;
    z-index: 1;
    border-bottom-right-radius: 15px;
}

.back_button:hover
{
    opacity: 0.7;
}

.back_button_dark
{
    border: 1px solid #666;
    width: 90px;
    height: 22px;
    padding-top: 4px;
    background-color: #000;
    font-family: "Arial";
    font-weight: bold;
    font-size: 11pt;
    color: #ddd;
    position: absolute;
    top: 0px;
    cursor: pointer;
    opacity: 0.3;
    z-index: 1;
    border-bottom-right-radius: 15px;
}

.back_button_dark:hover
{
    opacity: 0.5;
}


/* Main Body Code */
a:link
{
    color: #717171;
    text-decoration: none;
}

a:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}

a:active
{
    color: #c772fe;
    text-decoration: none;
}

a:visited
{
    color: #717171;
    text-decoration: none;
}

a:visited:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}

main
{
    min-width: 0px;
    min-height: 690px;
    width: 100%;
    position: absolute;
    background-image: url(/IMAGES/3.jpg);
    background-size: cover;
    z-index: 0;
    top: 143px;
    bottom: 0px;
    background-color: #aaa;
    overflow: hidden;
}

.main_leftside
{
    height: 88.5%;
    width: 425px;
}

.main_leftside_colorbar
{
    float: left;
    width: 35px;
    height: 100%;
    background-color: #6d3d8b;
    opacity: 0.95;
}

.main_leftside_infocontain
{
    float: right;
    width: 390px;
}

.main_leftside_infocontain_E1
{
    height: 250px;
    background-color: #0d0911;
    opacity: 0.95;
}

.main_leftside_infocontain_Eparagraph_headertext
{
    font-weight: 600;
    font-size: 14pt;
    color: #c772fe;
}

.main_leftside_infocontain_Eparagraph_text
{
    font-family: "Arial";
    font-size: 12pt;
    text-align: left;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
}

.main_leftside_infocontain_EH
{
    height: 75px;
    background-color: #70a;
    opacity: 0.85;
    padding-bottom: 2px;
}

.main_leftside_infocontain_EH:hover
{
    background-color: #c0f;
    cursor: pointer;
}

.main_leftside_infocontain_E2
{
    height: 75px;
    background-color: #0d0911;
    opacity: 0.85;
    background-image: url(/IMAGES/E2.png);
    background-repeat: no-repeat;
    padding-bottom: 2px;
}

.main_leftside_infocontain_E2:hover
{
    background-image: url(/IMAGES/E2_hi.png);
    cursor: pointer;
}
    
.main_leftside_infocontain_E3
{
    height: 75px;
    background-color: #0d0911;
    opacity: 0.85;
    background-image: url(/IMAGES/E3.png);
    background-repeat: no-repeat;
    padding-bottom: 2px;
}

.main_leftside_infocontain_E3:hover
{
    background-image: url(/IMAGES/E3_hi.png);
    cursor: pointer;
}

.main_leftside_infocontain_E4
{
    height: 75px;
    background-color: #0d0911;
    opacity: 0.85;
    background-image: url(/IMAGES/E4.png);
    border-bottom-right-radius: 150px;
}

.main_leftside_infocontain_E4:hover
{
    background-image: url(/IMAGES/E4_hi.png);
    cursor: pointer;
}

.main_leftside_infocontain_Esingle_text
{
    font-family: "Arial";
    font-size: 15pt;
    text-align: left;
    color: #fff;
    height: 65%;
    padding-left: 30px;
    padding-top: 25px;
}

.main_leftside_infocontain_E5
{
    height: 100px;
    background-color: #0d0911;
    opacity: 0.95;
    border-bottom-right-radius: 150px;
}


/* Footer Code */
footer
{
    position:absolute;
    bottom: 0px;
    min-width: 0px;
    width: 100%;
    height: 100px;
    background-color: #fff;
}

.footer_topcontain
{
    padding-top: 10px;
    width: 100%;
    text-align: left;
}

.footer_topcontain_a
{
    width: 40.2%;
    display: inline-block;
}

.footer_topcontain_legal
{
   float: left;
    padding-left: 20px;
    font-family: "Arial";
    font-size: 10pt;
    text-align: left;
    color: #aaa;
}

.footer_topcontain_legal a:link
{
    color: #aaa;
    text-decoration: none;
}

.footer_topcontain_legal a:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}

.footer_topcontain_legal a:active
{
    color: #c772fe;
    text-decoration: none;
}

.footer_topcontain_legal a:visited
{
    color: #aaa;
    text-decoration: none;
}

.footer_topcontain_legal a:visited:hover
{
    color: #c772fe;
    text-decoration: none;
    cursor: pointer;
}

.footer_topcontain_b
{
    display: inline-block;
    width: 49%;
    text-align: left;
}

.footer_topcontain_copyright
{
    display: inline;
    font-family: "Arial";
    font-size: 8pt;
    color: #bbb;
}

.footer_bottomcontain
{    
    width: 100%;
    height: 50%;
    text-align: left;
}

.footer_bottomcontain_a
{   
    display: inline-block;
    width: 37%;
}

.footer_bottomcontain_b
{    
    display: inline-block;
    width: 49%;
    text-align: center;
    margin: 0 auto;
    vertical-align: top;
}

.footer_bottomcontain_address
{
    float: left;
    font-family: "Arial";
    font-size: 10pt;
    text-align: left;
    width: 270px;
    color: #717171;
    padding-top: 10px;
    padding-left: 20px;
}

.footer_bottomcontain_number
{
    padding-left: 20px;
    padding-top: 0px;
    width: 270px;
    float: left;
    font-family: "Arial";
    font-size: 14pt;
    font-weight: 800;
    color: #717171;
}

.footer_bottomcontain_menu
{
    width: 350px;
    display: inline;
}

.footer_bottomcontain_menu_text
{
    float: left;
    font-family: "Arial";
    font-size: 10pt;
    text-align: left;
    color: #717171;
    padding-top: 20px;
    margin-right: 2%;
}

.footer_bottomcontain_menu_text:hover
{
    cursor: pointer;
}

.footer_bottomcontain_social
{
    display: inline-block;
    padding-left: 1%;
    width: 44px;
    height: 44px;
}

.social_hold
{
    margin-left: 20px;
    width: 100px;
    display: inline-block;
}


/* Mobile Site Code */
@media only screen and (max-width: 1100px) {
    header
    {
        background-color: #000;
    }
    
    .header_logo
{
    width: 100%;
    height: 100%;
    background-image: url(/IMAGES/header_logo.png);
    background-repeat: no-repeat;
    background-position: 50% 30%;
    float: none;
    margin-top: 0%;
    margin-left: 0%;
  
}

    body
    {
        min-width: 0%;
        height: 100%;
        background-color: #fff;
    }
    
    .header_animcontain
    {
        display: none;
    }
    
    header
    {
        min-width: 0px;
    }
    
    .header_menu
    {
        display: block;
        position: relative;
        z-index: 99;
        width: 100%;
        opacity: .85;
        background-color: #000;
    }
    
    .header_menu_item_dropdown_triangle
{
    width: 100%;
    margin-left: 30px;
    display: none;
    background-image: none;
    background-repeat: no-repeat;
}
    
    .header_menu_item_standard
{
    display: block;
    margin-top: 0px;
    padding-left: 0px;
    width: 100%;
    text-align: center;
    padding-bottom: 0px;
    font-size: 25px;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
}

.header_menu_item_dropdown
{
    height: 0px;
    display: block;
    margin-top: 0px;
    padding-left: 0px;
    width: 100%;
    text-align: center;
    padding-bottom: 3px;
    font-size: 0px;
}
    
    .header_menu_submenu_item
{
    text-transform: uppercase;
    text-align: center;
    padding-top: 0px;
    width: 100%;
    background-color: #000;
    font-size: 25px;
    border-bottom: 1px solid #999;
}

.header_menu_submenu_item:hover
{
    background-color: #000;
    opacity: 1;
    color: #5f009e;
    cursor: pointer;
}
    
    .header_menu_item_dropdown_background
{
    color: #fff;
    background-color: #000;
    position:relative;
    z-index: 99;
    top: 38px;
    left: 0px;
    width: 100%;
    opacity: 1;
    display: inline-block;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.header_menu_item_dropdown:hover .header_menu_item_dropdown_background
{
    background-color: #000;
    opacity: 1;
    display:block;
    -webkit-animation-name: none ; /* Safari 4.0 - 8.0 */
    animation-name: none;
    cursor: pointer;
}
    
    .header_menu_line
    {
        display: none;
    }
    
    .main_leftside
{
    display: none;
}
    
    main
    {
        min-width:0px;
    }
    
    .back_button
    {
        display: none;
    }
    
    .back_button_dark
    {
        display: none;
    }
    
    footer
    {
        min-width: 0px;
        height: 200px;
    }
    
    .footer_topcontain_a
{
    display: none;
}
    
    .footer_topcontain_b
{
    display: none;
}

.footer_topcontain_copyright
{
    display: block;
    font-family: "Arial";
    font-size: 8pt;
    color: #bbb;
}

.footer_bottomcontain
{    
    width: 100%;
    height: 100%;
    text-align: center;
}

.footer_bottomcontain_a
{   
    display: block;
    width: 100%;
}

.footer_bottomcontain_b
{    
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
    
.footer_bottomcontain_social
{
    margin: 0 auto;
    float: none;
    display: inline-block;
    padding-left: 0px;
    width: 44px;
    height: 44px;
}
    
    .footer_bottomcontain_address
{
    float: none;
    font-size: 15pt;
    text-align: center;
    width: 100%;
    color: #717171;
    padding-top: 10px;
    padding-left: 0px;
}

.footer_bottomcontain_number
{
    padding-left: 0%;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    float: left;
    font-family: "Arial";
    font-size: 17pt;
    font-weight: 800;
    color: #717171;
}

.footer_bottomcontain_menu
{
    width: 350px;
    display: none;
}   
}

@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
    header
    {
        background-color: #000;
    }
    
    .header_logo
    {
        width: 100%;
        height: 100%;
        background-position: 50% 50%;;
    }

    body
    {
        min-width: 0%;
        height: 100%;
        background-color: #fff;
    }
    
    .header_animcontain
    {
        display: none;
    }

}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
    header
    {
        background-color: #000;
    }
    
    .header_logo
    {
        width: 100%;
        height: 100%;
        background-position: 50% 50%;;
    }

    body
    {
        min-width: 0%;
        height: 100%;
        background-color: #fff;
    }
    
        .header_animcontain
    {
        display: none;
    }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
    header
    {
        background-color: #000;
    }
    
    .header_logo
    {
        width: 100%;
        height: 100%;
        background-position: 50% 50%;;
    }

    body
    {
        min-width: 0%;
        height: 100%;
        background-color: #fff;
    }
    
        .header_animcontain
    {
        display: none;
    }
}