/* =============================================================================
   Custom Font
   ========================================================================== */
@font-face{ font-family:ngwoff; src:url(../../../images/cmu/font/NanumGothic.woff) }
@font-face{ font-family:ngeot; src:url(../../../images/cmu/fontNanumGothic.eot) }

/* =============================================================================
   Reset - Adapted from bormalize.css http://github.com/necolas/normalize.css
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*
 * Removes border when inside 'a' element in IE6/7/8/9, FF3
 */
img {
  border: 0;
}

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

figure img{
  width:48px;
  height:48px;  
}
/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
* Addresses margins handled incorrectly in IE6/7
*/
body {
  margin: 0;
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal;
  /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
}

/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Gradient Bars */
.gradient-bar-blue, .btn.blue, .label {
  border-color: #238ed3 #1f7fbd #186292;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #48a5e1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #5eb0e5), color-stop(100%, #238ed3));
  background-image: -webkit-linear-gradient(top, #5eb0e5 20%, #238ed3 100%);
  background-image: -moz-linear-gradient(top, #5eb0e5 20%, #238ed3 100%);
  background-image: -ms-linear-gradient(top, #5eb0e5 20%, #238ed3 100%);
  background-image: -o-linear-gradient(top, #5eb0e5 20%, #238ed3 100%);
  background-image: linear-gradient(top, #5eb0e5 20%, #238ed3 100%);
}

.gradient-bar-red, .btn.red, .alert, .label.red {
  border-color: #c82123 #b21d1f #861618;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #df3d3f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #e35355), color-stop(100%, #c82123));
  background-image: -webkit-linear-gradient(top, #e35355 20%, #c82123 100%);
  background-image: -moz-linear-gradient(top, #e35355 20%, #c82123 100%);
  background-image: -ms-linear-gradient(top, #e35355 20%, #c82123 100%);
  background-image: -o-linear-gradient(top, #e35355 20%, #c82123 100%);
  background-image: linear-gradient(top, #e35355 20%, #c82123 100%);
}

.gradient-bar-green, .btn.green, .alert.notice, .label.green {
  border-color: #348d34 #2d7a2d #205520;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #42b242;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #50be50), color-stop(100%, #348d34));
  background-image: -webkit-linear-gradient(top, #50be50 20%, #348d34 100%);
  background-image: -moz-linear-gradient(top, #50be50 20%, #348d34 100%);
  background-image: -ms-linear-gradient(top, #50be50 20%, #348d34 100%);
  background-image: -o-linear-gradient(top, #50be50 20%, #348d34 100%);
  background-image: linear-gradient(top, #50be50 20%, #348d34 100%);
}

.gradient-bar-pink, .label.pink {
  border-color: #8d3289 #7a2b77 #551e52;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #b33fae;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #c04cbb), color-stop(100%, #8d3289));
  background-image: -webkit-linear-gradient(top, #c04cbb 20%, #8d3289 100%);
  background-image: -moz-linear-gradient(top, #c04cbb 20%, #8d3289 100%);
  background-image: -ms-linear-gradient(top, #c04cbb 20%, #8d3289 100%);
  background-image: -o-linear-gradient(top, #c04cbb 20%, #8d3289 100%);
  background-image: linear-gradient(top, #c04cbb 20%, #8d3289 100%);
}

.gradient-bar-purple, .label.purple {
  border-color: #613591 #552e7e #3c2159;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #7a43b6;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #8753c0), color-stop(100%, #613591));
  background-image: -webkit-linear-gradient(top, #8753c0 20%, #613591 100%);
  background-image: -moz-linear-gradient(top, #8753c0 20%, #613591 100%);
  background-image: -ms-linear-gradient(top, #8753c0 20%, #613591 100%);
  background-image: -o-linear-gradient(top, #8753c0 20%, #613591 100%);
  background-image: linear-gradient(top, #8753c0 20%, #613591 100%);
}

.gradient-bar-orange, .label.orange {
  border-color: #c67605 #ad6704 #7c4a03;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.4);
  background-color: #f89406;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fa9f1e), color-stop(100%, #c67605));
  background-image: -webkit-linear-gradient(top, #fa9f1e 20%, #c67605 100%);
  background-image: -moz-linear-gradient(top, #fa9f1e 20%, #c67605 100%);
  background-image: -ms-linear-gradient(top, #fa9f1e 20%, #c67605 100%);
  background-image: -o-linear-gradient(top, #fa9f1e 20%, #c67605 100%);
  background-image: linear-gradient(top, #fa9f1e 20%, #c67605 100%);
}

/* Misc */
.clearfix:before, .row:before, .login form:before, .clearfix:after, .row:after, .login form:after {
  content: "";
  display: table;
}
.clearfix:after, .row:after, .login form:after {
  clear: both;
}

.border-box, body, .btn-group .dropdown-menu, label, input, textarea, select, button, legend, .row, .column, .columns, body.with-aside .main, hr {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.drop-shadow, table, .aside .block, .error-messages, .hnav {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* =============================================================================
   Body
   ========================================================================== */
html, body {
  height: 100%;
}

body {
  overflow-y: scroll;
  line-height: 20px;
  font-family: "BitstreamVeraSansRoman", "Lucida Grande", Verdana, sans-serif;
  font-size: 12px;
  color: #404040;
  background: #d6d6d6;
}

/* =============================================================================
   Links
   ========================================================================== */
a {
 /* color: #006ae3;*/
 color:#62626b;
  text-decoration: none;
  -webkit-transition-property: color, text-shadow;
  -moz-transition-property: color, text-shadow;
  -ms-transition-property: color, text-shadow;
  -o-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  -ms-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
a:hover {
/*  color: #004eb9;*/
  color: #9494c8;
  text-decoration: none;
}

/* =============================================================================
   Accessibility
   ========================================================================== */
a:focus, input[type="submit"]:focus, input[type="reset"]:focus, button:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

input[type=checkbox]:focus, input[type=radio]:focus, input[type=file]:focus {
  outline: 5px auto -webkit-focus-ring-color !important;
}

a:hover, a:active, .active > a, .open > a {
  outline: none !important;
}

/* =============================================================================
   Utilities
   ========================================================================== */
.right {
  float: right;
}

.left {
  float: left;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.clear {
  clear: both;
}

.highlight {
  background: #ffffcc;
}

/* =============================================================================
   Typography
   ========================================================================== */
p {
  line-height: 20px;
  margin: 0 0 10px;
}

em {
  font-style: italic;
}

small {
  font-weight: normal;
  color: #bfbfbf;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  line-height: 1.25;
  color: #404040;
  font-weight: bold;
}

h4, h5, h5 {
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 15px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
  color: gray;
  font-weight: normal;
  text-transform: uppercase;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

ul.styled, ol.styled {
  padding: 0;
  margin: 20px 0;
}
ul.styled ul, ul.styled ol, ol.styled ul, ol.styled ol {
  margin: 5px 0;
}
ul.styled li, ol.styled li {
  margin: 2px 0 2px 30px;
}

ul.styled, .styled ul {
  list-style: disc outside;
}

ol.styled, .styled ol {
  list-style: decimal outside;
}

/* =============================================================================
   Box (re-used by other components)
   ========================================================================== */
.box, .btn-group .dropdown-menu, code, pre, figure, .accordion .body, .blank, .vnav {
  background-color: #f8f8f8;
  text-shadow: 0 1px #fcfcfc;
  border: 1px solid;
  border-color: #dadada #d5d5d5 #cfcfcf;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 0 1px #fcfcfc, 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 1px #fcfcfc, 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* =============================================================================
   Quotes
   ========================================================================== */
blockquote {
  margin: 0 0 20px 20px;
  padding: 2px 15px;
  border-left: 5px solid #eaeaea;
}
blockquote small {
  display: block;
  margin-top: -10px;
  font-size: 12px;
  color: gray;
}
blockquote small:before {
  content: "\2014 \0020";
}

/* =============================================================================
   Button-style box (re-used by other components)
   ========================================================================== */
.button-box, .btn, .accordion h3, .breadcrumb, .page-nav, .pagination a {
  color: #666;
  text-shadow: 0 1px 0 #fdfdfd;
  border: 1px solid;
  border-color: #d5d5d5 #cbcbcb #c4c4c4 #d2d2d2;
  border-radius: 3px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #e4e4e4));
  background-image: -webkit-linear-gradient(top, #fafafa, #e4e4e4);
  background-image: -moz-linear-gradient(top, #fafafa, #e4e4e4);
  background-image: -ms-linear-gradient(top, #fafafa, #e4e4e4);
  background-image: -o-linear-gradient(top, #fafafa, #e4e4e4);
  background-image: linear-gradient(top, #fafafa, #e4e4e4);
  -webkit-box-shadow: inset 0 1px #fefefe, inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px #fefefe, inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* =============================================================================
   Buttons
   ========================================================================== */
.btn {
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
}
.btn + .btn {
  margin-left: 5px;
}
.btn:hover {
  color: #666;
  text-decoration: none;
}
.btn:active, .btn-group.open .btn.dropdown-toggle {
  background-image: none;
  border-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 3px rgba(0, 0, 0, 0.15);
}
.btn.rounded {
  border-radius: 16px;
}
.btn.mini {
  height: 25px;
  line-height: 25px;
  padding: 0 12px;
  font-size: 11px;
}
.btn.mini.rounded {
  border-radius: 14px;
}
.btn.mini20 {
  height: 20px;
  line-height: 20px;
  padding: 0 12px;
  font-size: 11px;
}
.btn.mini20.rounded {
  border-radius: 10px;
}

.btn.large {
  height: 35px;
  line-height: 35px;
  padding: 0 17px;
  font-size: 13px;
}
.btn.large.rounded {
  border-radius: 19px;
}
.btn.block {
  margin: 0 0 20px;
  display: block;
  text-align: center;
}

/* =============================================================================
   Colored buttons
   ========================================================================== */
.colored-btn, .btn.blue, .btn.green, .btn.red, .colored-btn:hover, .btn.blue:hover, .btn.green:hover, .btn.red:hover {
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.colored-btn:active, .btn.blue:active, .btn-group.open .blue.btn.dropdown-toggle, .btn.green:active, .btn-group.open .green.btn.dropdown-toggle, .btn.red:active, .btn-group.open .red.btn.dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 3px rgba(0, 0, 0, 0.15);
}

/* =============================================================================
   Button groups
   ========================================================================== */
.btn-group {
  display: inline-block;
}
.btn-group .btn {
  margin: 0;
  float: left;
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-radius: 3px 0 0 3px;
}
.btn-group .btn + .btn {
  margin-left: -1px;
}
.btn-group .btn:active + .btn, .btn-group.open .btn.dropdown-toggle + .btn {
  margin-left: 0;
  border-left: 0;
}
.btn-group .btn:last-child {
  border-radius: 0 3px 3px 0;
}

.btn-bar {
  margin: 0 0 20px;
}
.btn-bar div + div {
  margin-left: 5px;
}

/* =============================================================================
   Button dropdowns
   ========================================================================== */
.btn-group.open .btn {
  position: relative;
  z-index: 1001;
}
.btn-group.open .btn:first-child {
  border-radius: 3px 0 0 0;
}
.btn-group.open .btn.dropdown-toggle {
  border-radius: 0 3px 0 0;
}
.btn-group .dropdown-menu {
  top: 31px;
  left: 0;
  right: auto;
  border-width: 0 1px 1px;
  border-radius: 0 0 3px 3px;
  min-width: 100%;
}

.btn.dropdown-toggle {
  padding: 0;
  width: 30px;
  text-align: center;
  border-radius: 0 3px 3px 0;
}
.btn.dropdown-toggle:after {
  margin: 0 0 0 -1px;
  border-top-color: #bbb;
}

.colored-btn-dropdown-toggle:after, .btn.blue.dropdown-toggle:after, .btn.green.dropdown-toggle:after, .btn.red.dropdown-toggle:after {
  border-top-color: white;
}

/* =============================================================================
   Code
   ========================================================================== */
code, pre {
  font-size: 11px;
  font-family: Monaco, Andale Mono, Courier New, monospace;
}

code {
  padding: 1px 4px;
}

pre {
  display: block;
  margin-bottom: 20px;
  padding: 4px 10px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* =============================================================================
   Pictures
   ========================================================================== */
figure {
  display: inline-block;
  padding: 4px;
}
figure img {
  display: block;
  border-radius: 3px;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0 5px 20px;
}
form p {
  clear: both;
  margin: 0 0 8px;
}
form p.actions {
  margin-top: 20px;
}
form label + label {
  margin-top: 16px;
}

label, input, textarea, select, button, legend {
  font-family: "BitstreamVeraSansRoman", "Lucida Grande", Verdana, sans-serif;
  font-size: 12px;
}


/* =============================================================================
   Labels
   ========================================================================== */
label {
  display: block;
  margin: 0 0 5px;
  line-height: 20px;
  font-weight: bold;
}
label input, label textarea, label select {
  display: block;
  margin-top: 5px;
}
label input[type=checkbox], label input[type=radio] {
  position: relative;
  bottom: 1px;
  margin: 0 4px 0 0;
  display: inline-block;
  vertical-align: middle;
}

/* =============================================================================
   Form Utilies
   ========================================================================== */
form .inline-inputs {
  line-height: 30px;
  color: gray;
  display: block;
}
form .inline-inputs input {
  margin: 0 2px;
}
form .help {
  font-size: 11px;
  color: #bfbfbf;
}
form input + .help {
  padding-left: 5px;
}
form .help.block {
  display: block;
  margin: 5px 0 0;
}

/* =============================================================================
   Input states
   ========================================================================== */
.error input:focus, .error textarea:focus, .success input:focus, .success textarea:focus {
  background: white;
  border-color: #77b9f0;
}

form .error, form .error span {
  color: #df3d3f;
}
form .error input, form .error textarea {
  border-color: #e1aeb0 #f7c7c7 #f7b9b6;
  background: #fff9f9;
}

form .success, form .success span {
  color: #42b242;
}
form .success input, form .success textarea {
  border-color: #bbcbb8 #c9d8c4 #c9d8c4;
  background: #f9fff9;
}

/* =============================================================================
   Fieldsets
   ========================================================================== */
legend {
  display: block;
  line-height: 20px;
  padding: 0 8px;
  color: #404040;
  font-size: 14px;
  font-weight: bold;
  border: 0;
}

fieldset {
  padding: 16px 0 0 10px;
  margin: 20px 0;
  border: 0;
  border-top: 2px solid #f5f5f5;
}
fieldset label {
  font-weight: normal;
  margin-left: -10px;
}
fieldset > input[type=submit] {
  margin: 20px 0 0 -10px;
}
fieldset.options {
  border: 0;
  padding: 0;
  margin: 10px 0;
}
fieldset.options legend {
  font-size: 12px;
  padding: 0 0 5px;
}
fieldset.options label {
  margin: 0 0 5px 5px;
}
fieldset.inline-options legend {
  padding: 0 10px 0 0;
  float: left;
}
fieldset.inline-options label {
  margin: 0 10px 0 0;
  display: inline-block;
}

/* =============================================================================
   Horizontal forms
   ========================================================================== */
form.horizontal {
  margin-left: 15px;
  margin-right: 15px;
}
form.horizontal p {
  clear: left;
}
form.horizontal label {
  float: left;
  padding-right: 15px;
  width: 25%;
  line-height: 30px;
  font-weight: normal;
  text-align: right;
}
form.horizontal label.option {
  float: none;
  margin-left: 25%;
  padding: 0;
  width: auto;
  line-height: 20px;
  text-align: left;
}
form.horizontal .inline-inputs {
  display: inline;
}
form.horizontal .actions, form.horizontal .help.block {
  margin-left: 25%;
}
form.horizontal fieldset label {
  margin-left: 0;
}
form.horizontal fieldset.options {
  clear: left;
}
form.horizontal fieldset.options legend {
  float: left;
  width: 25%;
  padding-right: 15px;
  font-weight: normal;
  text-align: right;
}
form.horizontal fieldset.options label {
  float: none;
  line-height: 20px;
  text-align: left;
  width: auto;
  padding: 0;
  margin-left: 25%;
}
form.horizontal fieldset.inline-options legend {
  width: 25%;
  padding-right: 15px;
  font-weight: normal;
  text-align: right;
}
form.horizontal fieldset.inline-options label {
  margin-left: 0;
}

.container, .footer, .header, .topbar {
  padding: 0 20px;
}

.row {
  position: relative;
  width: 100%;
  min-width: 840px;
  margin: 0 auto;
}
.row .row {
  min-width: 0;
}

.column, .columns, body.with-aside .main {
  margin-left: 4.4%;
  float: left;
  min-height: 1px;
  position: relative;
}
.column:first-child, .columns:first-child, body.with-aside .main:first-child {
  margin-left: 0;
}

[class*="column"] + [class*="column"]:last-child {
  float: right;
}

.one {
  width: 4.3%;
}

.two {
  width: 13%;
}

.three {
  width: 21.679%;
}

.four {
  width: 30.37%;
}

.five {
  width: 39.1%;
}

.six {
  width: 47.8%;
}

.seven {
  width: 56.5%;
}

.eight {
  width: 65.2%;
}

.nine{
  width: 73.9%;
}

.ten {
  width: 82.6%;
}

.eleven {
  width: 91.3%;
}

.twelve {
  width: 100%;
}

.offset-by-one {
  margin-left: 13.1%;
}

.offset-by-two {
  margin-left: 21.8%;
}

.offset-by-three {
  margin-left: 30.5%;
}

.offset-by-four {
  margin-left: 39.2%;
}

.offset-by-five {
  margin-left: 47.9%;
}

.offset-by-six {
  margin-left: 56.6%;
}

.offset-by-seven {
  margin-left: 65.3%;
}

.offset-by-eight {
  margin-left: 74.0%;
}

.offset-by-nine {
  margin-left: 82.7%;
}

.offset-by-ten {
  margin-left: 91.4%;
}

.centered {
  float: none;
  margin: 0 auto;
}

.offset-by-one:first-child {
  margin-left: 8.7%;
}

.offset-by-two:first-child {
  margin-left: 17.4%;
}

.offset-by-three:first-child {
  margin-left: 26.1%;
}

.offset-by-four:first-child {
  margin-left: 34.8%;
}

.offset-by-five:first-child {
  margin-left: 43.5%;
}

.offset-by-six:first-child {
  margin-left: 52.2%;
}

.offset-by-seven:first-child {
  margin-left: 60.9%;
}

.offset-by-eight:first-child  {
  margin-left: 69.6%;
}

.offset-by-nine:first-child {
  margin-left: 78.3%;
}

.offset-by-ten:first-child {
  margin-left: 87%;
}

.offset-by-eleven:first-child {
  margin-left: 95.7%;
}

.push-two {
  left: 17.4%;
}

.push-three {
  left: 26.1%;
}

.push-four {
  left: 34.8%;
}

.push-five {
  left: 43.5%;
}

.push-six {
  left: 52.2%;
}

.push-seven {
  left: 60.9%;
}

.push-eight {
  left: 69.6%;
}

.push-nine {
  left: 78.3%;
}

.push-ten {
  left: 87%;
}

.pull-two {
  right: 17.4%;
}

.pull-three {
  right: 26.1%;
}

.pull-four {
  right: 34.8%;
}

.pull-five {
  right: 43.5%;
}

.pull-six {
  right: 52.2%;
}

.pull-seven {
  right: 60.9%;
}

.pull-eight {
  right: 69.6%;
}

.pull-nine {
  right: 78.3%;
}

.pull-ten {
  right: 87%;
}

/* =============================================================================
   Horizontal Lines
   ========================================================================== */
hr {
  clear: both;
  height: 5px;
  margin: 15px 0;
  border: 1px solid;
  border-color: #ececec #eaeaea #e2e2e2;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.01);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.01);
  background-color: #ededed;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #ededed));
  background-image: -webkit-linear-gradient(top, #fafafa, #ededed);
  background-image: -moz-linear-gradient(top, #fafafa, #ededed);
  background-image: -ms-linear-gradient(top, #fafafa, #ededed);
  background-image: -o-linear-gradient(top, #fafafa, #ededed);
  background-image: linear-gradient(top, #fafafa, #ededed);
}

/* =============================================================================
   Navigation
   ========================================================================== */
nav {
  margin: 0 0 20px;
}
nav ul {
  margin: 0;
}
nav a {
  display: block;
  -webkit-transition-property: background, box-shadow;
  -moz-transition-property: background, box-shadow;
  -ms-transition-property: background, box-shadow;
  -o-transition-property: background, box-shadow;
  transition-property: background, box-shadow;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  -ms-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
nav a:hover {
  text-decoration: none;
}
nav .active a {
  cursor: default;
}

/* =============================================================================
   Accordion
   ========================================================================== */
.accordion {
  margin: 0 0 20px;
}
.accordion h3 {
  position: relative;
  margin: 0;
  padding: 0 12px;
  line-height: 35px;
}
.accordion h3 a {
  display: block;
  color: #404040;
}
.accordion h3 a:hover {
  text-decoration: none;
}
.accordion .body {
  margin: 0 10px;
  padding: 8px 12px;
  background: #fafafa;
  border-width: 0 1px 1px;
  border-radius: 0;
}
.accordion section + section {
  margin-top: 3px;
}
.accordion .collapse.in {
  margin-bottom: -4px;
}
.accordion section:last-child .collapse.in {
  margin-bottom: 0;
}
.accordion section:last-child .body {
  border-radius: 0 0 3px 3px;
}

/* =============================================================================
   Activity Feed
   ========================================================================== */
.activities li {
  display: block;
  height: 20px;
  margin: 0 0 10px;
}
.activities .label {
  float: left;
  width: 60px;
  line-height: 16px;
  margin: 0 10px 0 0;
  text-align: right;
}
.activities a {
  float: left;
}
.activities .meta {
  float: right;
  font-size: 11px;
}
.activities .meta span {
  color: gray;
}

/* =============================================================================
   Alert Messages
   ========================================================================== */
.alert {
  position: relative;
  margin: 0 0 20px;
  padding: 7px 36px 7px 11px;
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.2);
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alert p {
  margin: 0;
  display: inline-block;
}
.alert.icon:before {
  margin-right: 5px;
}
.alert .close {
  padding: 0 5px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 7px;
  right: 7px;
  filter: alpha(opacity=40);
  opacity: 0.4;
}
.alert .close:hover {
  text-decoration: none;
  filter: alpha(opacity=60);
  opacity: 0.6;
}

/* =============================================================================
   Body with sidebar
   ========================================================================== */
body.with-aside .page {
  overflow: hidden;
  background: #f7f7f7;
}
body.with-aside .main {
  background: white;
  border-radius: 0 0 5px 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

/* =============================================================================
   Sidebar
   ========================================================================== */
.aside {
  z-index: 100;
  padding: 15px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.95);
  position: relative;
  top: 0px;
  right: 0px;
}
.aside .heading {
  margin: 0 0 15px;
  padding: 0 8px;
  height: 25px;
}
.aside .heading h4, .aside .heading li {
  line-height: 25px;
}
.aside .heading h4 {
  color: #666;
  font-size: 12px;
}
.aside .heading ul {
  margin-right: -8px;
}
.aside .heading li a {
  font-size: 11px;
  padding: 0 8px;
}
.aside .block {
  margin: 0 0 15px;
  padding: 8px 10px;
  background: white;
  border: 1px solid;
  border-color: #e3e3e3 #d8d8d8 #d8d8d8 #e3e3e3;
  border-radius: 3px;
}
.aside .block h5 {
  margin: 0 0 6px;
  font-size: 12px;
}
.aside .block.highlight {
  background: #cfc;
  border-color: #cddcce #c5d0c4 #c5d0c4 #cddcce;
}
.aside .btn {
  display: block;
  margin: 0 0 15px;
}
.aside .btn + .btn {
  margin-left: 0;
}

/* =============================================================================
   Sidebar navigation
   ========================================================================== */
.aside nav {
  margin: 0 0 15px;
}
.aside nav li + li {
  margin-top: 6px;
}
.aside nav li {
  position: relative;
}
.aside nav li:before, .aside nav li:after {
  content: '';
  visibility: hidden;
  border: 6px outset transparent;
  position: absolute;
  top: 11px;
  width: 0;
  height: 0;
}
.aside nav li:before {
  border-left: 6px solid #e5e5e5;
  right: -12px;
}
.aside nav li:after {
  border-left: 6px solid white;
  right: -10px;
}
.aside nav a {
  padding: 0 11px;
  line-height: 32px;
  color: gray;
  border: 1px solid #f7f7f7;
  border-radius: 3px;
}
.aside nav a:hover {
  color: #404040;
  background-color: rgba(0, 0, 0, 0.05);
}
.aside nav a.icon:before {
  margin-left: -4px;
  opacity: .8;
}
.aside nav li.active a.icon:before, .aside nav a.icon:hover:before {
  opacity: 1;
}
.aside nav li.active a, .aside nav a:active {
  color: #404040;
  background: white;
  border-color: #e3e3e3 #d8d8d8 #d8d8d8 #e3e3e3;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}
.aside nav li.active:before, .aside nav li.active:after, .aside nav li:active:before, .aside nav li:active:after {
  visibility: visible;
}

/* =============================================================================
   Sidebar tags
   ========================================================================== */
.tags {
  margin: 0 0 15px;
}
.tags li {
  margin: 4px 0;
}
.tags li a {
  color: #404040;
}
.tags li span {
  float: left;
  margin: 0 12px 0 6px;
  width: 12px;
  text-align: center;
  color: #bfbfbf;
}

/* =============================================================================
   Blank slate
   ========================================================================== */
.blank {
  margin: 0 0 20px;
  padding: 15px 20px 20px 120px;
  background-position: 20px 20px;
  background-repeat: no-repeat;
  background-color: #ebf3fb;
  border-color: #dae9f8 #d6e6f7 #cde1f5;
}
.blank p {
  color: gray;
}
.blank.milestones {
  background-image: url("../../images/milestones.png");
}

/* =============================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  padding: 0 11px;
  line-height: 29px;
  border-color: #dadada #cfcfcf #c8c8c8;
  text-align: right;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb .divider {
  padding: 0 5px;
}
.breadcrumb .active a {
  color: #666;
}

/* =============================================================================
   Comments
   ========================================================================== */
.comment {
  margin: 0 0 20px;
  min-height: 58px;
}
.comment figure {
  float: left;
}
.comment figure img {
  width: 48px;
  height: 48px;
}
.comment header, .comment p {
  margin-left: 70px;
}
.comment header {
  padding: 4px 0 6px;
  height: 20px;
}
.comment header h5 {
  margin: 0;
  float: left;
  font-size: 12px;
}
.comment header small, .comment header time {
  font-size: 11px;
  color: gray;
  line-height: 1.25;
}
.comment header small {
  margin-left: 2px;
}
.comment header time {
  float: right;
}

/* =============================================================================
   Dropdowns
   ========================================================================== */
.dropdown {
  position: relative;
}

.dropdown-toggle:after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ccc;
  width: 0px;
  height: 0px;
}

.dropdown-menu {
  display: none;
  z-index: 1000;
  min-width: 140px;
  background: white;
  border: 1px solid #dddddd;
  border-radius: 0 0 3px 3px;
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.dropdown-menu li:last-child a {
  border-radius: 0 0 3px 3px;
}
.dropdown-menu a {
  display: block;
  padding: 6px 10px;
}
.dropdown-menu a:hover {
  text-decoration: none;
  background: #f1f1f1;
}
.dropdown.open .dropdown-menu {
  display: block;
}

/* =============================================================================
   Error Messages
   ========================================================================== */
.error-messages {
  padding: 8px 14px;
  background: #ffffcc;
  border: 1px solid #dedfc5;
  border-bottom-color: #d8dabb;
  border-radius: 3px;
}
.error-messages li + li {
  margin-top: 5px;
}

body {
  padding-bottom: 24px;
}

/* =============================================================================
   Footer
   ========================================================================== */

.footer .row {
  padding: 5px 8px 8px;
}
.footer p, .footer a {
  margin: 0;
  color: gray;
  font-size: 11px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}
.footer p.copy {
  color: #404040;
  text-align: center;
}

/* =============================================================================
   Header
   ========================================================================== */
.header {
  position: relative;
  z-index: 300;
  border-top: 1px solid #2bb324;
  background-color: #1f801a;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #24951e), color-stop(100%, #166912));
  background-image: -webkit-linear-gradient(top, #24951e, #166912);
  background-image: -moz-linear-gradient(top, #24951e, #166912);
  background-image: -ms-linear-gradient(top, #24951e, #166912);
  background-image: -o-linear-gradient(top, #24951e, #166912);
  background-image: linear-gradient(top, #24951e, #166912);
}
.header .row {
  height: 50px;
}
.header + .container .page, .header + .footer .page, .header + .header .page, .header + .topbar .page {
  border-radius: 0 0 5px 5px;
}
.space{ width:370px; height:370px;}

.header h1 {
  float: left;
  margin: 0 10px 0 0;
}
.header h1 a {
  display: block;
  line-height: 50px;
  font-size: 18px;
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
}
.header h1 a:hover {
  text-decoration: none;
}
.header nav {
  height: 28px;
  margin: 0;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.header nav > ul > li {
  float: left;
}
.header nav > ul > li + li {
  margin-left: 5px;
}
.header nav > ul > li > a {
  padding: 0 11px;
  line-height: 28px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  background: #2ca427;
  border-radius: 3px 3px 0 0;
  -webkit-box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.2);
}
.header nav > ul > li > a:hover {
  background: #30b42b;
}
.header nav > ul > li.active > a, .header nav > ul > li > a:active, .header nav > ul > li.open > a {
  color: #238012;
  text-shadow: none;
  background: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header .dropdown-menu {
  z-index: -1;
  top: 28px;
  right: -1px;
  background: white;
  border-width: 0 1px 1px;
}
.header .dropdown-menu a:hover {
  background: #f2f2f2;
}
.header .dropdown-toggle:after {
  border-top-color: white;
  border-top-color: rgba(255, 255, 255, 0.7);
}
.header .open .dropdown-toggle:after {
  border-top-color: #238012;
}

/* =============================================================================
   Headings
   ========================================================================== */
.heading {
  margin: 30px 0 20px;
  padding: 0 12px;
  height: 35px;
  text-shadow: 0 1px rgba(255, 255, 255, 0.9);
  border: 1px solid;
  border-color: #dbe1f5 #d3dbf2 #c3ceee;
  border-radius: 3px;
  background-color: #f7f8fd;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f8fd), color-stop(100%, #e3e8f7));
  background-image: -webkit-linear-gradient(top, #f7f8fd, #e3e8f7);
  background-image: -moz-linear-gradient(top, #f7f8fd, #e3e8f7);
  background-image: -ms-linear-gradient(top, #f7f8fd, #e3e8f7);
  background-image: -o-linear-gradient(top, #f7f8fd, #e3e8f7);
  background-image: linear-gradient(top, #f7f8fd, #e3e8f7);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.heading h3, .heading h4, .heading li {
  margin: 0;
  float: left;
  line-height: 35px;
}
.heading small {
  margin-left: 2px;
  color: #aaa;
}
.heading ul {
  float: right;
  margin-right: -12px;
}
.heading li a {
  padding: 1px 12px;
}
.heading li + li a {
  border-left: 1px solid #d3dbf2;
}

/* =============================================================================
   Icons
   ========================================================================== */
.icon:before {
  content: '';
  margin-right: 8px;
  display: inline-block;
  vertical-align: -3px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
}

.icon.add:before {
  background-image: url("../../images/cmu/icons/add.png");
}

.icon.edit:before {
  background-image: url("../../images/cmu/icons/edit.png");
}

.icon.project:before {
  background-image: url("../../images/cmu/icons/project.png");
}

.icon.time:before {
  background-image: url("../../images/cmu/icons/time.png");
}

.icon.stats:before {
  background-image: url("../../images/cmu/icons/stats.png");
}

.icon.message:before {
  background-image: url("../../images/cmu/icons/message.png");
}

.icon.tick:before {
  background-image: url("../../images/cmu/icons/tick.png");
}

.icon.warn:before {
  background-image: url("../../images/cmu/icons/warn.png");
}

.btn.icon:before {
  margin-left: -4px;
}

/* =============================================================================
   Labels
   ========================================================================== */
.label {
  padding: 1px 4px;
  font-size: 11px;
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
}

/* =============================================================================
   Login form
   ========================================================================== */
body.auth .page, body.auth .footer .row {
  max-width: 418px;
  min-width: 418px;
  max-height: 369px;
  min-height: 369px;
}
body.auth .page {
  margin-top: 50px;
  background: url(../../images/login.png) no-repeat;
}

body.auth .footer p {
  float: none;
  color: #666666;
}
.login {
  padding: 89px 76px 30px;
}
.login h1 {
  position: relative;
  font-size: 18px;
  text-align: center;
  margin: 0 0 30px;
}
.login form {
  margin: 0;
}
.login label[for] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.login input[type=text], .login input[type=password] {
  width: 100%;
  height: 35px;
  padding: 0 8px;
  font-size: 13px;
}
.login input[type=button] {
  display: block;
  height: 33px;
  padding: 0 20px;
  font-size: 13px;
}
.login .remember-me {
  float: left;
  margin: 0;
}
.login .remember-me label {
  margin: 0;
  font-weight: normal;
}
.login .actions {
  clear: none;
  float: right;
  margin: 0;
}
.login .help {
  margin-top: 20px;
  padding: 12px 4px 0;
  font-weight: bold;
  border-top: 1px dashed #e6e6e6;
  text-align: center;
}
.login .help a {
  font-weight: normal;
}

.lt-ie9 .login input[type=email], .lt-ie9 .login input[type=password] {
  line-height: 33px;
}
body.auth .modal {
	width: 420px;
}
body.auth .modal footer{
	text-align: right;
	padding: 12px 20px;
}
body.auth .milestones{
	padding: 0px 0px 0px 100px;
	background-position: 10px 0px;
	background-repeat: no-repeat;
	background-image: url("../../images/milestones.png");
}

body.error .page{
	min-width:380px;
	max-height:180px;
	margin:50px auto 0 auto;
}

body.error .page .danger{
	float:left;
	margin:30px 20px 30px 40px;
}

body.error .page ul{
	float:left;
	margin-top:50px;
}
body.error .page .bottom{
	float:left;
	margin:0 0 0 20px;
}


/* =============================================================================
   Modals
   ========================================================================== */
.modal-open .dropdown-menu {
  z-index: 2600;
}
.modal-open .tooltip {
  z-index: 2800;
}

.modal-backdrop {
  z-index: 1599;
  background: black;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop, .modal-backdrop.fade.in {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.modal {
  z-index: 1600;
  width: 560px;
  margin: -250px 0 0 -280px;
  border: 1px solid #252525;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
}
.modal .close {
  display: block;
  z-index: 1601;
  line-height: 20px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  text-align: center;
  color: white;
  background: black;
  border: 2px solid white;
  border-radius: 12px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -14px;
  right: -14px;
}
.modal .close:hover {
  text-decoration: none;
}
.modal, .modal .close {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}
.modal header {
  padding: 10px 16px;
  border-bottom: 1px solid #222;
  border-radius: 5px 5px 0 0;
  background-color: #353535;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #353535), color-stop(100%, #202020));
  background-image: -webkit-linear-gradient(top, #353535, #202020);
  background-image: -moz-linear-gradient(top, #353535, #202020);
  background-image: -ms-linear-gradient(top, #353535, #202020);
  background-image: -o-linear-gradient(top, #353535, #202020);
  background-image: linear-gradient(top, #353535, #202020);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.modal header h3 {
  margin: 0;
  color: white;
  text-shadow: 0 -1px black;
}
.modal section {
  padding: 12px 16px;
  background: white;
  max-height: 400px;
  overflow: auto;
}
.modal section form {
  margin-top: 20px;
}
.modal footer {
  padding: 10px;
  background: #fafafa;
  border-top: 1px solid #e9e9e9;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: inset 0 0 0 1px #fdfdfd;
  box-shadow: inset 0 0 0 1px #fdfdfd;
}
.modal footer > .btn:first-child {
  margin-left: 25%;
}

.lt-ie9 .modal .close {
  top: 8px;
  right: 8px;
}

/* =============================================================================
   Horizontal Navigation
   ========================================================================== */
.hnav {
  display: inline-block;
  border: 1px solid;
  border-color: #d3d3d3 #d1d1d1 #ccc;
  border-radius: 3px;
}
.hnav li {
  float: left;
}
.hnav li + li {
  border-left: 1px solid #d1d1d1;
}
.hnav li:first-child a {
  border-radius: 3px 0 0 3px;
}
.hnav li:last-child a {
  border-radius: 0 3px 3px 0;
}
.hnav a {
  position: relative;
  padding: 0 18px;
  line-height: 26px;
  color: #777;
  text-shadow: 0 1px white;
  background-color: #fafafa;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #f0f0f0));
  background-image: -webkit-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: -moz-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: -ms-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: -o-linear-gradient(top, #fcfcfc, #f0f0f0);
  background-image: linear-gradient(top, #fcfcfc, #f0f0f0);
  -webkit-box-shadow: inset 0 0 0 1px #fbfbfb;
  box-shadow: inset 0 0 0 1px #fbfbfb;
}
.hnav a:hover {
  z-index: 210;
  color: #404040;
  -webkit-box-shadow: inset 0 0 0 1px #fbfbfb, 0 0 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 0 1px #fbfbfb, 0 0 3px 1px rgba(0, 0, 0, 0.15);
}
.hnav .active a, .hnav a:active {
  color: #404040;
  background: #fcfcfc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #cfcfcf;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #cfcfcf;
}

/* =============================================================================
   Vertical Navigation
   ========================================================================== */
.vnav li {
  display: block;
  line-height: 27px;
}
.vnav li:first-child a {
  border-radius: 3px 3px 0 0;
}
.vnav li:last-child a {
  border-radius: 0 0 3px 3px;
}
.vnav a {
  margin: 0 -1px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 2px;
}
.vnav a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.vnav .active a {
  color: white;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
  border-color: #2594db #2188cb #1b71a8;
  background-color: #48a5e1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6bb6e7), color-stop(100%, #2594db));
  background-image: -webkit-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -moz-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -ms-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -o-linear-gradient(top, #6bb6e7, #2594db);
  background-image: linear-gradient(top, #6bb6e7, #2594db);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.08);
}
.vnav .head {
  padding: 1px 10px;
  font-size: 12px;
  font-weight: bold;
  color: gray;
}

/* =============================================================================
   Page Layout
   ========================================================================== */
.page {
  background: white;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.page div > :first-child, .page section > :first-child, .page form > :first-child {
  margin-top: 0;
}
.page div > :last-child, .page section > :last-child, .page form > :last-child {
  margin-bottom: 0;
}

.main {
  z-index: 200;
  padding: 15px 20px 20px;
}

/* =============================================================================
   Page navigation
   ========================================================================== */
.page-nav {
  line-height: 27px;
  text-align: center;
}
.page-nav li {
  padding: 0 10px;
  display: inline-block;
  color: gray;
}
.page-nav a {
  display: block;
}
.page-nav .prev {
  float: left;
}
.page-nav .next {
  float: right;
}

/* =============================================================================
   Pagination
   ========================================================================== */
.pagination li {
  line-height: 28px;
  display: inline-block;
}
.pagination li + li {
  margin-left: 4px;
}
.pagination a, .pagination span {
  display: block;
  padding: 0 11px;
}
.pagination a:hover {
  text-decoration: none;
}
.pagination .active a, .pagination a:active {
  background: #fdfdfd;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}
.pagination span {
  padding: 0 4px;
  color: #bfbfbf;
}
.pagination.expand {
  text-align: center;
}
.pagination.expand .fist {
  float: left;
}
.pagination.expand .last {
  float: right;
}

/* =============================================================================
   Pills
   ========================================================================== */
.pills > li {
  display: inline-block;
}
.pills > li + li {
  margin-left: 5px;
}
.pills > li > a {
  line-height: 23px;
  padding: 0 11px;
  border-radius: 11px;
}
.pills > li > a:hover {
  background: #f1f1f1;
}
.pills > li.active > a, .pills > li > a:active {
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  background: #48a5e1;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.pills .active .dropdown-toggle:after {
  border-top-color: #1b71a8;
}
.pills .open .dropdown-toggle, .pills .dropdown-toggle:active {
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  background: #bbbbbb;
}
.pills .open .dropdown-toggle:after, .pills .dropdown-toggle:active:after {
  border-top-color: #959595;
}
.pills .dropdown-menu {
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0px;
}
.pills .dropdown-menu a:hover {
  background: #f1f1f1;
}
.pills .dropdown-menu .active a {
  color: #404040;
  font-weight: bold;
}

/* =============================================================================
   Tabs
   ========================================================================== */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tabs {
  height: 31px;
  border-bottom: 1px solid #e1e1e1;
}
.tabs > li {
  float: left;
}
.tabs > li > a {
  padding: 0 12px;
  line-height: 30px;
  border: 1px solid transparent;
  border-radius: 3px 3px 0 0;
}
.tabs > li > a:hover {
  background: #f1f1f1;
  border-color: #f1f1f1 #f1f1f1 #e1e1e1;
}
.tabs > li + li {
  margin-left: 3px;
}
.tabs > li.active > a {
  background: none;
  color: #404040;
  font-weight: bold;
  border-color: #e1e1e1 #e1e1e1 white;
}
.tabs .open .dropdown-toggle {
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  background: #bbbbbb;
  border-color: #a2a2a2;
}
.tabs .open .dropdown-toggle:after {
  border-top-color: #959595;
}
.tabs .dropdown-menu {
  border-top: 0;
  position: absolute;
  top: 32px;
  left: 0px;
}
.tabs .dropdown-menu a:hover {
  background: #f1f1f1;
}
.tabs .dropdown-menu .active a {
  color: #404040;
  font-weight: bold;
}

/* =============================================================================
   Tooltips
   ========================================================================== */
.tooltip {
  display: block;
  position: absolute;
  z-index: 1200;
  padding: 5px;
  font-size: 11px;
}
.tooltip, .tooltip.fade.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid black;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid black;
}

.tooltip-inner {
  padding: 3px 8px;
  max-width: 200px;
  color: white;
  text-align: center;
  text-shadow: 0 1px black;
  background: black;
  border-radius: 3px;
}

.tooltip-arrow {
  position: absolute;
  width: 0px;
  height: 0px;
}

body {
  padding-top: 37px;
}

/* =============================================================================
   Top Bar
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 1400;
  height: 37px;
  line-height: 37px;
  text-shadow: 0 -1px black;
  border-bottom: 1px solid #191919;
  background-color: #243942;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #243942), color-stop(50%, #22373f), color-stop(50%, #1d2e35), color-stop(100%, #1b2b32));
  background-image: -webkit-linear-gradient(top, #243942 0%, #22373f 50%, #1d2e35 50%, #1b2b32 100%);
  background-image: -moz-linear-gradient(top, #243942 0%, #22373f 50%, #1d2e35 50%, #1b2b32 100%);
  background-image: -ms-linear-gradient(top, #243942 0%, #22373f 50%, #1d2e35 50%, #1b2b32 100%);
  background-image: -o-linear-gradient(top, #243942 0%, #22373f 50%, #1d2e35 50%, #1b2b32 100%);
  background-image: linear-gradient(top, #243942 0%, #22373f 50%, #1d2e35 50%, #1b2b32 100%);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.8), inset 0 0 1px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.8), inset 0 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.8), inset 0 0 1px rgba(255, 255, 255, 0.1); }
  .topbar a {
    display: block;
    line-height: 37px;
    -webkit-transition-property: background-color, color;
    -moz-transition-property: background-color, color;
    -ms-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -ms-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -ms-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;   }
    .topbar a:focus {
      outline-color: white; }
    .topbar a:hover {
      text-decoration: none; }
  .topbar h2 {
     float: left;
     margin: 0; }
     .topbar h2 a {
        color: white;
        font-size: 16px; }
.topbar nav {
  float: left;
  border-left: 1px solid #2f4b56;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid #111; }
  .topbar nav  ul  li {
    float: left;
    font-family:NanumGothic, ngwoff, ngeot;
    font-weight: bold; }
    .topbar nav a {
      display: block;
      padding: 0 15px;
      color: #d0d9de;
      border-left: 1px solid #191919;
      border-right: 1px solid #2f4b56;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      text-decoration: none;
      cursor: pointer; }
      .topbar nav a:hover {
        background: #2f4b56;
        background: rgba(255, 255, 255, 0.05); }
      .topbar nav a.icon1 {
        padding-left: 40px;
        background-position: 12px 11px;
        background-repeat: no-repeat; }
      .topbar nav a.tasks {
        background-image: url("../../images/cmu/top/tasks.png"); }
      .topbar nav a.messages {
        background-image: url("../../images/cmu/top/messages.png"); }
      .topbar nav a.settings {
        background-image: url("../../images/cmu/top/settings.png"); }
      .topbar nav a.aproval {
        background-image: url("../../images/cmu/top/aproval.png"); }
      .topbar nav a.calendar {
        background-image: url("../../images/cmu/top/calendar.png"); }
      .topbar nav a.users {
        background-image: url("../../images/cmu/top/users.png"); }
    .topbar nav li.active a, .topbar nav a:active {
      background-color: #1b2b32;
      border-right: 0;
      padding-right: 16px;
      -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.7);
      -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.7);
      box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.7); }
    .topbar nav span {
      display: inline-block;
      vertical-align: text-top;
      line-height: 16px;
      font-size: 11px;
      padding: 0 5px;
      color: #fff;
      text-shadow: 0 1px #902a27;
      border-radius: 2px;
      margin-left: 10px;
      background-color: #e93631;
      background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f65d5f), color-stop(100%, #e93631));
      background-image: -webkit-linear-gradient(top, #f65d5f, #e93631);
      background-image: -moz-linear-gradient(top, #f65d5f, #e93631);
      background-image: -ms-linear-gradient(top, #f65d5f, #e93631);
      background-image: -o-linear-gradient(top, #f65d5f, #e93631);
      background-image: linear-gradient(top, #f65d5f, #e93631);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f65d5f', endColorstr='#e93631',GradientType=0 );
      -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2);
      box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1px rgba(0, 0, 0, 0.2); }



/* =============================================================================
   Typeaheads (requires dropdowns)
   ========================================================================== */
.typeahead {
  margin: 4px 0 0;
  max-width: 250px;
  border-color: #cbcfe2 #c8cee7 #c4c7d7;
  border-radius: 3px;
  background-color: #fdfdfd;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdfdfd), color-stop(100%, #eceef4));
  background-image: -webkit-linear-gradient(top, #fdfdfd, #eceef4);
  background-image: -moz-linear-gradient(top, #fdfdfd, #eceef4);
  background-image: -ms-linear-gradient(top, #fdfdfd, #eceef4);
  background-image: -o-linear-gradient(top, #fdfdfd, #eceef4);
  background-image: linear-gradient(top, #fdfdfd, #eceef4);
}
.typeahead li {
  margin: 0 -1px;
}
.typeahead li:first-child {
  margin-top: -1px;
}
.typeahead li:first-child a {
  border-radius: 3px 3px 0 0;
}
.typeahead li:first-child:last-child a {
  border-radius: 3px;
}
.typeahead li:last-child {
  margin-bottom: -1px;
}
.typeahead a {
  padding: 4px 8px;
  color: #808394;
/*  text-shadow: 0 1px white;*/
  border: 1px solid transparent;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -ms-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  -webkit-transition-duration: 0.15s;
  -moz-transition-duration: 0.15s;
  -ms-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  -ms-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
.typeahead a:hover {
  background: none;
}
.typeahead .active a {
  color: white;
/*  text-shadow: 0 -1px rgba(0, 0, 0, 0.3);*/
  border-color: #2594db #2188cb #1b71a8;
  background-color: #48a5e1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6bb6e7), color-stop(100%, #2594db));
  background-image: -webkit-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -moz-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -ms-linear-gradient(top, #6bb6e7, #2594db);
  background-image: -o-linear-gradient(top, #6bb6e7, #2594db);
  background-image: linear-gradient(top, #6bb6e7, #2594db);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), 0 1px rgba(0, 0, 0, 0.08);
}

/* =============================================================================
   Animations
   ========================================================================== */
.fade {
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -ms-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  -ms-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
.fade.in {
  filter: alpha(opacity=100);
  opacity: 1;
}

.collapse {
  position: relative;
  overflow: hidden;
  height: 0;
  -webkit-transition-property: height;
  -moz-transition-property: height;
  -ms-transition-property: height;
  -o-transition-property: height;
  transition-property: height;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  -ms-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}
.collapse.in {
  height: auto;
}


/* =============================================================================
  ========================================================================== */
.invisible {
  width:0px;
  height:0px;
  visibility: hidden;
}

.imgVmiddle {
  vertical-align: middle;
  position:relative;
  top:-2px;
}

.hiddeFileInput {
  position: absolute;
  left : -1000px;
  top : -1000px;
  display: none;
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
}
.listCenter {
  text-align: center;
}

.album-node .x-tree-node-icon, .addOrg-btn{
    background-image:url( "../../resources/themes/images/default/tree/folder-open.gif" ) !important;
}