/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	float: none;
}
html { 
min-height: 100%; margin-bottom: 1px; 

}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #da1a35;
	background-image: url(images/gradient_background.jpg);
	background-repeat: repeat-x;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}
/* Commonly used to style page titles. */
h1 {
	color: #5c5c5c;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #5c5c5c;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
#content, #footer a {
  color: #000;
  text-decoration: underline;
}

/* Sets the style for links on mouseover. */
#content, #footer a:hover {
  color: #000;
  text-decoration: none;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 785px;
}
#outerWrapper #menu {
	background-image: url(images/gradient_nav.jpg);
	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 20px;
	height: 36px;
	color: #FFFFFF;
	margin-right: auto;
}
input,textarea,select {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	border: 1px solid #646464;
}

#outerWrapper #leftColumn1 #Vacancy {
	background-image: url(images/middle_box.gif);
	background-repeat: repeat-y;

}


#outerWrapper #header {
	height: 165px;
	background-image: url(images/home_logo.jpg);
	background-repeat: no-repeat;
	background-position: 0px 35px;
}
#outerWrapper #wrapperFooter {
	background-color:transparent;
	clear:both;
    color: #FFFFFF;
}
#outerWrapper #wrapperFooter #wrapperFooterInner {
    background-image: url(images/curve_page.gif);
	background-repeat: no-repeat;
	background-position: left top;
    padding:1px;
    /*border:1px solid red;*/
}

#outerWrapper #innerWrapper li {
	list-style-type: none;
	list-style-image: url(images/bullet_list.gif);
	margin-left: 0; /*-25px;*/
	margin-bottom: 2px;
}

#outerWrapper #innerWrapper #footer .column {
	width: 170px;
	float: left;
	margin-left: 10px;
	margin-right: 5px;
}



#outerWrapper #header h1 {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
#outerWrapper #header h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 220px;
	padding-left: 25px;
	padding-bottom: 0px;
	padding-top: 5px;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-left: 250px; /*270px;*/
    /*border:1px solid red;*/
	padding: 10px 15px 0 10px;
}
* html #outerWrapper #contentWrapper #content {
    padding:10px 15px 0 0;
}


#outerWrapper #innerWrapper #contentWrapper #leftColumn1 .title {
	color: #666666;
	font-weight: bold;
	margin-top: 10px;
}
#contentWrapper a {
	text-decoration: underline;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}
#contentWrapper a:hover {
	text-decoration: none;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	padding-top:    20px;
	padding-right:  10px;
	padding-bottom: 0px;
	padding-left:   10px;
}
#outerWrapper #innerWrapper {
	background-color: #FFFFFF;
    padding-bottom:1px;
}
.clear {
	clear: both;
}
#outerWrapper #wrapperFooter #links {
	float: left;
	width: 550px;
	margin-top: 35px;
}
#outerWrapper #wrapperFooter #wiseLogo {
	float: right;
	width: 150px;
	margin-top: 30px;
}
#outerWrapper #internalHeader {

	height: 138px;
	background-image: url(images/internal_logo.jpg);
	background-repeat: no-repeat;
	background-position: 0px 35px;
}
#outerWrapper #innerWrapper #internalHeader #title {
	width: 400px;
	padding-right: 0px;
	background-image: url(images/about_us.gif);
	background-repeat: no-repeat;
	background-position: right;
	height: 30px;
	float: right;
	text-decoration: none;
	margin-right: 20px;
	margin-top: 30px;
}
#outerWrapper #innerWrapper #contentWrapper #leftColumn1 #boxTop {
	background-image: url(images/top_box.gif);
	background-repeat: no-repeat;
	height: 5px;
	background-position: left bottom;
	margin-top: 5px;
}
#outerWrapper #innerWrapper #contentWrapper #leftColumn1 #number {
	margin-bottom: 20px;
}

#outerWrapper #innerWrapper #contentWrapper #leftColumn1 #boxMiddle {
	background-image: url(images/middle_box.gif);
	background-repeat: repeat-y;
	background-position: left;
	padding-left: 10px;
	padding-top: 15px;
	padding-bottom: 5px;
}

#outerWrapper #innerWrapper #contentWrapper #leftColumn1 #boxBottom {
	background-image: url(images/bottom_box.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 14px;
}
#wrapperFooter a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: underline;
}
#wrapperFooter a:hover {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
}
select {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
}
#menu_wrapper {
	margin-left: 363px;
	width: 350px;
	padding-right:0;
}




#contentWrapper .vacancy {
    width:              475px;
    margin:             15px auto;
    /*border:             1px solid #999999;*/
    background-color:   #e8e6e7;
    color:              #333333;

}
#contentWrapper .vacancy h3 {
    border-bottom:      3px solid #ffffff;
    padding:            5px 10px;
    margin:             0;
}
#contentWrapper .vacancy h3 a {
    color:              #DA1A35;
    font-size:          12px;
    text-decoration:    none;
}

#contentWrapper .vacancy td {
    margin:             0;
    padding:            5px 10px 5px 10px;
    text-align:         left;
    width:              50%;
}

/*#contentWrapper .vacancy tbody tr:first-child td {
    padding:            5px 0 5px 0;
}
#contentWrapper .vacancy tbody tr:first-child td h3 {
    padding:            4px 15px 4px 15px;
}*/

#contentWrapper .vacancy p {
    margin:             0;
    padding:            10px 10px 15px 10px;
}
#contentWrapper .vacancy p a {
    color:              #333333;
}


#outerWrapper #innerWrapper #vacancy-details, #outerWrapper #innerWrapper #vacancy-details li {
    list-style-type:         none;
	list-style-image: none;
}

#vacancy-details li label {
    display:            block;
    width:              100px;
    float:              left;
}


/* Testimonials */

#testimonials {
    margin:         20px 7px 0 7px;
    padding:        0 0 0 17px;
    /*border:     1px solid #cccccc;*/
    color:          #da1a35;

    background:     url('images/quote_start.png') no-repeat;

}
#testimonials  p {
    margin:         0;
}

#testimonials #testimonalText {
    background:     url('images/quote_end.png') no-repeat bottom right;
    margin-bottom:  12px;
    padding:        0 17px 0 0;
}

#testimonials #testimonalAuthor {
    font-weight:    bold;
}

/* ************ */