﻿@charset "ISO-8859-1";
/*
    =========================================================================
    Software: forms_reports.css
    Description: Estilo CSS para el módulo para crear formularios y reportes
                 forms_reports.js
    Contact: http://www.portal24x7.com
    Copyright (c) 2014, Dante Cortés
    
    La documentación de la clase la puede consultar en 
    http://www.portal24x7.com/
    
		=========================================================================
*/

/* ==================== CUERPO GENERAL ==================== */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
		/* overflow: hidden; */
		/* background-color: #ffffff; */
		font-family: Tahoma, Verdana, Segoe, sans-serif;
		font-size: 12px;
		color: #000000;
		-webkit-user-select: none;
		-moz-user-select: none;
		-khtml-user-select: none;
		-ms-user-select:none;
		}

a:link {
		text-decoration: bold;
		color: #000000;
		}

a:visited {
		text-decoration: bold;
		color: #000000;
		}

a:hover {
		text-decoration: bold underline;
		color: #000000;
		}

a:active {
		text-decoration: bold;
		}

a:focus {
		text-decoration: bold;
		}
