/* 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, embed, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* 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: #3e4245 url(/images/page_bg_repeat-x.gif) repeat-x scroll top center; /* Sets the background properties for an element using shorthand notation */
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight:normal;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #D4D4D4;
	font-size: 14px;
	font-weight: normal;
	line-height: 14px;
	
	margin: 0px -10px 10px -10px;
	padding: 8px 8px 12px 8px;
	border: solid #1c8bac 4px;
	background: #19191A url(/images/header_bg_repeat-x.gif) repeat-x scroll top left;
}
/* Commonly used to style section titles. */
h2 {
	color: #D4D4D4;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	
	margin: 0px -10px 10px -10px;
	padding: 6px 6px 10px 6px;
	border: solid #1c8bac 4px;
	background: #19191A url(/images/header_bg_repeat-x.gif) repeat-x scroll top left;
}

h1#portfolio {

}
h1#gallery {

}
h1#weburls {

}
h1#highlights {

}
h1#weburls {

}
h1#resume {

}
h1#contact {

}
h1#clients {
	/*border: solid #58AA07 4px;*/
}


/* Sets the style for unvisited links. */
a, a:link {
	color: #1c8bac;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #1c8bac;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #66cc00;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #1c8bac;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #1c8bac;
}
/* 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: 742px;
}
/* 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: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background: url(/images/content_bg_repeat-y.gif) top repeat-y scroll;/*height:3000px;*/
}
/* 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 #header {
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	height:0px;
}
#outerWrapper #contentWrapper #content #title {
	background: url(/images/head_title.gif) top no-repeat scroll;
	margin: 0 0 0 0;
	height:90px;
}

/* Callout mod template_1 */
/* /////////////// */
#outerWrapper #contentWrapper #content #callout_mod {
	background: url(/images/callout_mod_full.gif) top no-repeat scroll;
	margin: 0 0 0 0;
	padding: 10px 0 0 0;
	height: 200px;
	text-align: center;
	font-size: 12px;
	color: #CCCCCC;
}
/* END Callout mod template_1 */
/* /////////////////// */


/* Callout mod template_2 */
/* Broken down by section components */
/* /////////////// */

#outerWrapper #contentWrapper #content #calloutmodWrapper {
	background: url(/images/callout_mod_mid_repeat-y.gif) top repeat-y scroll;
	margin: 0 0 0 0;
	padding: 0px;
	text-align: center;
	font-size: 32px;
	color: #CCCCCC;
}
#outerWrapper #contentWrapper #content #calloutmodWrapper #calloutmodTop {
	background: url(/images/callout_mod_top.gif) top no-repeat scroll;
	margin: 0 0 0 0;
	padding: 0px;
	height: 60px;
}
#outerWrapper #contentWrapper #content #calloutmodWrapper #calloutmodCenter {
	background: #1C8BAC;
	margin-top: -50px;
	margin-left: 20px;
	margin-right: 20px;
	width: 702px;
	/*height: 170px;*/
}
#outerWrapper #contentWrapper #content #calloutmodWrapper #calloutmodBottom {
	background: url(/images/callout_mod_bottom.gif) bottom no-repeat scroll;
	margin: 0 0 0 0;
	padding: 0px;
	height: 20px;
}
/* END Callout mod template_2 */
/* Broken down by section components */
/* /////////////// */



#outerWrapper #contentWrapper #content #contentInner {
	margin: 10px 40px 0 40px;
	padding-bottom: 40px;
}

/* menubar */
/* /////////////// */

#menubarWrapper {
	background-color: #19191A;
	float: left;
	margin-top: -10px;
	margin-right: -10px;
	margin-bottom: 20px;
	margin-left: -10px;
	width:674px;
	background-image: url(/images/itemgradient-rest.gif);
	background-repeat: repeat-x;
	border: solid #58AA07 4px;
}
/* Give the menu bar a width and set the margins to "auto"
 * so that the browser does the centering.
 */
ul.MenuBarHorizontal {
	width: 48.5em;
	margin: auto;
}

#MenuBar1 li a {
	background-color: transparent;
	color:#E9E9E9;
}
#MenuBar1 a:hover, #MenuBar1 a:focus {
	background-image: url(/images/itemgradient-hover.gif);
	background-repeat: repeat-x;
	/*color:#58AA07;*/
	background-position: top;
}
#MenuBar1 a.MenuBarItemHover, #MenuBar1 a.MenuBarItemSubmenuHover, #MenuBar1 a.MenuBarSubmenuVisible {
	background-image: url(/images/itemgradient-hover.gif);
	background-repeat: repeat-x;
	background-position: top;
}
#MenuBar1 li {
	background-image: url(/images/itemgradient-rest.gif);
	background-repeat: repeat-x;
	background-position: top;
}

/* END menubar */
/* /////////////// */


/* STATUS menubar */
/* /////////////// */

body#home #MenuBar1 li#home,
body#portfolio #MenuBar1 li#portfolio,
body#resume #MenuBar1 li#resume,
body#clients #MenuBar1 li#clients,
body#contact #MenuBar1 li#contact,
body#gallery #MenuBar1 li#portfolio, /* for the submenu page to show on main menu */
body#galleryweburls #MenuBar1 li#portfolio /* for the submenu page to show on main menu */ {
	background-image: url(/images/itemgradient-hover.gif);
	background-repeat: repeat-x;
	background-position: top;
	/*color:#58AA07;*/
}

/* END STATUS menubar */
/* /////////////// */





#outerWrapper #footerWrapper {
	border-bottom: 2px solid #333333;
}
#outerWrapper #footer {
	padding: 0px;
	margin: 0px;
	background: #000000;
	border: 10px solid #000000;
	color: #1c8bac;
	font-style: normal;
	font-size:10px;
	text-align:right;
}



/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	width: 50%;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#flashcontent2.centerelement {
margin:0 auto;
width:600px;
}

