<?xml version="1.0"?>
<News hasArchived="true" page="8244" pageCount="10734" pageSize="10" timestamp="Mon, 27 Jul 2026 13:20:33 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8244">
<NewsItem contentIssues="true" id="36349" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36349">
<Title>Introducing CSS Regions</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/09/thumbnail35.jpg" width="200" height="160" style="max-width: 100%; height: auto;">Building complex, flexible layouts has never been easy, but CSS3 has certainly taken away a lot of the headaches.</p> <p>CSS3 features like <a href="http://www.webdesignerdepot.com/2013/05/49432/" rel="nofollow external" class="bo">Flexbox</a> and <a href="http://www.webdesignerdepot.com/2013/03/how-to-use-css3-columns/" rel="nofollow external" class="bo">Columns</a> have made some complex layouts a real possibility and now they’re being joined by one of the newest additions to the web designer’s toolbox: CSS Regions.</p> <p>CSS Regions allow you to flow content into a series of containers on a single page. It’s the equivalent of linking text boxes in an application like InDesign. It makes possible some layouts that were previously only possible by blurring the line between data and styles.</p> <h1>Browser support</h1> <p>As always, browser support is far from perfect.</p> <p>CSS Regions is still a draft, which means it’s experimental. Initially the only browser to actually support it was Internet Explorer 10 (no, I’m not kidding); although IE10 does use an iframe as the content source.</p> <p>Safari claims to offer support with a prefix.</p> <p>In Chrome you can test the feature by opening your browser, typing ‘about:flags’ and activating ‘enable-experimental-webkit-features’, then restarting your browser.</p> <p>Happily there is also a <a href="http://adobe-webplatform.github.io/css-regions-polyfill/" rel="nofollow external" class="bo">JavaScript polyfill</a> created by Adobe that brings the functionality of CSS Regions to browsers that currently don’t support it, you can find this on <a href="http://adobe-webplatform.github.io/css-regions-polyfill/" rel="nofollow external" class="bo">github.</a></p> <p> </p> <h1>Using CSS Regions</h1> <p>Since the purpose of CSS Regions is to allow our text to flow across different containers, the first thing you need is some text:</p> <pre>&lt;div class="text"&gt;<br>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc cursus imperdiet purus ac eleifend. Vivamus posuere pellentesque nibh vel laoreet. Donec et sem odio. Donec sit amet lorem hendrerit, faucibus libero et, mattis lacus. Suspendisse dapibus rutrum felis quis interdum. Integer tincidunt, orci at condimentum placerat, est nulla sollicitudin velit, vitae gravida nisi odio ac ligula. Sed hendrerit ac massa vel ultricies. Vestibulum commodo, orci et tincidunt laoreet, enim tellus aliquet orci, quis dapibus sapien tellus eu felis. Etiam non arcu at eros luctus consectetur vitae eget nunc. In felis ipsum, vehicula ac mauris vel, porttitor gravida neque.<br>Quisque orci turpis, aliquam vel tortor convallis, ullamcorper molestie nisl. Sed aliquet dignissim lorem non fringilla. In hac habitasse platea dictumst. In hac habitasse platea dictumst. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi congue erat ac hendrerit ullamcorper. Morbi facilisis urna nunc, eget pretium lectus congue vitae.<br>&lt;/div&gt;</pre> <p>And then some containers:</p> <pre>&lt;div class="containers"&gt;&lt;/div&gt;<br>&lt;div class="containers"&gt;&lt;/div&gt;<br>&lt;div class="containers"&gt;&lt;/div&gt;</pre> <p>Now we have the basic content set up, we can link the containers using <em>flow-into</em> and <em>flow-from,</em> you’ll notice in the example I’ve added the <em>-webkit-</em> prefix.</p> <pre>.text { -webkit-flow-into: text-flow; padding: 0; margin: 0; color: #F2F2F2; font-family: helvetica, arial; font-size: 16px; line-height: 22px; } .containers{ -webkit-flow-from: text-flow; background: #333333; padding: 5px; margin-top: 100px; width: 200px; height: 300px; float: left; margin-right: 20px; } </pre> <p>If you check this in a browser you’ll see that the text will just flow from one box to another. If you now position those containers, the text will continue to flow properly.</p> <p> </p> <h1>Understanding flow-into</h1> <pre>-webkit-flow-into: text-flow;</pre> <p>This property accepts an identifier as the value. When you pass a value to this property it becomes part of a named flow and it will stop rendering as part of the page flow. You can cancel that by setting the property to none.</p> <p>The name of the flow you use is arbitrary, just make sure you’re consistent. We can also have multiple elements with the same named flow as in our example above.</p> <p>This isn’t limited to text, we can also flow images, lists, and many other kinds of HTML content.</p> <p> </p> <h1>Understanding flow-from</h1> <pre>-webkit-flow-from: text-flow;</pre> <p>We use this property to specify which element(s) should receive the specified flow.</p> <p>The value is the name of the flow that we specified for the <em>flow-into</em> property.</p> <p>Bear in mind that any content styles that you apply to the original text will be maintained across the flow. So if you color the text blue, it will remain blue across all containers.</p> <p> </p> <h1>Final thoughts</h1> <p>To see an example of CSS Regions in action, take a look at <a href="http://codepen.io/SaraVieira/pen/tALuo" rel="nofollow external" class="bo">this pen</a> I created.</p> <p>The browser support for CSS Regions is currently weak, and there’s a long way to go before we can rely on it on a daily basis. But, the flexibility that it offers is fantastic, and once full support is in place I think CSS Regions will be the go-to technique for years to come.</p> <p> </p> <p><em><strong>Are you excited by CSS Regions? How soon do you think we’ll be able to use them? Let us know in the comments.</strong></em></p> <p>Featured image/thumbnail, <a href="http://www.flickr.com/photos/cuatrok77/" rel="nofollow external" class="bo">waterfall image</a> via cuatrok77.</p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/halloween-vectors-brushes.html?ref=inwidget" rel="nofollow external" class="bo"><strong>500+ Scary Halloween Vectors &amp; Brushes – only $17!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Introducing CSS Regions" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/09/introducing-css-regions/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fintroducing-css-regions%2F&amp;t=Introducing+CSS+Regions" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fintroducing-css-regions%2F&amp;t=Introducing+CSS+Regions" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fintroducing-css-regions%2F&amp;t=Introducing+CSS+Regions" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fintroducing-css-regions%2F&amp;t=Introducing+CSS+Regions" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fintroducing-css-regions%2F&amp;t=Introducing+CSS+Regions" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/176965035826/u/49/f/661066/c/35285/s/31e13f55/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176965035826/u/49/f/661066/c/35285/s/31e13f55/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Building complex, flexible layouts has never been easy, but CSS3 has certainly taken away a lot of the headaches.   CSS3 features like Flexbox and Columns have made some complex layouts a real...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/31e13f55/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A90Cintroducing0Ecss0Eregions0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36349/guest@my.umbc.edu/757f71129c9248f2632e2497fdf2b824/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>css-regions</Tag>
<Tag>css-regions-browser-support</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>flow-from</Tag>
<Tag>flow-into</Tag>
<Tag>how-to-use-css-regions</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>text-flow-in-css</Tag>
<Tag>understanding-css-regions</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 10:15:29 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 10:15:29 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36337" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36337">
<Title>Encryption startup KoolSpan raises $9.4 million</Title>
<Tagline>Washington Business Journal</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h5>Encryption startup KoolSpan raises $9.4 million</h5>
    <p>Bill Flook<br>Staff Reporter - Washington Business Journal</p>
    <p>Mobile security startup KoolSpan Inc. has pulled in a total $9.4 million in two separate raises led by Security Growth Partners and TWJ Capital, CEO <a href="http://www.bizjournals.com/washington/search/results?q=Gregg%20Smith" rel="nofollow external" class="bo">Gregg Smith</a> confirmed on Tuesday.</p>
    <p>In an email, Smith (currently overseas) said the funding will go toward enhancing sales and marketing and engineering, as well as providing general operating capital. The company first disclosed the raises this morning in <a href="http://www.sec.gov/Archives/edgar/data/1295875/000129587513000003/xslFormDX01/primary_doc.xml" rel="nofollow external" class="bo">two</a> <a href="http://www.sec.gov/Archives/edgar/data/1295875/000129587513000002/xslFormDX01/primary_doc.xml" rel="nofollow external" class="bo">separate</a> SEC filings.</p>
    <p>Bethesda-based KoolSpan's flagship product is the TrustChip, a microSD card that enables voice, text and data encryption for mobile devices. The company in May <a href="http://www.bizjournals.com/washington/blog/techflash/2013/05/koolspan-lands-samsungs-security-arm.html" rel="nofollow external" class="bo">landed a deal</a> with Samsung's security arm to use TrustChip as the hardware backbone to a new smartphone security product.</p>
    <p>The dual raises add to KoolSpan's <a href="http://www.crunchbase.com/company/koolspan" rel="nofollow external" class="bo">roughly $20 million</a>
     in prior venture funding, according to CrunchBase. The larger of the two, $7.4 million, is described in the filing as straight equity. The second $2 million raise is a mix of debt, options, warrants and/or other securities.</p>
    <p>Both Security Growth Partners and TWJ Capital are <a href="http://www.koolspan.com/blog/koolspan-raises-5-million-in-equity-financing/" rel="nofollow external" class="bo">previous KoolSpan investors</a>.</p>
    </div>
]]>
</Body>
<Summary>Encryption startup KoolSpan raises $9.4 million  Bill Flook Staff Reporter - Washington Business Journal  Mobile security startup KoolSpan Inc. has pulled in a total $9.4 million in two separate...</Summary>
<Website>http://www.bizjournals.com/washington/blog/techflash/2013/09/chip-maker-koolspan-raises-cash.html?s=print</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36337/guest@my.umbc.edu/29ef6aff239f66df93b1d6ac7c046acf/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 10:11:22 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 10:13:27 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110000" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110000">
<Title>Kate Brown, History, Book Talk on C-SPAN BookTV</Title>
<Body>
<![CDATA[
    <div class="html-content">History professor Kate Brown’s recent discussion of Plutopia: Nuclear Families, Atomic Cities, and the Great Soviet and American Plutonium Disasters (Ivy Bookshop, Baltimore, Md., Sept. 18) is now available online through C-SPAN BookTV. In Plutopia, Brown writes about the “atomic cities” of Richland, Washington and Ozersk, Russia, where plutonium was first produced. To uphold secrecy during the nuclear arms race and compensate for the hazards of working in and around nuclear production facilities, the U.S. and Soviet governments offered generous salaries, educational and health care benefits in these “plutopias.” Brown argues that contamination to the cities and their surrounding environments occurred …</div>
]]>
</Body>
<Summary>History professor Kate Brown’s recent discussion of Plutopia: Nuclear Families, Atomic Cities, and the Great Soviet and American Plutonium Disasters (Ivy Bookshop, Baltimore, Md., Sept. 18) is now...</Summary>
<Website>https://news.umbc.edu/kate-brown-history-book-talk-on-c-span-booktv/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110000/guest@my.umbc.edu/834cb050250f5072cbdd47c6749980ba/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>history</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 10:10:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36335" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36335">
<Title>Interested in Television?</Title>
<Tagline>Consider an internship with Discovery Communications!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>In an internship at Discovery Communications you'll be exposed
    to all areas of the business through a solid foundation of learning through
    training and work experience. Discovery is proud to provide interns with an
    opportunity to gain an understanding of their mission, values, departments,
    employees, culture and commitment to quality programming, products and
    services.</p>
    
    <p>For the spring 2014, Discovery's Campus Connect program will
    run for a 10 week <span>session during the following dates: </span><span>February 3, 2014 -</span><span> 
    </span><span>April 11, 2014</span></p>
    <p><span>This is a PAID internship - we do require that interns be
    enrolled in a university.</span></p>
    <p></p>
    
    <p><span>Interviewing will take place from the end of October through
    December. A Campus Connect team member will contact you should your experiences
    and interests match an open internship position.</span></p>
    <p>For more information, search job number 9260721 in UMBC<em>works.</em></p>
    <p></p>
    
    </div>
]]>
</Body>
<Summary>In an internship at Discovery Communications you'll be exposed to all areas of the business through a solid foundation of learning through training and work experience. Discovery is proud to...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36335/guest@my.umbc.edu/c3890e40fb2695da2239d57572cdda92/api/pixel</TrackingUrl>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/xxlarge.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/xlarge.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/large.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/medium.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/small.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/xsmall.jpg?1380549307</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/335/2231ab96ce86ba795cd299682c4170d8/xxsmall.jpg?1380549307</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 09:57:02 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36336" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36336">
<Title>Real People Profiles: Kelly Rund</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <em><span>We're asking some of the people you might encounter on the UMBC campus, including students, faculty, staff and alumni, to answer a few questions about themselves and their experiences. These are their responses.</span></em><br>
    <span><strong><br></strong></span>
    <br>
    
    <div>
    <a href="http://3.bp.blogspot.com/-NjZ0dLmp6Uc/UjyzQqqMr1I/AAAAAAAAAKM/_0OpMORYk5U/s1600/PHI+SIG+RECRUITMENT.jpg" rel="nofollow external" class="bo"><img src="http://3.bp.blogspot.com/-NjZ0dLmp6Uc/UjyzQqqMr1I/AAAAAAAAAKM/_0OpMORYk5U/s320/PHI+SIG+RECRUITMENT.jpg" height="320" width="216" style="max-width: 100%; height: auto;"></a>
    </div>
    <span><strong>Name: </strong></span><span>Kelly Rund</span><br>
    <span><span><span><strong><br></strong></span></span><span><span><strong>Hometown: </strong></span></span>Hampstead, MD</span><br>
    <span><br></span>
    <span><strong>Major: </strong>Psychology, B.S. &amp; Pre-Physical Therapy Program</span><br>
    <strong><span><br></span></strong>
    <strong><span>Q: How long have you been at UMBC?</span></strong><br>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><span>A: </span>This is my fifth semester at UMBC.</span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <strong><span>Q: What is your current title (job or student organization position)?</span></strong>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><span>A: </span>Outside of school-related positions, I work for Residential Life as a desk staffer in Patapsco Hall and I hold two positions in my sorority, Phi Sigma Sigma. In Phi Sig, I am our Sisterhood Chair and I am a member of our Standards Board. I am also a member of the PHA (Panhellenic Association) Standards Board, representing Phi Sigma Sigma. Relating to my major, I am a research assistant in the Human Operant Laboratory studying behavioral psychology.</span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><strong>Q: In 12 words or less, what role(s) do you play on campus?</strong> </span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><span>A: </span>Sister, friend, student, and "that girl that works at Patapsco front desk".</span>
    </div>
    <div>
    <span><span><br></span></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    
    <div>
    <strong><span>Q: What aspect of your UMBC role(s) do you enjoy most?</span></strong>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    <div>
    <span><span>A: </span>I really love being a desk staffer and seeing the residents in my  building outside of the Patapsco lobby; its really nice to see people in the dining hall and have them say hi because "you're that girl that works at my front desk!". Not only that, but being a desk staffer really lets you connect with residents and sometimes make a noticeable difference in people. I enjoy being the first person people see when they walk into the building, giving them someone to talk to when they've had a rough day, and just getting to know them better as they get acquainted with UMBC and being a college student.</span><br>
    <span><br>I also like walking through The Commons during free hour on Wednesdays and seeing Greek Life taking over the tables under the flags. Its such an incredible feeling to know that you're apart of a great organization that is part of an even better community. Being in a sorority has shaped my entire college experience into what I believe, is the best it could be thus far.</span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <strong><span>Q: What is the most important or memorable thing you learned in college/have learned at UMBC?</span></strong><br>
    <div>
    <strong></strong>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    <div>
    <span><span>A: </span>The most important thing I have learned in college is not to let your four years here at UMBC go by wasted. My freshman year, I joined three organizations my first semester, and a fourth second semester. I made lifelong friends (through FYC &amp; Phi Sigma Sigma), learned some really amazing things about UMBC (through (seb), SGA, &amp; FYC), and learned that I could really make a difference on this campus. By getting myself involved on campus, I believed I was really making the most of my freshman year- and I was. Two years later, I am still joining more organizations, encouraging other people to join the wonderful orgs I am a part of, and loving every minute of it. I have four semesters left here and I'm already dreading the day I have to leave this university for the real world. Everyone says it flies by so quickly, and each semester I am learning more and more how right they are.</span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <strong><span>Q: Complete this sentence: "I am a big fan of __________"</span></strong>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><span>A: </span>The Ravens, acoustic music, the stars in Carroll County, giraffes, pumpkin spice lattes, mashed potatoes, my Yorkie-Poo puppy, the Orioles, Florence + the Machine, and paddle-boarding.</span>
    </div>
    <div>
    <span><br></span>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <strong><span>Q: Do you have any UMBC stories, little-known facts about UMBC, favorite spots on campus, or anything else you’d like to share?</span></strong>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <div>
    <span><br></span>
    </div>
    
    <span><span>A: </span>One of my favorite spots on campus is in the library; the second floor has so many tables tucked behind the book stacks that are really great to use when you want to get a lot of studying done in the library! (Mostly because if you tell someone you're back there, they won't be able to find you).</span><br>
    <div>
    
    <div>
    <span><br></span>
    </div>
    </div>
    <div>
    <div>
    <em><span><a href="http://cocreateumbc.blogspot.com/" rel="nofollow external" class="bo">Co-Create UMBC</a> is a blog for and about UMBC, written by David Hoffman and Craig Berger from the Office of Student Life. Join the <a href="http://my.umbc.edu/groups/co-create" rel="nofollow external" class="bo">Co-Create UMBC group</a> on MyUMBC. Like <a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC on Facebook</a>. And follow <a href="https://twitter.com/CoCreateUMBC" rel="nofollow external" class="bo">David</a> and <a href="https://twitter.com/CraigBerger" rel="nofollow external" class="bo">Craig</a> on Twitter.</span></em>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
]]>
</Body>
<Summary>We're asking some of the people you might encounter on the UMBC campus, including students, faculty, staff and alumni, to answer a few questions about themselves and their experiences. These are...</Summary>
<Website>http://cocreateumbc.blogspot.com/2013/09/real-people-profiles-kelly-rund.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36336/guest@my.umbc.edu/703e4439f07d55510c5bf5e6344c113a/api/pixel</TrackingUrl>
<Tag>real-people-profiles</Tag>
<Group token="co-create">Co-Create UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/co-create</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/original.jpg?1499890363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/large.png?1499890363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/medium.png?1499890363</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/small.png?1499890363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxsmall.png?1499890363</AvatarUrl>
<Sponsor>Co-Create UMBC</Sponsor>
<PawCount>78</PawCount>
<CommentCount>8</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 09:40:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36333" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36333">
<Title>Desktop Wallpaper Calendars: October 2013</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>We always try our best to challenge your artistic abilities and produce some interesting, beautiful and creative artwork. As designers, we usually turn to different sources of inspiration. As a matter of fact, we’ve discovered the best one: <strong>desktop wallpapers</strong> that are a little more distinctive than the usual crowd.</p>
    <p>This creativity mission has been going on for <a href="http://www.smashingmagazine.com/tag/wallpapers/" rel="nofollow external" class="bo">over five years</a> now, and we’re very thankful to all the designers who have contributed and are still diligently contributing each month. This post features free desktop wallpapers created by artists across the globe for August 2013. Both versions with a calendar and without a calendar can be downloaded for free. It’s time to freshen up your desktop wallpaper, folks!</p>
    <p>Please note that:</p>
    <ul>
    <li>All <strong>images can be clicked on</strong> and lead to the preview of the wallpaper,</li>
    <li>You can <a href="http://www.smashingmagazine.com/2008/03/19/desktop-wallpaper-calendar-join-in/" rel="nofollow external" class="bo">feature your work in our magazine</a> by taking part in our <em>Desktop Wallpaper Calendar</em> series. We are regularly looking for creative designers and artists to be featured on Smashing Magazine. Are you one of them?</li>
    </ul>
    <h3>Autumn Colors</h3>
    <p>“I love the autumncolors and making pictures, this is a collage of bits and pieces of various autumn photos from previous seasons. Enjoy!” — Designed by <a href="http://www.agnesswart.nl" rel="nofollow external" class="bo">Agnes Swart</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/oct-13-autumn-colors-full.jpg" title="Autumn colors" rel="nofollow external" class="bo"><img width="500" height="281" alt="Autumn colors" src="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/oct-13-autumn-colors-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/oct-13-autumn-colors-preview.jpg" title="Autumn colors - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-640x480.jpg" title="Autumn colors - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-800x480.jpg" title="Autumn colors - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-800x600.jpg" title="Autumn colors - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1024x768.jpg" title="Autumn colors - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1024x1024.jpg" title="Autumn colors - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1152x864.jpg" title="Autumn colors - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1280x720.jpg" title="Autumn colors - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1280x800.jpg" title="Autumn colors - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1280x960.jpg" title="Autumn colors - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1280x1024.jpg" title="Autumn colors - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1440x900.jpg" title="Autumn colors - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1600x1200.jpg" title="Autumn colors - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1680x1050.jpg" title="Autumn colors - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1680x1200.jpg" title="Autumn colors - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1920x1080.jpg" title="Autumn colors - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1920x1200.jpg" title="Autumn colors - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/cal/oct-13-autumn-colors-cal-1920x1440.jpg" title="Autumn colors - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-320x480.jpg" title="Autumn colors - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-640x480.jpg" title="Autumn colors - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-800x480.jpg" title="Autumn colors - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-800x600.jpg" title="Autumn colors - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1024x768.jpg" title="Autumn colors - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1024x1024.jpg" title="Autumn colors - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1152x864.jpg" title="Autumn colors - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1280x720.jpg" title="Autumn colors - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1280x800.jpg" title="Autumn colors - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1280x960.jpg" title="Autumn colors - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1280x1024.jpg" title="Autumn colors - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1440x900.jpg" title="Autumn colors - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1600x1200.jpg" title="Autumn colors - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1680x1050.jpg" title="Autumn colors - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1680x1200.jpg" title="Autumn colors - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1920x1080.jpg" title="Autumn colors - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1920x1200.jpg" title="Autumn colors - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/autumn-colors/nocal/oct-13-autumn-colors-nocal-1920x1440.jpg" title="Autumn colors - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    </ul>
    <h3>Argyle October</h3>
    <p>“I really enjoy simple designs and thats the way I like to design. I tried to do as much as I could with as little as I can.” — Designed by <a href="http://smithkjosh.blogspot.com/" rel="nofollow external" class="bo">Josh Smith</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/oct-13-aryle-october-full.png" title="Aryle October" rel="nofollow external" class="bo"><img width="500" height="281" alt="Aryle October" src="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/oct-13-aryle-october-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/oct-13-aryle-october-preview.png" title="Aryle October - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/cal/oct-13-aryle-october-cal-320x480.png" title="Aryle October - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/cal/oct-13-aryle-october-cal-1024x1024.png" title="Aryle October - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/cal/oct-13-aryle-october-cal-1280x800.png" title="Aryle October - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/cal/oct-13-aryle-october-cal-1440x900.png" title="Aryle October - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/cal/oct-13-aryle-october-cal-1920x1200.png" title="Aryle October - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/nocal/oct-13-aryle-october-nocal-320x480.png" title="Aryle October - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/nocal/oct-13-aryle-october-nocal-1024x1024.png" title="Aryle October - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/nocal/oct-13-aryle-october-nocal-1280x800.png" title="Aryle October - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/nocal/oct-13-aryle-october-nocal-1440x900.png" title="Aryle October - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/aryle-october/nocal/oct-13-aryle-october-nocal-1920x1200.png" title="Aryle October - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    </ul>
    <h3>Happy Halloween</h3>
    <p>Designed by <a href="http://www.zanetine.com" rel="nofollow external" class="bo">Zanetine Web Design </a> from India.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/oct-13-happy-halloween-full.png" title="Happy Halloween" rel="nofollow external" class="bo"><img width="500" height="281" alt="Happy Halloween" src="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/oct-13-happy-halloween-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/oct-13-happy-halloween-preview.png" title="Happy Halloween - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-320x480.png" title="Happy Halloween - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-640x480.png" title="Happy Halloween - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-800x480.png" title="Happy Halloween - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-800x600.png" title="Happy Halloween - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1024x768.png" title="Happy Halloween - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1152x864.png" title="Happy Halloween - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1280x720.png" title="Happy Halloween - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1280x800.png" title="Happy Halloween - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1280x960.png" title="Happy Halloween - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1440x900.png" title="Happy Halloween - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1600x1200.png" title="Happy Halloween - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1680x1050.png" title="Happy Halloween - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1920x1080.png" title="Happy Halloween - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1920x1200.png" title="Happy Halloween - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-2560x1440.png" title="Happy Halloween - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-2880x1080.png" title="Happy Halloween - 2880x1080" rel="nofollow external" class="bo">2880×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/cal/oct-13-happy-halloween-cal-1366x768.png" title="Happy Halloween - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-320x480.png" title="Happy Halloween - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-640x480.png" title="Happy Halloween - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-800x480.png" title="Happy Halloween - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-800x600.png" title="Happy Halloween - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1024x768.png" title="Happy Halloween - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1152x864.png" title="Happy Halloween - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1280x720.png" title="Happy Halloween - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1280x800.png" title="Happy Halloween - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1280x960.png" title="Happy Halloween - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1440x900.png" title="Happy Halloween - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1600x1200.png" title="Happy Halloween - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1680x1050.png" title="Happy Halloween - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1920x1080.png" title="Happy Halloween - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1920x1200.png" title="Happy Halloween - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-2560x1440.png" title="Happy Halloween - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-2880x1080.png" title="Happy Halloween - 2880x1080" rel="nofollow external" class="bo">2880×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/happy-halloween/nocal/oct-13-happy-halloween-nocal-1366x768.png" title="Happy Halloween - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>Sports Day In Japan</h3>
    <p>“Sports day is held every October in Japan for kids in kindergarten to high school.” — Designed by <a href="http://www.eva.sg" rel="nofollow external" class="bo">Evangeline Neo</a> from Japan.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/oct-13-sports-day-in-japan-full.jpg" title="Sports Day in Japan" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sports Day in Japan" src="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/oct-13-sports-day-in-japan-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/oct-13-sports-day-in-japan-preview.jpg" title="Sports Day in Japan - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-320x480.jpg" title="Sports Day in Japan - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-1024x768.jpg" title="Sports Day in Japan - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-1280x800.jpg" title="Sports Day in Japan - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-1280x1024.jpg" title="Sports Day in Japan - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-1440x900.jpg" title="Sports Day in Japan - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-1920x1080.jpg" title="Sports Day in Japan - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/cal/oct-13-sports-day-in-japan-cal-2560x1440.jpg" title="Sports Day in Japan - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-320x480.jpg" title="Sports Day in Japan - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-1024x768.jpg" title="Sports Day in Japan - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-1280x800.jpg" title="Sports Day in Japan - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-1280x1024.jpg" title="Sports Day in Japan - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-1440x900.jpg" title="Sports Day in Japan - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-1920x1080.jpg" title="Sports Day in Japan - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sports-day-in-japan/nocal/oct-13-sports-day-in-japan-nocal-2560x1440.jpg" title="Sports Day in Japan - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Beautiful Autumn</h3>
    <p>Designed by <a href="http://www.webdesignalley.org/" rel="nofollow external" class="bo">Frank Miller</a> from Prague, CZ.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/oct-13-beautiful-autumn-full.jpg" title="Beautiful Autumn" rel="nofollow external" class="bo"><img width="500" height="281" alt="Beautiful Autumn" src="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/oct-13-beautiful-autumn-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/oct-13-beautiful-autumn-preview.jpg" title="Beautiful Autumn - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1024x768.jpg" title="Beautiful Autumn - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1024x1024.jpg" title="Beautiful Autumn - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1280x800.jpg" title="Beautiful Autumn - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1280x960.jpg" title="Beautiful Autumn - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1280x1024.jpg" title="Beautiful Autumn - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1400x1050.jpg" title="Beautiful Autumn - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1440x900.jpg" title="Beautiful Autumn - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1600x1200.jpg" title="Beautiful Autumn - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1680x1050.jpg" title="Beautiful Autumn - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1680x1200.jpg" title="Beautiful Autumn - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1366x768.jpg" title="Beautiful Autumn - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/cal/oct-13-beautiful-autumn-cal-1400x900.jpg" title="Beautiful Autumn - 1400x900" rel="nofollow external" class="bo">1400×900</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1024x768.jpg" title="Beautiful Autumn - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1024x1024.jpg" title="Beautiful Autumn - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1280x800.jpg" title="Beautiful Autumn - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1280x960.jpg" title="Beautiful Autumn - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1280x1024.jpg" title="Beautiful Autumn - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1400x1050.jpg" title="Beautiful Autumn - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1440x900.jpg" title="Beautiful Autumn - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1600x1200.jpg" title="Beautiful Autumn - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1680x1050.jpg" title="Beautiful Autumn - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1680x1200.jpg" title="Beautiful Autumn - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1366x768.jpg" title="Beautiful Autumn - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/beautiful-autumn/nocal/oct-13-beautiful-autumn-nocal-1400x900.jpg" title="Beautiful Autumn - 1400x900" rel="nofollow external" class="bo">1400×900</a>    </li>
    </ul>
    <h3>Retro October</h3>
    <p>“When I think of October I think of making homemade applesauce, pumpkin bread, etc. in a warm, inviting kitchen.  I added the vintage theme to further push the homemaker feel.” — Designed by <a href="http://www.millersville.edu/art" rel="nofollow external" class="bo">Kelly Sheaffer </a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/oct-13-retro-october-full.png" title="Retro October" rel="nofollow external" class="bo"><img width="500" height="281" alt="Retro October" src="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/oct-13-retro-october-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/oct-13-retro-october-preview.png" title="Retro October - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/cal/oct-13-retro-october-cal-320x480.png" title="Retro October - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/cal/oct-13-retro-october-cal-1024x1024.png" title="Retro October - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/cal/oct-13-retro-october-cal-1280x800.png" title="Retro October - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/cal/oct-13-retro-october-cal-1440x900.png" title="Retro October - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/cal/oct-13-retro-october-cal-1920x1200.png" title="Retro October - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/nocal/oct-13-retro-october-nocal-320x480.png" title="Retro October - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/nocal/oct-13-retro-october-nocal-1024x1024.png" title="Retro October - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/nocal/oct-13-retro-october-nocal-1280x800.png" title="Retro October - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/nocal/oct-13-retro-october-nocal-1440x900.png" title="Retro October - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/retro-october/nocal/oct-13-retro-october-nocal-1920x1200.png" title="Retro October - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    </ul>
    <h3>October Gifts</h3>
    <p>“I was inspired by autumn and those gifts that presented to us in the form of beautiful colors, unusual shapes and mysterious weather. So enjoy October! :)” — Designed by <a href="http://www.shutterstock.com/g/juliagav" rel="nofollow external" class="bo">Juliagav</a> from Ukraine.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/oct-13-october-gift-full.jpg" title="October Gift" rel="nofollow external" class="bo"><img width="500" height="281" alt="October Gift" src="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/oct-13-october-gift-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/oct-13-october-gift-preview.jpg" title="October Gift - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-640x480.jpg" title="October Gift - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1024x768.jpg" title="October Gift - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1024x1024.jpg" title="October Gift - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1280x800.jpg" title="October Gift - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1280x1024.jpg" title="October Gift - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1440x900.jpg" title="October Gift - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1680x1050.jpg" title="October Gift - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1920x1080.jpg" title="October Gift - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1920x1200.jpg" title="October Gift - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/cal/oct-13-october-gift-cal-1366x768.jpg" title="October Gift - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-320x480.jpg" title="October Gift - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-640x480.jpg" title="October Gift - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1024x768.jpg" title="October Gift - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1024x1024.jpg" title="October Gift - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1280x800.jpg" title="October Gift - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1280x1024.jpg" title="October Gift - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1440x900.jpg" title="October Gift - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1680x1050.jpg" title="October Gift - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1920x1080.jpg" title="October Gift - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1920x1200.jpg" title="October Gift - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-gift/nocal/oct-13-october-gift-nocal-1366x768.jpg" title="October Gift - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>Let The Beauty</h3>
    <p>“A wonderful quote by Jalal ad-Din Rumi and an excellent image by <a href="http://www.flickr.com/photos/tchuanye" rel="nofollow external" class="bo">Tan Chuan-Yean</a>.” — Designed by <a href="http://www.aydindemircioglu.de" rel="nofollow external" class="bo">Aydin Demircioglu</a> from Germany.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/oct-13-let-the-beauty-full.jpg" title="Let the beauty" rel="nofollow external" class="bo"><img width="500" height="281" alt="Let the beauty" src="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/oct-13-let-the-beauty-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/oct-13-let-the-beauty-preview.jpg" title="Let the beauty - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-800x480.jpg" title="Let the beauty - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-800x600.jpg" title="Let the beauty - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1024x768.jpg" title="Let the beauty - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1152x864.jpg" title="Let the beauty - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1280x720.jpg" title="Let the beauty - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1280x800.jpg" title="Let the beauty - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1280x960.jpg" title="Let the beauty - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1280x1024.jpg" title="Let the beauty - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1400x1050.jpg" title="Let the beauty - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1440x900.jpg" title="Let the beauty - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1600x1200.jpg" title="Let the beauty - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1680x1050.jpg" title="Let the beauty - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1680x1200.jpg" title="Let the beauty - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1920x1080.jpg" title="Let the beauty - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1920x1200.jpg" title="Let the beauty - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1920x1440.jpg" title="Let the beauty - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-2560x1440.jpg" title="Let the beauty - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-1366x768.jpg" title="Let the beauty - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/cal/oct-13-let-the-beauty-cal-2560x1600.jpg" title="Let the beauty - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-800x480.jpg" title="Let the beauty - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-800x600.jpg" title="Let the beauty - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1024x768.jpg" title="Let the beauty - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1152x864.jpg" title="Let the beauty - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1280x720.jpg" title="Let the beauty - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1280x800.jpg" title="Let the beauty - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1280x960.jpg" title="Let the beauty - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1280x1024.jpg" title="Let the beauty - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1400x1050.jpg" title="Let the beauty - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1440x900.jpg" title="Let the beauty - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1600x1200.jpg" title="Let the beauty - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1680x1050.jpg" title="Let the beauty - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1680x1200.jpg" title="Let the beauty - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1920x1080.jpg" title="Let the beauty - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1920x1200.jpg" title="Let the beauty - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1920x1440.jpg" title="Let the beauty - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-2560x1440.jpg" title="Let the beauty - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-1366x768.jpg" title="Let the beauty - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/let-the-beauty/nocal/oct-13-let-the-beauty-nocal-2560x1600.jpg" title="Let the beauty - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    </ul>
    <h3>Building Singapore: Old Supreme Court</h3>
    <p>“This wallpaper design is inspired by the Old Supreme Court of Singapore, the last structure in Singapore to be built in the style of classical architecture. It’s currently in the process of being converted into the National Art Gallery of Singapore, slated to be open in 2015!” — Designed by <a href="http://justrandomdesigns.wordpress.com/" rel="nofollow external" class="bo">Teo Yu Siang</a> from Singapore</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/oct-13-building-singapore-old-supreme-court-full.jpg" title="Building Singapore: Old Supreme Court" rel="nofollow external" class="bo"><img width="500" height="281" alt="Building Singapore: Old Supreme Court" src="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/oct-13-building-singapore-old-supreme-court-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/oct-13-building-singapore-old-supreme-court-preview.jpg" title="Building Singapore: Old Supreme Court - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/cal/oct-13-building-singapore-old-supreme-court-cal-1280x720.jpg" title="Building Singapore: Old Supreme Court - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/cal/oct-13-building-singapore-old-supreme-court-cal-1280x800.jpg" title="Building Singapore: Old Supreme Court - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/cal/oct-13-building-singapore-old-supreme-court-cal-1440x900.jpg" title="Building Singapore: Old Supreme Court - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/cal/oct-13-building-singapore-old-supreme-court-cal-2880x1800.jpg" title="Building Singapore: Old Supreme Court - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/nocal/oct-13-building-singapore-old-supreme-court-nocal-1280x720.jpg" title="Building Singapore: Old Supreme Court - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/nocal/oct-13-building-singapore-old-supreme-court-nocal-1280x800.jpg" title="Building Singapore: Old Supreme Court - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/nocal/oct-13-building-singapore-old-supreme-court-nocal-1440x900.jpg" title="Building Singapore: Old Supreme Court - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/nocal/oct-13-building-singapore-old-supreme-court-nocal-1920x1080.jpg" title="Building Singapore: Old Supreme Court - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/building-singapore-old-supreme-court/nocal/oct-13-building-singapore-old-supreme-court-nocal-2880x1800.jpg" title="Building Singapore: Old Supreme Court - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Trafalgar Day</h3>
    <p>“To commemorate the victory and death of Admiral Nelson at the Battle of Trafalgar, 21 October 1805.” — Designed by <a href="http://adriansandu.com" rel="nofollow external" class="bo">Adrian Sandu</a> from Romania (currently living in Ireland).</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/oct-13-trafalgar-day-full.png" title="Trafalgar Day" rel="nofollow external" class="bo"><img width="500" height="281" alt="Trafalgar Day" src="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/oct-13-trafalgar-day-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/oct-13-trafalgar-day-preview.png" title="Trafalgar Day - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1280x720.png" title="Trafalgar Day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1280x960.png" title="Trafalgar Day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1280x1024.png" title="Trafalgar Day - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1920x1080.png" title="Trafalgar Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1920x1440.png" title="Trafalgar Day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-2560x1440.png" title="Trafalgar Day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/cal/oct-13-trafalgar-day-cal-1366x768.png" title="Trafalgar Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1280x720.png" title="Trafalgar Day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1280x960.png" title="Trafalgar Day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1280x1024.png" title="Trafalgar Day - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1920x1080.png" title="Trafalgar Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1920x1440.png" title="Trafalgar Day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-2560x1440.png" title="Trafalgar Day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1600x900.png" title="Trafalgar Day - 1600x900" rel="nofollow external" class="bo">1600×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/trafalgar-day/nocal/oct-13-trafalgar-day-nocal-1366x768.png" title="Trafalgar Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>Adventure</h3>
    <p>“Go into the imagination of a young boy…going out to be the hero of his own story.” — Designed by <a href="http://www.aokstudios.com" rel="nofollow external" class="bo">Anne O’Konski</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/oct-13-adventure-full.jpg" title="Adventure" rel="nofollow external" class="bo"><img width="500" height="281" alt="Adventure" src="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/oct-13-adventure-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/oct-13-adventure-preview.jpg" title="Adventure - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-800x480.jpg" title="Adventure - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-1280x800.jpg" title="Adventure - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-1440x900.jpg" title="Adventure - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-1680x1200.jpg" title="Adventure - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-1920x1200.jpg" title="Adventure - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-1920x1440.jpg" title="Adventure - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/cal/oct-13-adventure-cal-2560x1440.jpg" title="Adventure - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-800x480.jpg" title="Adventure - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-1280x800.jpg" title="Adventure - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-1440x900.jpg" title="Adventure - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-1680x1200.jpg" title="Adventure - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-1920x1200.jpg" title="Adventure - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-1920x1440.jpg" title="Adventure - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/adventure/nocal/oct-13-adventure-nocal-2560x1440.jpg" title="Adventure - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Misty Woods</h3>
    <p>“October reminds me of cold nights and Halloween. Halloween is a time when going up to creepy houses through misty haunted woods is acceptable, which also inspired me to design a moonlight misty composition.” — Designed by <a href="http://samanthamagaard.blogspot.com" rel="nofollow external" class="bo">Samantha Magaard</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/oct-13-misty-woods-full.png" title="Misty Woods" rel="nofollow external" class="bo"><img width="500" height="281" alt="Misty Woods" src="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/oct-13-misty-woods-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/oct-13-misty-woods-preview.png" title="Misty Woods - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/cal/oct-13-misty-woods-cal-320x480.png" title="Misty Woods - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/cal/oct-13-misty-woods-cal-1024x1024.png" title="Misty Woods - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/cal/oct-13-misty-woods-cal-1280x800.png" title="Misty Woods - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/cal/oct-13-misty-woods-cal-1440x900.png" title="Misty Woods - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/cal/oct-13-misty-woods-cal-1920x1200.png" title="Misty Woods - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/nocal/oct-13-misty-woods-nocal-320x480.png" title="Misty Woods - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/nocal/oct-13-misty-woods-nocal-1024x1024.png" title="Misty Woods - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/nocal/oct-13-misty-woods-nocal-1280x800.png" title="Misty Woods - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/nocal/oct-13-misty-woods-nocal-1440x900.png" title="Misty Woods - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/misty-woods/nocal/oct-13-misty-woods-nocal-1920x1200.png" title="Misty Woods - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    </ul>
    <h3>A Very Bright Halloween</h3>
    <p>“We want to remind everyone to stay safe this Halloween when trick-or-treating, maybe carry a portable lantern or flashlight. We also wanted to share some ideas we had for adding a special bright touch to your costumes this year – battery operated Halloween string lights!” — Designed by Carla Genovesio (from <a href="http://www.lights.com/" rel="nofollow external" class="bo">Lights.com</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/oct-13-a-very-bright-halloween-full.jpg" title="A Very Bright Halloween" rel="nofollow external" class="bo"><img width="500" height="281" alt="A Very Bright Halloween" src="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/oct-13-a-very-bright-halloween-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/oct-13-a-very-bright-halloween-preview.jpg" title="A Very Bright Halloween - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-320x480.jpg" title="A Very Bright Halloween - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-640x480.jpg" title="A Very Bright Halloween - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-800x480.jpg" title="A Very Bright Halloween - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-800x600.jpg" title="A Very Bright Halloween - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1024x768.jpg" title="A Very Bright Halloween - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1024x1024.jpg" title="A Very Bright Halloween - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1152x864.jpg" title="A Very Bright Halloween - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1280x720.jpg" title="A Very Bright Halloween - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1280x800.jpg" title="A Very Bright Halloween - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1280x960.jpg" title="A Very Bright Halloween - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1280x1024.jpg" title="A Very Bright Halloween - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1400x1050.jpg" title="A Very Bright Halloween - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1440x900.jpg" title="A Very Bright Halloween - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1600x1200.jpg" title="A Very Bright Halloween - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1680x1050.jpg" title="A Very Bright Halloween - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1680x1200.jpg" title="A Very Bright Halloween - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1920x1080.jpg" title="A Very Bright Halloween - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1920x1200.jpg" title="A Very Bright Halloween - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-1920x1440.jpg" title="A Very Bright Halloween - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/cal/oct-13-a-very-bright-halloween-cal-2560x1440.jpg" title="A Very Bright Halloween - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-320x480.jpg" title="A Very Bright Halloween - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-640x480.jpg" title="A Very Bright Halloween - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-800x480.jpg" title="A Very Bright Halloween - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-800x600.jpg" title="A Very Bright Halloween - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1024x768.jpg" title="A Very Bright Halloween - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1024x1024.jpg" title="A Very Bright Halloween - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1152x864.jpg" title="A Very Bright Halloween - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1280x720.jpg" title="A Very Bright Halloween - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1280x800.jpg" title="A Very Bright Halloween - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1280x960.jpg" title="A Very Bright Halloween - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1280x1024.jpg" title="A Very Bright Halloween - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1400x1050.jpg" title="A Very Bright Halloween - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1440x900.jpg" title="A Very Bright Halloween - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1600x1200.jpg" title="A Very Bright Halloween - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1680x1050.jpg" title="A Very Bright Halloween - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1680x1200.jpg" title="A Very Bright Halloween - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1920x1080.jpg" title="A Very Bright Halloween - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1920x1200.jpg" title="A Very Bright Halloween - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-1920x1440.jpg" title="A Very Bright Halloween - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-very-bright-halloween/nocal/oct-13-a-very-bright-halloween-nocal-2560x1440.jpg" title="A Very Bright Halloween - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Fall Colors</h3>
    <p>“I was inspired to create this wallpaper by the natural elements of fall. Comfortable clothes, crisp air, hot chocolate and the vibrant colors of autumn bring a joy to my soul unlike any other season. I took this picture on one of my walks near my house. Embrace the change and absorb the wonderful beauty of this season!” — Designed by <a href="http://codycourmier.com/" rel="nofollow external" class="bo">Cody Courmier</a> from Denver, CO.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/oct-13-fall-colors-full.jpg" title="Fall Colors" rel="nofollow external" class="bo"><img width="500" height="281" alt="Fall Colors" src="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/oct-13-fall-colors-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/oct-13-fall-colors-preview.jpg" title="Fall Colors - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-320x480.jpg" title="Fall Colors - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-640x480.jpg" title="Fall Colors - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-1024x768.jpg" title="Fall Colors - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-1280x800.jpg" title="Fall Colors - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-1440x900.jpg" title="Fall Colors - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-1680x1050.jpg" title="Fall Colors - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-1920x1080.jpg" title="Fall Colors - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/cal/oct-13-fall-colors-cal-2560x1440.jpg" title="Fall Colors - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-320x480.jpg" title="Fall Colors - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-640x480.jpg" title="Fall Colors - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-1024x768.jpg" title="Fall Colors - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-1280x800.jpg" title="Fall Colors - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-1440x900.jpg" title="Fall Colors - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-1680x1050.jpg" title="Fall Colors - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-1920x1080.jpg" title="Fall Colors - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/fall-colors/nocal/oct-13-fall-colors-nocal-2560x1440.jpg" title="Fall Colors - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Geometric Series: Lady Gaga</h3>
    <p>“The Geometric Series is a series of graphite-on-paper artworks that celebrates and commemorates some of the world’s most popular – and controversial – celebrities. Each artwork is completed using nothing but geometric shapes (mostly triangles), resulting in an interesting pseudo-3D portrait. This artwork is the second in the series, featuring the Queen of Monsters, Lady Gaga. Hope you guys like it!” — Designed by <a href="http://dontburstthebubble.wordpress.com" rel="nofollow external" class="bo">Teo Yu Sheng</a> from Singapore.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/oct-13-geometric-series---lady-gaga-full.jpg" title="Geometric Series - Lady Gaga" rel="nofollow external" class="bo"><img width="500" height="281" alt="Geometric Series - Lady Gaga" src="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/oct-13-geometric-series---lady-gaga-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/oct-13-geometric-series---lady-gaga-preview.jpg" title="Geometric Series - Lady Gaga - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-1280x720.jpg" title="Geometric Series - Lady Gaga - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-1280x800.jpg" title="Geometric Series - Lady Gaga - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-1440x900.jpg" title="Geometric Series - Lady Gaga - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-1920x1080.jpg" title="Geometric Series - Lady Gaga - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-1920x1200.jpg" title="Geometric Series - Lady Gaga - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-2560x1440.jpg" title="Geometric Series - Lady Gaga - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/cal/oct-13-geometric-series---lady-gaga-cal-2880x1800.jpg" title="Geometric Series - Lady Gaga - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-1280x720.jpg" title="Geometric Series - Lady Gaga - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-1280x800.jpg" title="Geometric Series - Lady Gaga - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-1440x900.jpg" title="Geometric Series - Lady Gaga - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-1920x1080.jpg" title="Geometric Series - Lady Gaga - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-1920x1200.jpg" title="Geometric Series - Lady Gaga - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/geometric-series---lady-gaga/nocal/oct-13-geometric-series---lady-gaga-nocal-2560x1440.jpg" title="Geometric Series - Lady Gaga - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>A Night To Sparkle!</h3>
    <p>“October brings Halloween! A fun time of year, where we get to dress up and go Trick or Treating! I have fond memories of me and my family lighting sparklers, attempting to write your name with them, and throwing them into the night sky when theyre almost done! :)” — Designed by <a href="http://www.ekweb.com" rel="nofollow external" class="bo">Kelly</a> from Ireland.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/oct-13-a-night-to-sparkle-full.png" title="A Night to Sparkle!" rel="nofollow external" class="bo"><img width="500" height="281" alt="A Night to Sparkle!" src="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/oct-13-a-night-to-sparkle-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/oct-13-a-night-to-sparkle-preview.png" title="A Night to Sparkle! - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-800x480.png" title="A Night to Sparkle! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-1024x768.png" title="A Night to Sparkle! - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-1280x720.png" title="A Night to Sparkle! - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-1280x960.png" title="A Night to Sparkle! - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-1920x1080.png" title="A Night to Sparkle! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/cal/oct-13-a-night-to-sparkle-cal-2560x1440.png" title="A Night to Sparkle! - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-800x480.png" title="A Night to Sparkle! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-1024x768.png" title="A Night to Sparkle! - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-1280x720.png" title="A Night to Sparkle! - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-1280x960.png" title="A Night to Sparkle! - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-1920x1080.png" title="A Night to Sparkle! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/a-night-to-sparkle/nocal/oct-13-a-night-to-sparkle-nocal-2560x1440.png" title="A Night to Sparkle! - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>October Fun</h3>
    <p>“My wallpaper was inspired by my love for the Autumn season. I wanted to capture some of my favorite aspects about this time of the year and put them into a design that anyone can enjoy on their computer screen. I love animals so I decided to put in a classic black cat and her family. I also wanted to emphasize the lovely colors of the season throughout the piece with the changing foliage and the landscape. I also wanted this design to have a family friendly, kid feel. The style is almost like a coloring book page, and has a “cutesy” aspect that kids will enjoy.” — Designed by <a href="http://laurenmcnallen27.blogspot.com/" rel="nofollow external" class="bo">Lauren McNallen</a> from Pennsylvania, USA.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/oct-13-october-fun-full.png" title="October Fun" rel="nofollow external" class="bo"><img width="500" height="281" alt="October Fun" src="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/oct-13-october-fun-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/oct-13-october-fun-preview.png" title="October Fun - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/cal/oct-13-october-fun-cal-320x480.png" title="October Fun - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/cal/oct-13-october-fun-cal-1024x1024.png" title="October Fun - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/cal/oct-13-october-fun-cal-1280x800.png" title="October Fun - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/cal/oct-13-october-fun-cal-1440x900.png" title="October Fun - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/cal/oct-13-october-fun-cal-1920x1200.png" title="October Fun - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/nocal/oct-13-october-fun-nocal-320x480.png" title="October Fun - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/nocal/oct-13-october-fun-nocal-1024x1024.png" title="October Fun - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/nocal/oct-13-october-fun-nocal-1280x800.png" title="October Fun - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/nocal/oct-13-october-fun-nocal-1440x900.png" title="October Fun - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/october-fun/nocal/oct-13-october-fun-nocal-1920x1200.png" title="October Fun - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    </ul>
    <h3>Sheepish Fall Knitters</h3>
    <p>“When I think of October I think of fall, cold, and sweaters. It just so happens that my mom knits and especially during the fall season she goes overload with all the socks, hats, and sweaters she knits for all us kids. So I decided to put that idea into a comic-like illustration. I felt like a little humor was needed to make the illustration a little more fun.” — Designed by <a href="http://emilyallard49.blogspot.com/" rel="nofollow external" class="bo">Emily Allard</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/oct-13-sheepish-fall-knitters-full.png" title="Sheepish Fall Knitters" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sheepish Fall Knitters" src="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/oct-13-sheepish-fall-knitters-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/oct-13-sheepish-fall-knitters-preview.png" title="Sheepish Fall Knitters - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/cal/oct-13-sheepish-fall-knitters-cal-1024x1024.png" title="Sheepish Fall Knitters - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/cal/oct-13-sheepish-fall-knitters-cal-1280x800.png" title="Sheepish Fall Knitters - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/cal/oct-13-sheepish-fall-knitters-cal-1440x900.png" title="Sheepish Fall Knitters - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/cal/oct-13-sheepish-fall-knitters-cal-1920x1200.png" title="Sheepish Fall Knitters - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/nocal/oct-13-sheepish-fall-knitters-nocal-1024x1024.png" title="Sheepish Fall Knitters - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/nocal/oct-13-sheepish-fall-knitters-nocal-1280x800.png" title="Sheepish Fall Knitters - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/nocal/oct-13-sheepish-fall-knitters-nocal-1440x900.png" title="Sheepish Fall Knitters - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/oct-13/sheepish-fall-knitters/nocal/oct-13-sheepish-fall-knitters-nocal-1920x1200.png" title="Sheepish Fall Knitters - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>    </li>
    </ul>
    <h3>Join In Next Month!</h3>
    <p>Please note that we respect and carefully consider the ideas and motivation behind each and every artist’s work. This is why we give all artists the <strong>full freedom to explore their creativity</strong> and express emotions and experience throughout their works. This is also why the themes of the wallpapers weren’t anyhow influenced by us, but rather designed from scratch by the artists themselves.</p>
    <p>A big thank you to all the designers for their participation. We encourage you to participate and <a href="http://www.smashingmagazine.com/2008/03/19/desktop-wallpaper-calendar-join-in/" rel="nofollow external" class="bo">join in next month</a>!</p>
    <h4>What’s Your Favorite?</h4>
    <p>What’s your favorite theme or wallpaper for this month? Please let us know in the comments section below.</p>
    <hr>
    <p><small>© The Smashing Editorial for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        We always try our best to challenge your artistic abilities and produce some interesting, beautiful and creative artwork. As designers, we usually turn to different sources of inspiration....</Summary>
