/* Use this file to override the original style rules.
This file will never be touched by any product upgrade process. */


/* The main area */
#container {

  /* change the general background color */
  /* background: #d5ded9; */

}

/* The header area */
#container #head {

  /* change the background color */
  /* background: #99b2b7; */

  /* change the color of the bottom line */
  /* border-bottom-color: #948c75; */

  /* this is needed to adjust the header height to the logo height
     in this case the header height (91px) equals the sum of the logo height
     and its top offset (74px + 17px), resulting in the logo being bottom aligned
     within the header area */
  /* height: 91px;  */

}

#container #head select {
  /* change the text color of the language selector */
  /* color: #D6D3D1; */
  /* change the background color for the language selector and its options */
  /* background: #404040; */
}


/* general appearance of links */
a, a:hover {

  /* color: #333; */

}

/* appearance of links on the footer area */
#container #footer a {

  /*
  color: #333;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: normal;
  */

}

/* style rules for regular buttons */
.btn, .btn.btn-action, .input-append .add-on {

  /*
  border-color: #7a6a53;
  background: #7a6a53;
  color: #fff;
  */

}

/* style rules for primary action buttons */
.btn.btn-primary {

    /*
    border-color: black;
    background: blue;
    color: white;
    */

}

/* style rules for disabled buttons */
.btn.disabled {

    /*
    border-color: black;
    background: grey;
    color: darkgrey;
    */

}

/* style rules for disabled buttons */
.btn.btn-danger {

    /*
    border-color: black;
    background: red;
    color: white;
    */

}

.btn:hover, .btn.btn-action:hover, .btn.btn-primary:hover,
.input-append .add-on:hover {

  /*
  background-position: inherit;
  background-color: #7a6a53;
  background-image: linear-gradient(center top , #7a6a53, #d9ceb2);
  background-image: -moz-linear-gradient(center top , #7a6a53, #d9ceb2);
  background-image: -o-linear-gradient(center top , #7a6a53, #d9ceb2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7a6a53), to(#d9ceb2));
  background-image: -webkit-linear-gradient(center top , #7a6a53, #d9ceb2);
  color: #fff;
  */

}

/* apperance of the upload progress bar */
.progress .bar {

  /*
  background-color: #948c75;
  background-image: linear-gradient(center top , #948c75, #d9ceb2);
  background-image: -moz-linear-gradient(center top , #948c75, #d9ceb2);
  background-image: -o-linear-gradient(center top , #948c75, #d9ceb2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#948c75), to(#d9ceb2));
  background-image: -webkit-linear-gradient(center top , #948c75, #d9ceb2);
  */

}