*{
  text-decoration:none
}

body {
    font-family: 'lato', sans-serif;
}
nav {
    background: #FFFFFF;
    position: relative;
    margin: 0 auto;
	font-family: 'lato', sans-serif;
}

#flexmenu{
  display: flex;
  flex-flow: row wrap;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 3px #efefef;
  font-family: 'lato', sans-serif;
}
.logo {
    z-index: 123;
    padding: 10px;
    font: 18px 'Roboto';
    color: #FFF;
    flex-grow: 1;
    flex-shrink: 1;
}
.logo a {
    color: #3f51b5;
}

#main-menu{
  align-self: flex-end; 
  font-family: 'lato', sans-serif;
}
/* keep the drop-downs from being hidden by content wrappers etc */
.sub-menu {
  z-index: 1234;
}

#flexmenu ul ul li a:hover {
  color: #FF0000;
  background-color:#FFFFFF;
}

/* General Menu Styling */
#flexmenu li,
#flexmenu li a{
    border: 0;
    list-style: none;
    line-height: 1;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    transition: all ease-in-out .3s;
}

#flexmenu ul li a {
    padding: 17px;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #3f51b5;
    font-weight: 700;
}

#flexmenu ul li.has-sub > a {
    padding-right: 30px;
}
/* Drop icon */
#flexmenu ul li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #3f51b5;
    content: '';
}
#flexmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #3f51b5;
    content: '';
}
#flexmenu > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #3f51b5;
    transition: all .25s ease;
}
#flexmenu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
#flexmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #3f51b5;
    content: '';
    transition: all .3s ease;
}
#flexmenu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
#flexmenu ul ul li.has-sub:hover,
#flexmenu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff;
}
/* Submenu default states, removed by hover gives the animation */
#flexmenu ul ul {
    position: absolute;
    left: -9999px;
}
#flexmenu li:hover > ul {
    left: auto;
}
#flexmenu ul ul li {
    height: 0;
    background: #3f51b5;
    transition: all .25s ease
}
#flexmenu li:hover > ul > li {
    height: 35px;
}
/* tertiary menu */
#flexmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}
#flexmenu ul ul li a {
    padding: 11px 15px;
    width: 170px;
    font-size: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
}
#flexmenu ul ul li a:hover {
    color: #3f51b5;
}


@media screen and (max-width: 768px) {
  /* Center the logo and remove the bar */
    .logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
        text-align: center;
        padding: 10px 0 0 0;
    }
  
  /* Hamburger */
    .button {
        background: #751CEC;
        width: 60px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 10000;
    }
    .button:after {
        position: absolute;
        top: 22px;
        right: 20px;
        display: block;
        height: 4px;
        width: 20px;
        border-top: 2px solid #dddddd;
        border-bottom: 2px solid #dddddd;
        content: '';
    }
    .button:before {
        transition: all .3s ease;
        position: absolute;
        top: 16px;
        right: 20px;
        display: block;
        height: 2px;
        width: 20px;
        background: #ddd;
        content: '';
    }
  /* Turn it into an X when open */
    .button.menu-opened{
      background: #2e1f62;
    }
    .button.menu-opened:after {
        transition: all .3s ease;    
        top: 23px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        transform: rotate(45deg);
    }
    .button.menu-opened:before {
        top: 23px;
        background: #fff;
        width: 19px;
        transform: rotate(-45deg);
    }
  /* reset horizontal styles */
    #flexmenu ul {
        display: none;
    }
    #flexmenu ul li,
    #flexmenu ul li a,
    #flexmenu ul ul li a{
        width: 100%;
    }

    #flexmenu ul ul li,
    #flexmenu li:hover > ul > li {
        height: auto;  
    }
    #flexmenu ul ul li a {
        padding-left: 25px;
    }
    #flexmenu ul ul ul li a {
        padding-left: 35px;
    }

    #flexmenu ul ul,
    #flexmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
    }
    #flexmenu ul ul ul li.active a {
        border-left: none;
    }
    #flexmenu > ul > li.has-sub > ul > li.focus > a,
    #flexmenu > ul ul > li.has-sub > ul > li.focus > a {
        background: #262626;
        transition: all .3s ease;
    }
  /* remove cross when menu item is toggled */
    #flexmenu > ul > li.has-sub > a:after,
    #flexmenu > ul > li.has-sub > a:before,
    #flexmenu ul ul > li.has-sub > a:after,
    #flexmenu ul ul > li.has-sub > a:before {
        display: none;
    }

  /* submenu toggles */
    #flexmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #444;
        height: 46px;
        width: 46px;
        cursor: pointer;
    }
    #flexmenu ul ul .submenu-button {
        height: 34px;
        width: 34px;
    }
    #flexmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #ddd;
        content: '';
    }
    #flexmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px;
    }
    #flexmenu .submenu-button.submenu-opened:after {
        background: #fff;
    }
    #flexmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #ddd;
        content: ''
    }
    #flexmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px;
    }
    #flexmenu .submenu-button.submenu-opened:before {
        display: none;
    }   
  
  .note{
    font-size: 3vw;
  }
}

