/* 
    Document   : jquery.external.jmpopups
    Created on : 1/04/1204
    Author     : rosy
    Description:
        Stylesheet para los popups.
*/

.myHiddenDiv {
    display:none;
}
.popup {
    background:white;
	color: #666;
    border-radius: 10px 10px;  /* CSS3  */
    -webkit-border-radius: 10px 10px;  /* Safari  */
    -moz-border-radius: 10px 10px;     /* Firefox */
    -ms-border-radius: 10px 10px;
    -khtml-border-radius: 10px 10px;
}
.popup-header {
    height:20px;
    padding:7px;
    background:#eee;
	color: #000;
    border-top-right-radius: 10px 10px;  /* CSS3  */
    border-top-left-radius: 10px 10px;  /* CSS3  */
    -webkit-border-top-right-radius: 10px 10px;  /* Safari  */
    -webkit-border-top-left-radius: 10px 10px;  /* Safari  */
    -moz-border-radius-topright: 10px 10px;     /* Firefox */
    -moz-border-radius-topleft: 10px 10px;     /* Firefox */
    -ms-border-radius-topleft: 10px 10px;
    -ms-border-radius-topright: 10px 10px;
    -khtml-border-radius-topleft:10px 10px;
    -khtml-border-radius-topright:10px 10px;
}
.popup-header h2 {
    margin:0;
    padding:0;
    font-family:Open Sans;
    font-size:13px;
    font-weight: bold;
    color:black;
    border-top-right-radius: 10px 10px;  /* CSS3  */
    border-top-left-radius: 10px 10px;  /* CSS3  */
    -webkit-border-top-right-radius: 10px 10px;  /* Safari  */
    -webkit-border-top-left-radius: 10px 10px;  /* Safari  */
    -moz-border-radius-topright: 10px 10px;     /* Firefox */
    -moz-border-radius-topleft: 10px 10px;     /* Firefox */
    -ms-border-radius-topleft: 10px 10px;
    -ms-border-radius-topright: 10px 10px;
    -khtml-border-radius-topleft:10px 10px;
    -khtml-border-radius-topright:10px 10px;
}
.popup-header .close-link {
    position: absolute;
    right: 10px;
    top:  8px;
    padding-left: 10px;
    font-size:11px;
}
.popup-body{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
	
}
.popup-body b{
    color: #666;
    padding:10px;
    border-radius: 10px 10px;  /* CSS3  */
    -webkit-border-radius: 10px 10px;  /* Safari  */
    -moz-border-radius: 10px 10px;     /* Firefox */
    -ms-border-radius: 10px 10px;
    -khtml-border-radius: 10px 10px;
}

/*Pop-up sin borde redondos*/
.popup-NB {
    background:#fff;
	border-bottom: 0px solid #C6CFE1;
}
.popup-header-NB {
    height:20px;
    padding:7px;
    background:#eee;
    text-align: center;
}
.popup-header-NB h2 {
    margin:0;
    padding:0;
    font-family:Open Sans;
    font-size:13px;
    font-weight: bold;
    color: white;
}
/*El ajuste de la cruz de cierre se hace dinamicamente ya sea por el attr style
dentro del html o por jquery solo para la clase heredada
.popup-header-NB .close-link
*/
.popup-header-NB .close-link {
    position: relative;
    left: 245px; 
    bottom: 25px;
    padding-left: 10px;
    font-size:11px;
}
.popup-body-NB{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
	border: 1px solid #C6CFE1;
	
}
.popup-body-NB b{
    color: #000;
    padding:10px;
}

/*paginador*/
#testTable {
width : 350px;
margin-left: auto;
margin-right: auto;
}

.tablePagination {
background-color: #FFF;
font-family:Open Sans;
font-size:13px;
font-weight: bold;
color: #666;
padding-top: 10px;
padding-bottom: 10px;
height: 20px
}

.tablePagination_paginater {
margin-left: auto;
margin-right: auto;
}

.tablePagination img {
padding: 0px 2px;
}

.tablePagination span b{
    padding: 0px 2px;
}

#tablePagination_perPage {
/*float: left;*/
}

#tablePagination_paginater {
/*float: right;*/
}

.shadow {
    box-shadow: 2px 2px 7px #219FD1;
    -webkit-box-shadow: 2px 2px 7px #219FD1;
    -moz-box-shadow: 2px 2px 7px #219FD1;
    -khtml-box-shadow: 2px 2px 7px #219FD1;
    -ms-filter: progid:DXImageTransform.Microsoft.Shadow( Strength=5, Direction=135, Color='#219FD1' );
}
