diff --git a/ninesixty.info b/ninesixty.info
index d875a7d..b1db7f6 100644
--- a/ninesixty.info
+++ b/ninesixty.info
@@ -9,6 +9,7 @@ stylesheets[all][] = styles/framework/reset.css
 stylesheets[all][] = styles/framework/text.css
 stylesheets[all][] = styles/framework/960.css
 stylesheets[all][] = styles/styles.css
+stylesheets[print][] = styles/print.css
 
 ; Block regions.
 regions[left]    = Left sidebar
diff --git a/styles/print.css b/styles/print.css
new file mode 100644
index 0000000..d224872
--- /dev/null
+++ b/styles/print.css
@@ -0,0 +1,60 @@
+/**
+ * This is file is for print media solely
+ */
+
+/*** Set up basic print standards ***/
+body  {
+	background-color: #fff; /* Reduce the amount of ink used */
+	color: #000;
+	font-family: Times, "Times New Romans", serif;
+	font-size: 12pt; /* Setting point size for printers */
+}
+
+#page {
+	margin: 5pt;
+	width: 95%; /* Shrink content */
+}
+
+#site-name a {
+	color: #000; /* Make header link color black */
+	font-style:normal;
+	font-weight:bold;
+	text-decoration: none; /* Remove underline from header */
+}
+
+
+/* Hide navigation and other elements */
+#site-menu, #search, .tabs, .links, .breadcrumb,
+.taxonomy, .pager, .feed-icon, #search-box, #main img {
+  visibility:hidden;
+	display:none;
+}
+
+/* Remove 960px width */
+.container-12 .grid-12, .container-16 .grid-16 {
+	width:auto;
+}
+
+.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6,
+.grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12,
+.grid-13, .grid-14, .grid-15, .grid-16 {
+	float:none; /* Allow elements to expand */
+}
+
+/* Links are styled sightly different */
+a {
+	color: #333;
+	text-decoration: underline;
+	font-size: 95%;
+	font-style: italic;
+}
+
+/* CSS2 selector to add link references to after links in the main content area*/
+#main a:link:after, #main a:visited:after {
+  content: " (" attr(href) ") ";
+}
+
+.submitted {
+	color: #777;
+	font-size: 10pt;
+}
\ No newline at end of file