.index body { 
	/* background-image: url('/Stock/img/bg.jpg'); */
	border: 0px solid black;
	border-radius: 3px;
	width: 80%;
	margin: auto;
	margin-top: 10%;
	/*box-shadow: 0 0 5px #8e8e8e;*/
}

.login {
  background: #eceeee;
  border: 1px solid #42464b;
  border-radius: 6px;
  height: 257px;
  margin: 20px auto 0;
  width: 298px;
}

.loc {
  background: transparent;
  border: 2px solid #3f51b5;
  border-radius: 6px;
  margin: 20px auto 0;
  width: 30%;
}

.loc input[type="select"]{
	background: #3f51b5;
	border: 0px solid #3f51b5;
	border-radius: 3px;
	box-shadow: 0 1px #fff;
	box-sizing: border-box;
	color: #696969;
	height: 45px;
	padding-left: 37px;
	transition: box-shadow 0.3s;
	width: 100px;
	position:relative;
}

.loc input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #31524d, 0px 5px 3px #999;
}

.loc input[type="submit"] {
  width:240px;
  height:35px;
  display:block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:16px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #3f51b5;
  padding-top:6px;
  margin: 29px 0 0 29px;
  position:relative;
  cursor:pointer;
  border: none;  
  background-color: #3f51b5;
  background-image: linear-gradient(top,#3db0a6,#3111);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius:5px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #497a78, 0px 10px 5px #999;
}

.bienv {
  color: #3f51b5;
  height: 257px;
  margin: 20px auto 0;
  width: 298px;
}

.bienv2 {
  color: #FF0000;
  height: 200px;
  margin: 20px auto 0;
  width: 298px;
}

.login h1 {
  background-image: linear-gradient(top, #f1f3f3, #d4dae0);
  border-bottom: 1px solid #a6abaf;
  border-radius: 6px 6px 0 0;
  box-sizing: border-box;
  color: #727678;
  display: block;
  height: 43px;
  font: 600 14px/1 'Open Sans', sans-serif;
  padding-top: 14px;
  margin: 0;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.2), 0 1px 0 #fff;
}

.login input[type="password"], .login input[type="text"] {
	background: url('http://i.minus.com/ibhqW9Buanohx2.png') center left no-repeat, linear-gradient(top, #d6d7d7, #dee0e0);
	border: 1px solid #a1a3a3;
	border-radius: 4px;
	box-shadow: 0 1px #fff;
	box-sizing: border-box;
	color: #696969;
	height: 39px;
	margin: 31px 0 0 29px;
	padding-left: 37px;
	transition: box-shadow 0.3s;
	width: 240px;
}

.ventas input[type="password"], .ventas input[type="text"] .ventas input[type="select"] {
	border: 1px solid #a1a3a3;
	border-radius: 4px;
	box-shadow: 0 1px #fff;
	box-sizing: border-box;
	color: #696969;
	transition: box-shadow 0.3s;
  
}

.ventas input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #3f51b5, 0px 5px 3px #999;
}

.ventas input[type="submit"] {
  height:25px;
  line-height:25px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:12px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #style="width: 100%;";
  position:relative;
  cursor:pointer;
  border: solid 0px;  
  background-color: #3f51b5;
  border-radius: 3px;
  vertical-align: middle;
}

.ventas input[type="button"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #3f51b5, 0px 5px 3px #999;
}

.ventas input[type="button"] {
  height:25px;
  line-height:25px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:12px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #style="width: 100%;";
  position:relative;
  cursor:pointer;
  border: solid 0px;  
  background-color: #3f51b5;
  border-radius: 3px;
  vertical-align: middle;
}

.ventasFin input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #3f51b5, 0px 5px 3px #999;
}

.ventasFin input[type="submit"] {
  height:45px;
  line-height:45px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:12px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  position:relative;
  cursor:pointer;
  border: solid 0px;  
  background-color: #FF0000;
  border-radius: 3px;
  vertical-align: middle;
}

