@import url(resetElements.css);
@import url(globalClasses.css);

/* overwrite left and write classes imported from globalClasses.css
---------------------------------------------------------------------------- */

.left, .right {
	float: none;
}

/* overwrite phark classes imported from globalClasses.css
---------------------------------------------------------------------------- */

.hiddenPhark {
	left: inherit;
	position: inherit;
}

.imgPhark {
	text-indent: inherit;
}

/* overwrite list styling imported from resetElements.css
---------------------------------------------------------------------------- */

ul {
	list-style-type: outside;
}

li {
	margin-left: 0;
}

/* @group generic print stylinging */

body {
	background: #fff;
	font-size: 10pt;
	font-family: Arial,Helvetica,sans-serif;
	line-height: 140%;
}

img {
	display: block;
}

/* @end */

/* @group site-specific print styling */

/* -------------------
MAKE SURE TO ASSIGN ANY LARGE FLOATED ELEMENT TO HAVE FLOAT:NONE
SO THAT IT WILL SHOW UP WHEN PRINTED FROM GECKO-BASED BROWSERS (MOZILLA)
------------------- */

li, dd {
	margin-bottom: 1em;
}

#navi, #left {
	display: none;
}

/* @end */


/* add links to href elements
---------------------------------------------------------------------------- */

a:link:after, a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
   font-style: italic;
}

/* for relative links (those that begin /yaddi/yaddi/yaddi) insert the sitename before the beginning slash to make a full url */
/* use of regular expression-esque syntax (such as href^="/") is supported in css3 and higher only */
a[href^="/"]:after {
	content: " (http://aestheticmedicineswmontana.com" attr(href) ") ";
}
