﻿body
{
    font-family: 'Segoe UI';
    font-size: 12px;
}

.accordion-container
{
    margin-bottom: 12px;
}

.accordion-title
{
    cursor: pointer;
    padding: 15px 20px;
    background-image: url(images/accordion/up.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-position-x: 98%;
    padding-right: 8%;
    background-color: #eeeeee;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

.expanded
{
    background-image: url(images/accordion/down.jpg);
}

.accordion-content
{
    padding: 10px 20px;
    line-height: 16px;
}

.accordion-link
{
    cursor: pointer;
    padding: 5px 0px;
    text-align: right;
    text-decoration: underline;
}

.accordion-mask
{
    display: none;
    position: fixed;
    z-index: 9000;
    background-image: url(images/accordion/popup-mask.png);
    background-repeat: repeat;
    background-position: left top;
    top: 0px;
    left: 0px;
}

.accordion-popup
{
    /*width: 500px;*/
    max-width: 800px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    display: none;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
}

.accordion-popup-title
{
    border-radius: 4px;
    background-color: red;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.accordion-popup-close
{
    background-image: url(images/accordion/popup-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    width: 24px;
    height: 24px;
    float: right;
    cursor: pointer;
    margin-top: -5px;
    border-radius: 4px;
}

    .accordion-popup-close:hover
    {
        background-color: #777;
    }


.accordion-popup-content
{
    padding: 10px;
    overflow: auto;
    max-height: 450px;
    margin-top: 10px;
}


/* === Pop Up === */

.popup-container
{
    padding: 10px;
    background-color: #f2f2f2;
    width: 400px;
}

.popup-trigger
{
    cursor: pointer;
}

.popup-content
{
    display: none;
    z-index: 9999;
    position: fixed;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
}

.popup-title
{
    border-radius: 4px;
    background-color: red;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.popup-close
{
    background-image: url(images/accordion/popup-close.png);
    background-repeat: no-repeat;
    background-position: center center;
    /*background-color: transparent;*/
    width: 24px;
    height: 24px;
    float: right;
    cursor: pointer;
    /*margin-top: -5px;*/
    border-radius: 4px;
		/*baru*/
		background-color: red;
		position: absolute;
		top: 0px;
		right: 0px;
		margin-top: -10px;
		margin-right: -10px;
}

    .popup-close:hover
	{
        background-color: #777;
    }

.popup-text
{
    padding: 10px;
    margin-top: 10px;
}

.popup-mask
{
    display: none;
    position: fixed;
    z-index: 9000;
    background-image: url(images/accordion/popup-mask.png);
    background-color: transparent;
    background-repeat: repeat;
    background-position: left top;
    top: 0px;
    left: 0px;
}