<Website>http://www.smashingmagazine.com/2013/09/30/desktop-wallpaper-calendars-october-2013/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36333/guest@my.umbc.edu/a03c9e81d43148b0d4ca864148c8604f/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>graphics</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wallpapers</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 09:17:35 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 09:17:35 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36331" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36331">
<Title>Green Future: Seeds and Synergies</Title>
<Body>
<![CDATA[
    <div class="html-content">Imagine driving a car fueled by reprocessed household trash. Or 
    visiting a farm where a herd of beef cattle is fed with algae that might
     be vastly better for the environment than the corn and grains in common
     use today.
    <p>Those are just two of the visions being that have been pursued over 
    the past four years by small companies in the Maryland Clean Energy 
    Technology Incubator (CETI)  at bwtech@UMBC Research &amp; Technology 
    Park.</p>
    <p>As the youngest of three business incubators housed within the 
    research park, CETI has had its share of growing pains.  When the 
    incubator was founded in 2009, the clean-energy sector was awash in 
    federal stimulus money. Today, companies must scrap for every bit of 
    private investment and public research support they can muster.</p>
    <p>Fledgling clean-energy companies in the CETI get inexpensive office 
    space, ample laboratory facilities, and a host of less-tangible benefits
     – including proximity to UMBC faculty members and students and 
    membership in a statewide network of energy companies – to help grow 
    their businesses.</p>
    <p>“You can meet people here who you’d never meet if you rented offices 
    in a random building in Columbia,” says Bjorn Frogner, who serves as the
     incubator’s “entrepreneur-in-residence.” With more than three decades 
    of experience in energy and software companies, Frogner gives CETI 
    companies informal advice and troubleshoots problems related to grant 
    proposals, patenting, and human resources.</p>
    <p>“Having an entrepreneur-in-residence is a real value,” says George 
    Oyler, the founder of Clean Green Chesapeake, a start-up company 
    piloting systems for converting algae to cattle feed and liquid 
    transportation fuels. “My background was as an M.D./Ph.D. Many academics
     dream about transitioning into some sort of start-up, but there’s not a
     lot of appreciation for what it means to be in business as opposed to 
    research. It is really helpful to have people like Bjorn who have a 
    history in this kind of work.”</p>
    <p>Perhaps the best-known clean-energy company at BWTECH is Fiberight, 
    which will soon break ground on a large-scale plant in Iowa that will 
    convert municipal waste into ethanol fuels. (The company has begun the 
    planning-and-permitting process for constructing similar plants in 
    Maryland.) Fiberight was already two years old when the CETI was 
    founded, company CEO Craig Stuart-Paul leapt at the chance to move the 
    company’s headquarters there when he learned about its creation.</p>
    <p>“There’s no question that you get better access to academic expertise
     if you’re located in a center like this,” Stuart-Paul says. His company
     has hired three UMBC graduates as full-time staff members and regularly
     brings UMBC students aboard as summer interns.</p>
    <p><strong>Bryan Kim ’13, chemical engineering</strong>, worked as an intern at 
    Fiberight in 2012 and accepted a full-time job this past May after 
    graduation. “I’ve mostly been creating process-and-instrumentation 
    diagrams for our small pilot plant in Virginia,” Kim says. “But I’ve met
     everyone, and I’ve gotten to do a little bit of everything. That’s the 
    great thing about working for a start-up. This is the best introduction I
     can imagine to the post-college work world.”</p>
    <p>Frogner also hopes that some of the collective expertise of companies
     at CETI can pay off for the UMBC campus itself, including the 
    possibility of applying “smart grid” technology developed at the 
    incubator to future campus construction projects.</p>
    <p>Other companies in the clean-energy incubator include Plant Sensory 
    Systems, which has large federal grants to support the development of 
    genetically-engineered plants with high oil yields and low requirements 
    for nitrate fertilizers; Innovative Bios, which converts animal wastes 
    into cell culture broths for the biotechnology industry; and Agira 
    Energy, a solar-cell manufacturer.</p>
    <p>David J. Fink, director of entrepreneurial services at bwtech@UMBC, 
    says that he believes that even more companies at CETI will be helping 
    create a greener future in the marketplace – and maybe sooner than 
    anyone thinks.</p>
    <p>“We have today a very strong and diverse set of companies,” Fink 
    says, “and they’re all geared toward bringing products and services to 
    market very rapidly.”</p>
    <p>– <em>David Glenn</em></p>
    </div>
]]>
</Body>
<Summary>Imagine driving a car fueled by reprocessed household trash. Or  visiting a farm where a herd of beef cattle is fed with algae that might  be vastly better for the environment than the corn and...</Summary>
<Website>http://umbcmagazine.wordpress.com/umbc-magazine-fall-2013/green-future-seeds-and-synergies/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36331/guest@my.umbc.edu/9a56807dfb56019acb17b14a17bb5c0f/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 09:16:24 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36328" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36328">
<Title>What Happens to the Brain When You Meditate</Title>
<Tagline>Wellness Article of the Week: Life Hacker</Tagline>
<Body>
<![CDATA[
    <div class="html-content">"Ever since my dad tried to convince me to meditate when I was about 12, I’ve been fairly skeptical of this practice. It always seemed so vague and hard to understand that I just decided it wasn’t for me. More recently, I’ve actually found how simple (not easy, but simple) meditation can be and what huge benefit it can have for my day to day happiness.<br><br>As an adult, I first started my meditation practice with just two minutes per day. Two minutes! I got that idea from Leo Babauta’s Zen Habits blog, where he points out how starting with a tiny habit is the first step to consistently achieving it. So even though two minutes won’t make much difference, that’s where I started. Whether you’re as skeptical as I used to be, or you’re well ahead of me with a meditation habit of several hours, I think it’s always interesting to find out how new habits affect our brains. I had a look into meditation to see what’s going on inside our brains when we do this, and what I found is pretty interesting."<br><br><a href="http://lifehacker.com/what-happens-to-the-brain-when-you-meditate-and-how-it-1202533314" rel="nofollow external" class="bo">Read more...</a><br>
    </div>
]]>
</Body>
<Summary>"Ever since my dad tried to convince me to meditate when I was about 12, I’ve been fairly skeptical of this practice. It always seemed so vague and hard to understand that I just decided it wasn’t...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36328/guest@my.umbc.edu/d8608df0ee15249a45e2d320ff2ff046/api/pixel</TrackingUrl>
<Tag>brain</Tag>
<Tag>happiness</Tag>
<Tag>health</Tag>
<Tag>meditation</Tag>
<Tag>well-being</Tag>
<Tag>wellness</Tag>
<Group token="wellness">Wellness Initiative</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/wellness</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xsmall.png?1504100162</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/original.jpg?1504100162</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xxlarge.png?1504100162</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xlarge.png?1504100162</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/large.png?1504100162</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/medium.png?1504100162</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/small.png?1504100162</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xsmall.png?1504100162</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xxsmall.png?1504100162</AvatarUrl>
<Sponsor>Wellness Initiative</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/xxlarge.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/xlarge.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/large.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/medium.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/small.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/xsmall.jpg?1380544160</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/328/3fd149edeb6af7e26837c50aea1560c5/xxsmall.jpg?1380544160</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 08:29:33 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36334" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36334">
<Title>DealBook: S.E.C. Again Takes On Mark Cuban in Insider Case</Title>
<Body>
<![CDATA[
    <div class="html-content">On Monday, a new trial begins in the Securities and Exchange Commission’s five-year battle with the Dallas Mavericks owner over accusations of insider trading.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F29%2Fs-e-c-again-takes-on-mark-cuban-in-insider-case%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+S.E.C.+Again+Takes+On+Mark+Cuban+in+Insider+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F29%2Fs-e-c-again-takes-on-mark-cuban-in-insider-case%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+S.E.C.+Again+Takes+On+Mark+Cuban+in+Insider+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F29%2Fs-e-c-again-takes-on-mark-cuban-in-insider-case%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+S.E.C.+Again+Takes+On+Mark+Cuban+in+Insider+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F29%2Fs-e-c-again-takes-on-mark-cuban-in-insider-case%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+S.E.C.+Again+Takes+On+Mark+Cuban+in+Insider+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F29%2Fs-e-c-again-takes-on-mark-cuban-in-insider-case%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+S.E.C.+Again+Takes+On+Mark+Cuban+in+Insider+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176965033235/u/0/f/640387/c/34625/s/31e1333d/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>On Monday, a new trial begins in the Securities and Exchange Commission’s five-year battle with the Dallas Mavericks owner over accusations of insider trading.      </Summary>
<Website>http://dealbook.nytimes.com/2013/09/29/s-e-c-again-takes-on-mark-cuban-in-insider-case/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36334/guest@my.umbc.edu/8591c1af0b3da9c7c0e0fcc7aceba2c8/api/pixel</TrackingUrl>
<Tag>cuban-mark</Tag>
<Tag>dallas-mavericks</Tag>
<Tag>dallas-tex</Tag>
<Tag>insider-trading</Tag>
<Tag>new</Tag>
<Tag>securities-and-commodities-violations</Tag>
<Tag>securities-and-exchange-commission</Tag>
<Tag>technology</Tag>
<Tag>top-headline-2</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 06:12:13 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 11:37:16 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36326" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36326">
<Title>5 Things That Slow Down Your Startup&#8217;s Growth</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Creating a startup has never been easier. And once you get going — depending on your drive, vision and personal motivation — you will likely experience rapid growth and productivity at the start of your journey. Everything’s new and there’s seemingly endless potential to grow.</p>
    <p>However, once the honeymoon period fades and reality sets in — and it will at some point — you will be faced with doubts, fear, and insecurity. This point in time is a crucial fork in the road; one path will move you forward and the other will lead you astray.</p>
    <p></p>
    <p>When that time comes, it’s important to deal with the following common issues experienced by most startup founders.</p>
    <h3>1. Waiting for Everything to Be Perfect</h3>
    <p>Sometimes it’s hard to get things moving because you want things to be flawless.</p>
    <p>However, perfection never happens. Perfection is a pipe dream.</p>
    <p>To succeed in business means <a href="http://gettingreal.37signals.com/ch04_Ignore_Details_Early_On.php" title="Ignore Details Early On" rel="nofollow external" class="bo">focusing on the things that matter.</a> Moving forward and growing means not letting inconsequential details derail you from launching your product or distracting you from your vision.</p>
    <p>After all, a startup business is like a living organism, it will evolve over time. As long as you have the core features in a sufficient state, you will be fine.</p>
    <p>It’s best to take your product to the market swiftly and improve it over time, rather than agonizing over non-essential features and ending up missing the mark. As LinkedIn co-founder <a href="http://blog.kissmetrics.com/hoffmans-advice-for-entrepreneurs/" rel="nofollow external" class="bo">Reid Hoffman</a> once said, <em>"If you’re not embarrassed by your first launch, you’ve launched too late."</em></p>
    <p>You have to start some time, and that time isn’t when everything is perfect.</p>
    <p>Even Apple — now one of the most successful companies in the world — started with a humble and imperfect product: The <a href="http://en.wikipedia.org/wiki/Apple_I" rel="nofollow external" class="bo">Apple I computer.</a></p>
    <p><img src="http://cdn.sixrevisions.com/0379-01_apple_i_by_euthman.jpg" width="550" height="334" alt="Apple I computer" style="max-width: 100%; height: auto;"><span>Source: <a href="http://www.flickr.com/photos/euthman/281712899/" rel="nofollow external" class="bo">Ed Uthman</a></span></p>
    <p>The Apple I lacked even the most basic features of a computer, like an input device and monitor, which, even at the time, were already expected features of consumer-oriented computers.</p>
    <p>However, the Apple I was an innovative product at the time because it was easier to operate compared to other options. Also it could display the computer’s output using only an ordinary television.</p>
    <p>It didn’t matter that the Apple I lacked features that consumers expected, or that not every aspect of the product was flawless. What did matter, however, is that the computer had a couple of game-changing features that a segment of computer enthusiasts appreciated.</p>
    <p>Successful entrepreneur and developer Dave Winer says this <a href="http://scripting.com/davenet/1995/09/03/wemakeshittysoftware.html" rel="nofollow external" class="bo">about building software</a>: <em>"Software is a process, it’s never finished, it’s always evolving. That’s its nature. We know our software sucks. But it’s shipping! Next time we’ll do better, but even then it will be shitty. The only software <strong>that’s perfect is one you’re dreaming about.</strong>"</em></p>
    <h4>Suggested Reading</h4>
    <ul>
    <li>
    <a href="https://medium.com/p/72a3f1b2d136" rel="nofollow external" class="bo">Progress Not Perfection</a> (medium.com)</li>
    <li>
    <a href="http://www.defmacro.org/ramblings/taming-perfectionism.html" rel="nofollow external" class="bo">Taming Perfectionism</a> (<a href="http://www.defmacro.org">www.defmacro.org</a>)</li>
    <li>
    <a href="https://medium.com/p/ec8e85e1df9e" rel="nofollow external" class="bo">I Want to Punch Perfection in The Face</a> (medium.com)</li>
    <li>
    <a href="http://www.neiland.net/blog/article/just-ship-it/" rel="nofollow external" class="bo">Just Ship It</a> (<a href="http://www.neiland.net">www.neiland.net</a>)</li>
    </ul>
    <h3>2. Trying to Live Up to Your Competitors</h3>
    <p>It can be all too easy to compare yourself to your competitors. This process can be intimidating and discouraging, too.</p>
    <p>Keeping up with industry news and knowing about your competition is an essential task for all business founders. But when it becomes an obsession, it can be unhealthy for your company.</p>
    <p>Don’t waste time thinking about your competitors’ every move. Only you can be the maker of your business’s success. Analyzing the competition can be a long, dark maze in which you can easily lose yourself in.</p>
    <p>Paul Graham — a successful entrepreneur, startup advisor and investor behind companies like Dropbox, Airbnb, Stripe and Reddit — pointed out in a <a href="http://paulgraham.com/startupideas.html" rel="nofollow external" class="bo">blog post</a> that startups rarely fail because of its competitors.</p>
    <p>A crowded market, according to Graham, is a signal that there’s an unfulfilled need in that market. The presence of competitors should be viewed as a healthy sign of market viability, rather than a threat.</p>
    <p>Do your competitor analysis and keep abreast with what’s going on in your industry, but don’t let it discourage you from building your vision.</p>
    <h4>Suggested Reading</h4>
    <ul>
    <li>
    <a href="http://startupnorth.ca/2013/06/21/stop-stressing-about-startup-competitors/" rel="nofollow external" class="bo">Stop stressing about startup competitors</a> (startupnorth.ca)</li>
    <li>
    <a href="http://www.insideindianabusiness.com/contributors.asp?id=2678" rel="nofollow external" class="bo">Competing in a Startup World: Lessons From a CFO</a> (insideindianabusiness.com)</li>
    </ul>
    <h3>3. Doing Everything Yourself</h3>
    <p>Don’t feel compelled to wear all the hats of HR, marketing, IT, finance, web development, and sales. Your energies are best channeled into a few specific and strategically crucial tasks, so make sure you get help from other people. Delegation is an important skill all entrepreneurs must master.</p>
    <p>Tim O’Reilly, founder of O’Reilly Media, <a href="http://radar.oreilly.com/2013/09/how-i-failed.html" rel="nofollow external" class="bo">looked back at his career</a> as an entrepreneur and what he wished he had done differently. O’Reilly notes that one of his biggest failures was trying to do everything himself: <em>"I believe it was Harold Geneen who once said, ‘The skill of management is to achieve your objectives through the efforts of others.’ Yet, like so many entrepreneurs, my first instinct was not to hire the team to go after a new product or market, but to do it myself, or with the team I already had."</em></p>
    <p>Empower the relevant people in your business and give them the best tools you can afford to let them do their job.</p>
    <h3>4. Taking Yourself Too Seriously</h3>
    <p>With the number of business-critical decisions you will have to take, it’s easy to become a little too serious.</p>
    <p>Serial entrepreneur Sir Richard Branson is probably the ultimate embodiment of a good-humored startup founder. Behind his cheeky smile, however, lays a very solid business rationale: a sense of humor and positivity tends to create a culture of openness where employees are more likely to be creative. <em>"Granted, smiling can’t solve every problem, but it can make almost any situation a little better,"</em> Branson <a href="http://www.entrepreneur.com/article/225074" rel="nofollow external" class="bo">says.</a></p>
    <p>Maintaining positive morale is crucial in the close confines of a startup.</p>
    <h3>5. Fear of Failure</h3>
    <p>There’s nothing wrong with being wrong. Perhaps the most important thing to remember is that mistakes will happen. You will always wish you had done certain things differently.</p>
    <p>The art of getting things right is also about getting things wrong. Nobody has ever had a perfect idea that didn’t need any work or changes — accepting this notion demonstrates a self-awareness and maturity that will be integral to the success of any young business.</p>
    <p>Many successful entrepreneurs, from Rand Fishkin of Moz to Hiten Shah from KISSmetrics, <a href="http://blog.bufferapp.com/failure-entrepreneur-12-successful-entrepreneurs-tell-us-the-biggest-lessons-theyve-learned" rel="nofollow external" class="bo">have encountered hurdles along the way but have got up and kept going.</a> </p>
    <p>The key to their success was the ability to learn what had gone wrong, why it had gone wrong, and how they could stop it from happening again.</p>
    <h4>Suggested Reading</h4>
    <ul>
    <li>
    <a href="http://venturebeat.com/2013/08/22/ignore-startup-failure-stats/" rel="nofollow external" class="bo">Why You Should Ignore Startup Failure Stats</a> (venturebeat.com)</li>
    <li>
    <a href="http://alumni.stanford.edu/get/page/magazine/article/?article_id=41260" rel="nofollow external" class="bo">How My Start-Up Failed</a> (alumni.stanford.edu)</li>
    </ul>
    <h3>And What if You Do Fail?</h3>
    <p>Try to make failure as low-cost as possible and learn from it as much as you can.</p>
    <p>And <a href="http://techcrunch.com/2012/02/14/in-startups-and-life-you-need-plan-a-b-and-z/" rel="nofollow external" class="bo">have a plan Z.</a> Having a backup plan if things go really wrong (which ensures you will have a roof on your head even if it means going back to Mom and Dad’s) will help you face difficult times with more objectivity and come out of it, if nothing else, at least a little wiser.</p>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/project-management/startups-myths/" rel="nofollow external" class="bo">10 Myths about Startups</a></li>
    <li><a href="http://sixrevisions.com/project-management/ways-more-productive-web-developer/" rel="nofollow external" class="bo">10 Ways to Be a More Productive Web Developer</a></li>
    <li><a href="http://sixrevisions.com/project-management/website-architecture/" rel="nofollow external" class="bo">The Secret to Building Large Websites: Website Architecture</a></li>
    <li><a href="http://sixrevisions.com/project-management/always-deploy-cms/" rel="nofollow external" class="bo">Should We Always Deploy Content Management Systems?</a></li>
    <li>Related categories: <a href="http://sixrevisions.com/category/business/" rel="nofollow external" class="bo">Business</a> and <a href="http://sixrevisions.com/category/project-management/" rel="nofollow external" class="bo">Project Management</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://cdn.sixrevisions.com/authors/sabelline_chicot_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Sabelline Chicot</strong> is a content strategist at <em><a href="http://www.further.co.uk/" rel="nofollow external" class="bo">Further</a>,</em> an award-winning Web marketing agency.  She writes about entrepreneurship and tech topics such as <em><a href="http://www.avg.com/ww-en/business-security" rel="nofollow external" class="bo">IT security</a>.</em> She’s always on the lookout for tech solutions that truly solve problems. Follow her on Twitter: <em><a href="https://twitter.com/sabellinechicot" rel="nofollow external" class="bo">@sabellinechicot</a>.</em></span></p>
    <p>The post <a href="http://sixrevisions.com/business/startups-growth-thing-slow-down/" rel="nofollow external" class="bo">5 Things That Slow Down Your Startup’s Growth</a> appeared first on <a href="http://sixrevisions.com" rel="nofollow external" class="bo">Six Revisions</a>.</p>
    </div>
]]>
</Body>
<Summary>Creating a startup has never been easier. And once you get going — depending on your drive, vision and personal motivation — you will likely experience rapid growth and productivity at the start...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/xoYraV0RtYY/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36326/guest@my.umbc.edu/4e51e44860bf8752676a039eb73b5b4a/api/pixel</TrackingUrl>
<Tag>business</Tag>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 06:00:12 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 06:00:12 -0400</EditAt>
</NewsItem>

</News>
