﻿/* Uni-Form by Dragan Babic  - http://dnevnikeklektika.com/ , http://draganbabic.com/ */ 
/* Some rights reserved - http://creativecommons.org/licenses/by-sa/2.5/ */
/* It is suggested not to edit this file directly, but rather the uni-form.css provided in the Uni-Form zip archive */

.curriculumForm{
  margin:0; padding:0;
  position:relative;
  width:100%;
  overflow:hidden;
}

  /* Some generals */
  .curriculumForm fieldset{
    border:none;
    margin:0; padding:0;
  }
    .curriculumForm fieldset legend{
      margin:0; padding:0;
    }

    .curriculumForm .ctrlHolder{ /* This is the main unit that contains our form elements */
      overflow:hidden;
      margin:0; padding:0;
      clear:both;
      width:92%;
    }

    .curriculumForm .buttonHolder{
      overflow:hidden;
      clear:both;
    }
      .curriculumForm .resetButton{
      }
      .curriculumForm .submitButton{
      }

    .curriculumForm .inlineLabel,
    .curriculumForm .inlineLabels .inlineLabel,
    .curriculumForm .blockLabels .inlineLabel{
      width:auto;
      float:none;
      margin:0 1em 0 0;
      display:inline;
    }
      .curriculumForm .inlineLabel input{
      }
    
    .curriculumForm .focused{ /* For highlighting the rows on input focus */
    }

    /* ########################################################################## */

    /* Styles for form controls where labels are in line with the input elements */
    /* Set the class of the parent (preferably to a fieldset) to .inlineLabels */
    .curriculumForm .inlineLabels .ctrlHolder{
    }
        .curriculumForm .inlineLabels label,
        .curriculumForm .inlineLabels .label{
          float:left;
          margin:.3em 2% 0 0; padding:0;
          line-height:100%;
          position:relative;
        }

        .curriculumForm .inlineLabels .textInput,
        .curriculumForm .inlineLabels .fileUpload{
          float:left;
        }
        .curriculumForm .inlineLabels .fileUpload{
        }
        
        .curriculumForm .inlineLabels .selectInput{
          float:left;
        }

        .curriculumForm .inlineLabels textarea{
          float:left;
        }

      .curriculumForm .inlineLabels .formHint{
        clear:both;
      }

        /* inlineLabels esthetics */
        .curriculumForm .inlineLabels .formHint strong{
        }


    /* ########################################################################## */

    /* Styles for form controls where labels are above the input elements */
    /* Set the class of the parent (preferably to a fieldset) to .blockLabels */
    .curriculumForm .blockLabels .ctrlHolder{
    }

      .curriculumForm .blockLabels label,
      .curriculumForm .blockLabels .label{
        display:block;
        float:none;
        margin:.3em 0; padding:0;
        line-height:100%;
        width:auto;
      }
      .curriculumForm .blockLabels .label{
        float:left;
        margin-right:3em;
      }

      .curriculumForm .blockLabels .inlineLabel{
        position:relative; top:.15em;
      }

      .curriculumForm .blockLabels .textInput,
      .curriculumForm .blockLabels .fileUpload{
        float:left;
      }
      .curriculumForm .blockLabels .fileUpload{
      }
      
      .curriculumForm .blockLabels .selectInput
      {
        display:block;
      }

      .curriculumForm .blockLabels textarea{
        float:left;
        display:block;
      }

      .curriculumForm .blockLabels .formHint{
        float:right;
        margin:0;
        clear:none;
      }

      /* blockLabels esthetics */
      .curriculumForm .blockLabels .ctrlHolder{
      }

      .curriculumForm .blockLabels .focused{
      }

    /* ########################################################################## */

    /* Focus pseudoclasses */
    .curriculumForm .ctrlHolder .textInput:focus{
    }
    .curriculumForm div.focused .textInput:focus{
    }
    .curriculumForm div.focused .formHint{
    }

    /* Required fields asterisk styling, use if needed */
    .curriculumForm label em,
    .curriculumForm .label em{
      display:block;
      position:absolute; left:100%;
      font-style:normal;
      font-weight:bold;
    }
    .curriculumForm .blockLabels label em,
    .curriculumForm .blockLabels .label em{
      position:static;
      display:inline;
    }

    /* ########################################################################## */

    /* Messages */
    .curriculumForm #errorMsg,
    .curriculumForm .error{
    }
      .curriculumForm #errorMsg dt,
      .curriculumForm #errorMsg h3{
      }
      .curriculumForm #errorMsg dd{
      }
        .curriculumForm #errorMsg ol{
        }
          .curriculumForm #errorMsg ol li{
          }
      .curriculumForm .errorField{
      }

    /* ########################################################################## */

    /* Add the following classes to your fieldsets (preferably) if you want columns */
    .curriculumForm .col{
      float:left;
    }
    .curriculumForm .columnLeft{
      float:left;
    }
    .curriculumForm .columnRight{
      float:right;
    }
    