#mytitle {
	font-family:Arial, "Helvetica", sans-serif;
	font-size:25px;	font-weight:bold;
	text-align: center;
	color: 3f51b5;
}

.login input[type="password"]:focus, .login input[type="text"]:focus {
  box-shadow: 0 0 4px 1px rgba(55, 166, 155, 0.3);
  outline: 0;
}

.shadow {
  background: #000;
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 0 20px 10px #000;
  height: 12px;
  margin: 30px auto;
  opacity: 0.2;
  width: 270px;
}

.login input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #31524d, 0px 5px 3px #999;
}

.login input[type="submit"] {
  width:240px;
  height:35px;
  display:block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:16px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #3f51b5;
  padding-top:6px;
  margin: 29px 0 0 29px;
  position:relative;
  cursor:pointer;
  border: none;  
  background-color: #3f51b5;
  background-image: linear-gradient(top,#3db0a6,#3111);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius:5px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #497a78, 0px 10px 5px #999;
}

#desc {
  width:150px;
  height:35px;
  line-height:35px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:12px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #3f51b5;
  position:relative;
  cursor:pointer;
  border: solid 0px;  
  background-color: #3f51b5;
  border-radius: 5px;
  vertical-align: middle;
}

.disclaimer {
	font-size: 8px;
	color: #FF0000;
}
footer {
	font-size: 8px;
	color: #FF0000;
}

@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,700,900');

$anim-text-offset: 1em;

#exitNotice {
	font-family:Arial, "Helvetica", sans-serif;
	font-size:25px;	font-weight:bold;
	color: #09bc00;
}

#preVentaInfo {
	height:100%;
	border:0px solid;
}

.Ticket {
    background-image:url("/Stock/ticket.png");
    background-repeat:no-repeat;
    background-size: cover;
	width:100%;
	height:auto;
}

.altas input[type="password"], .altas input[type="text"] .altas input[type="select"] {
	border: 1px solid #a1a3a3;
	border-radius: 4px;
	box-shadow: 0 1px #fff;
	box-sizing: border-box;
	color: #696969;
	transition: box-shadow 0.3s;
  
}

.altas input[type="submit"]:active {
  top:3px;
  box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #3f51b5, 0px 5px 3px #999;
}

.altas input[type="submit"] {
  height:25px;
  line-height:25px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:12px;
  font-weight:bold;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  text-shadow:1px 1px 0px #3f51b5;
  position:relative;
  cursor:pointer;
  border: solid 0px;  
  background-color: #3f51b5;
  border-radius: 3px;
  vertical-align: middle;
}

.inputDatePicker {
		border: 1px solid black;
		background: rgba(255, 255, 255, 1);
		border-radius: 2px;
		text-align: center;
		width: 5vw;
		height: 25px;
	}

.login2 input[type="password"], .login2 input[type="text"] {
	border: 2px solid #000000;
	color: #000000;
	height: 35px;
	vertical-align: middle;
	width: 100%;
}


.login2 input[type="submit"] {
  width:35px;
  height:35px;
  line-height:28px;
  display:inline-block;
  font-family:Arial, "Helvetica", sans-serif;
  font-size:35px;
  font-weight:bold;
  color:#000000;
  text-decoration:none;
  text-transform:uppercase;
  text-align:center;
  position:relative;
  cursor:pointer;
  border: 2px solid #000000;  
  background-color: transparent;
}

.menuTile a {
	height: 150px;
	width: 150px;
}

.menuTile {
	height: 120px;
	width: 120px;
	border: 5px solid transparent;
}

.menuTile:hover {
	/*height: 121px;
	width: 121px;*/
	box-shadow: 0 0 11px rgba(33,33,33,.5); 
}

.menuTile[data]:hover:after {
  content: attr(data);
  padding: 4px 8px;
  font-family:Arial, "Helvetica", sans-serif;
  color: rgba(255,255,255,1);
  position: absolute;
  top: auto;
  text-align: center;
  white-space: nowrap;
  z-index: auto;
  border-radius: 1px ;
  background: rgba(63,81,181,1);
  text-transform:uppercase;
  font-weight:bold;
}

.textareas {
	width: 80%;
	margin: 10px;
}

/*IMAGE UPLOAD*/

.container{width: 100%;}
.user-box {
    width: 200px;
    border-radius: 0 0 3px 3px;
    padding: 10px;
    position: relative;
}
.user-box .name {
    word-break: break-all;
    padding: 10px 10px 10px 10px;
    background: #EEEEEE;
    text-align: center;
    font-size: 20px;
}
.user-box form{display: inline;}
.user-box .name h4{margin: 0;}
.user-box img#imagePreview{width: 80%;}