/* Generals */
.curriculumForm fieldset{
	margin:20px;
	border: 1px solid #CCCCCC;
}
.curriculumForm fieldset legend{
  color:#000; /* Reset IE */
  font-weight:bold; 
  font-size:1.6em;
  padding:5px;  
}
.curriculumForm .ctrlHolder{ /* This is the main unit that contains our form elements */
  padding:7px; 
}
.curriculumForm .buttonHolder{
  text-align:right; /* Recommended */
}
.curriculumForm .focused{
  background:#FFFCDF;
  border:0px; 
}

/* .inlineLabels */
.curriculumForm .inlineLabels label,
.curriculumForm .inlineLabels .label{
  width:35%; /* Required property  45%*/
  font-size:1.4em;
	top: 0px;
	left: 0px;
}
.curriculumForm .inlineLabels .textInput,
.curriculumForm .inlineLabels .fileUpload{
  width:60%;  /* Required property */
}
.curriculumForm .inlineLabels .selectInput{
  width:60%; /* Required property */
}
.curriculumForm .inlineLabels textarea{
  width:62%; /* Required property */
  height:12em; 
}
.curriculumForm .inlineLabels .formHint{
  margin-top:0;
  margin-left:47%; 
}

/* .blockLabels */
.curriculumForm .blockLabels .textInput,
.curriculumForm .blockLabels .fileUpload{
  width:53%; /* Required property */
}

.curriculumForm .blockLabels .selectInput{
  display:block;
  width:53.5%; /* Required property */
}
.curriculumForm .blockLabels textarea{
  width:61%; /* Required property */
  height:12em; 
}
.curriculumForm .blockLabels .formHint{
  width:45%; /* Required property */
}

/* Columns */
.curriculumForm .col{
  width:47.9%; /* Required property */
  margin:0 2% 0 0; 
}
.curriculumForm .columnLeft{
  width:49%; /* Required property */
}
.curriculumForm .columnRight{
  width:49%; /* Required property */
}

/* Messages */
.curriculumForm #errorMsg{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
  margin:0 0 1em 0; padding:1em;
}
.curriculumForm .error{
  background:#ffdfdf;
  border:1px solid #df7d7d; border-width:1px 0;
}
  .curriculumForm #errorMsg dt,
  .curriculumForm #errorMsg h3{
    margin:0 0 .5em 0;
    font-size:110%;
    line-height:100%;
    font-weight:bold;
  }
  .curriculumForm #errorMsg dd{
    margin:0; padding:0;
  }
    .curriculumForm #errorMsg ol{
      margin:0; padding:0;
    }
      .curriculumForm #errorMsg ol li{
        margin:0; padding:2px;
        list-style-position:inside;
        border-bottom:1px dotted #df7d7d;
        position:relative;
      }
    .curriculumForm .errorField{
      color:#af4c4c;
      margin:0 0 6px 0; padding:4px;
      background:#ffbfbf;
    }
    
.contenedor_2col_l_CWEB {width:100%; margin:5px; }
.bloque_3col_a_CWEB	{width:100%; height:6px;   background: url(http://www.gsc.es/imagenes/fondo_3col_a.png) no-repeat; font-size: 0px; line-height: 0px;}
.bloque_3col_b_CWEB	{width:100%; background: url(http://www.gsc.es/imagenes/fondo_3col_b.png) repeat-y;}
.contenido_2col_l_CWEB {
	padding:5px 10px 5px 10px;
}
.bloque_3col_c_CWEB	{width:100%; height:6px; background: url(http://www.gsc.es/imagenes/fondo_3col_c.png) no-repeat;}

.curriculumForm .inlineLabels .textInputCweb,
.curriculumForm .inlineLabels .fileUpload{
  width:16%;  /* Required property */
}

.curriculumForm .inlineLabels .radioButton {
	width:20%;  /* Required property */
}