.editLink {
    position:absolute;
    top:28px;
    right:10px;
    opacity:0;
    transition: all 0.3s ease-in-out 0s;
    -mox-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    background:rgba(255,255,255,0.2);
}
.img-relative:hover .editLink{opacity:1;}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(255,255,255,0.7);
}
.overlay-content {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
}
.uploadProcess img{
    max-width: 207px;
    border: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    display: inline;
}

/*//////////////TABBED ORDEN///////////////*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

/**,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}html,body{height:100vh;}body{display:flex;align-items:center;justify-content:center;padding:40px;font:14px/1.5 'Open Sans',sans-serif;color:#345;background:#f0f2f4;}
*/

.tabs {
  max-width: 90%;
  padding: 40px;
  border: 1px solid rgba(0,0,0,.2);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.tabsVentas {
  max-width: 90%;
  padding: 5px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.tabSection {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #abc;
}

.tabbed {
  display: none;
}

.tabbedLabel {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #abc;
  border: 1px solid transparent;
}

.tabbedLabel:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}

label[for*='1']:before { content: '\f00c'; }
label[for*='2']:before { content: '\f155'; }
label[for*='3']:before { content: '\f02a'; }
label[for*='4']:before { content: '\f03a'; }
label[for*='5']:before { content: '\f0d6'; }
label[for*='6']:before { content: '\f013'; }

.tabbedLabel:hover {
  color: #789;
  cursor: pointer;
}

.tabbed:checked + .tabbedLabel {
  color: #3f51b5;
  border: 1px solid #abc;
  border-top: 2px solid #3f51b5;
  border-bottom: 1px solid #fff;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab6:checked ~ #content6 {
  display: block;
}
#tab3:checked ~ #content1,
#tab4:checked ~ #content2 {
  display: block;
}
#tab5:checked ~ #content4 {
  display: block;
}

.delete {
	border: 0px solid red; 
	background-color:transparent;
}
.delete:hover {
	zoom: 1.1;
	cursor:pointer;
}

/* HIDE RADIO */
.metodoRad { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
.metodo:hover {
  cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked + img {
  outline: 2px solid #3f51b5;
  border-radius: 5px;
  opacity: 1;
}
[type=radio]:not(:checked) + img {
	opacity: 0.5;
}

@media screen and (max-width: 800px) {
  .tabbedLabel {
    font-size: 0;
  }
  .tabbedLabel:before {
    margin: 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .tabbedLabel {
    padding: 15px;
  }
}

@media print
{    
    .noprint {
        display: none !important;
    }
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

.ui-menu-item {
	background-color:#d6e0f5;
	height: auto;
    width: 20vw;
    border: 0px;
    border-radius: 2px;
    font-size: 1em;
    margin: 5px;
	list-style-type: none;
	
}

.ui-menu-item:hover {
	cursor:pointer;
}

.adjuntosTable {
	border: 2px solid #3f51b5;
	background-color: white;
	width: 80vw!important;
	border-collapse: collapse;
	table-layout: fixed;
}


#adjuntoForm { 
  display: none;
  border: 6px solid #3f51b5; 
  padding: 2em;
  width: 60%;
  text-align: center;
  background: rgba(244, 244, 244, 0.9);
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%)
}

.popups input, textarea, select { 
  font-family: inherit; 
  text-transform: inherit; 
  font-size: inherit;
  border: 1px solid gray;
  display: block; 
  width: 280px; 
  padding: .4em;
    
}

.formBtn { 
  width: 140px;
  display: inline-block;
  background: #3f51b5;
  color: #fff;
  font-weight: 100;
  font-size: 1.2em;
  border: none;
  height: 30px;
}

.presupuestoHeaderTable {
	width: 80vw;
    background-color: white;
    border: 1px solid #3f51b5;
    font-size: 1.5em;
	table-layout: fixed;
	border-collapse: collapse;
}

.presupuestoHeaderTR {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background-color: #3f51b5;
	color: white;
	border: 1px solid #3f51b5;
	border-collapse: collapse;
	text-shadow: black 1px 1px;
}

.adjuntosTR {
	border: 1px solid #3f51b5;
	border-collapse: collapse;
}

.presupuestoHeaderTD {
	text-align: left;
	background-color: #3f51b5;
	color: white;
	border: 1px solid #3f51b5;
	border-collapse: collapse;
	text-shadow: black 1px 1px;
	font-weight:bold;
}
/*///////////////////////////////////////////////////////////*/