<?xml version="1.0"?>
<News hasArchived="true" page="7723" pageCount="10778" pageSize="10" timestamp="Mon, 31 Aug 2026 11:22:51 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7723&amp;range=2">
<NewsItem contentIssues="false" id="106847" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106847">
<Title>Third Annual Scholarship Luncheon</Title>
<Body>
<![CDATA[
    <div class="html-content">Tomorrow marks the third annual Scholarship Luncheon celebrating donors and their contribution to support our UMBC students. This yearly meet-and-greet …</div>
]]>
</Body>
<Summary>Tomorrow marks the third annual Scholarship Luncheon celebrating donors and their contribution to support our UMBC students. This yearly meet-and-greet …</Summary>
<Website>https://magazine.umbc.edu/third-annual-scholarship-luncheon/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106847/guest@my.umbc.edu/b9bb5304a36041418e30b5f8a5c08479/api/pixel</TrackingUrl>
<Tag>impact</Tag>
<Tag>ken-pittman</Tag>
<Tag>linehan-art-scholar</Tag>
<Tag>pnc-wealth-management</Tag>
<Tag>scholarship</Tag>
<Tag>scholarship-luncheon</Tag>
<Tag>umbc</Tag>
<Tag>umbc-scholarships</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/images/avatars/group/8/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/8/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/8/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 17:20:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42326" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42326">
<Title>Popping Out of Hidden Overflow</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://loewy.com" rel="nofollow external" class="bo">Agop Shirinian</a>. Agop ran into an interesting scenario where he needed an element to be scrollable in one direction, while allowing the overflow in the other direction. You'd think that's what overflow-x and overflow-y are for, but it's not that simple. I'll let Agop explain.</em></p>
    <p></p>
    <p>So you're tasked with creating a scrollable menu with submenus that pop out when you hover over a parent menu item.</p>
    <p>Simple!</p>
    <p>Create a list for the menu, add some nested lists for the submenus, position the nested lists based on their parent list items, voilà!</p>
    <p>See the Pen <a href="http://codepen.io/agop/pen/kduzh" rel="nofollow external" class="bo">Scrollable menu with pop out submenus (broken)</a> by Agop (<a href="http://codepen.io/agop" rel="nofollow external" class="bo">@agop</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>Wait, that's not right. Oh, of course, we used <code>overflow: auto</code> - perhaps if we use <code>overflow-x: visible</code>, the horizontal overflow of the submenus will be visible:</p>
    <p>See the Pen <a href="http://codepen.io/agop/pen/xyFJd" rel="nofollow external" class="bo">Scrollable menu with pop out submenus (broken #2)</a> by Agop (<a href="http://codepen.io/agop" rel="nofollow external" class="bo">@agop</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>What gives? Why do we still get scrollbars?</p>
    <h3>The Problem</h3>
    <p>If we look at the <a href="http://www.w3.org/TR/css3-box/#overflow-x" rel="nofollow external" class="bo">W3C spec</a>, we find the following explanation:</p>
    <blockquote><p>The computed values of ‘overflow-x’ and ‘overflow-y’ are the same as their specified values, except that some combinations with ‘visible’ are not possible: if one is specified as ‘visible’ and the other is ‘scroll’ or ‘auto’, then ‘visible’ is set to ‘auto’.</p></blockquote>
    <p>Basically, this:</p>
    <pre><code>overflow-x: visible;&#x000A;    overflow-y: auto;</code></pre>
    <p>Turns into this:</p>
    <pre><code>overflow-x: auto;&#x000A;    overflow-y: auto;</code></pre>
    <p>So we can't have visible horizontal overflow if the vertical overflow is invisible, and vice versa.</p>
    <p>And if we can't have visible horizontal overflow, we can't have our pop out submenus!</p>
    <h3>The Solution</h3>
    <p>Interestingly enough, if we omit the <code>position: relative</code> from the menu items, the submenus do show up, <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/position" rel="nofollow external" class="bo">positioned based on their closest positioned ancestor</a>. In this case, they don't have a positioned ancestor, so they're positioned relative to <code>&lt;body&gt;</code>:</p>
    <p>See the Pen <a href="http://codepen.io/agop/pen/Bkfdo" rel="nofollow external" class="bo">Scrollable menu with pop out submenus (step 1)</a> by Agop (<a href="http://codepen.io/agop" rel="nofollow external" class="bo">@agop</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>Basically, in order for an absolutely positioned element to appear outside of an element with <code>overflow: hidden</code>, its closest positioned ancestor must also be an ancestor of the element with <code>overflow: hidden</code>.</p>
    <p>Knowing this, we can add a wrapper around the menus to act as the closest positioned ancestor for each submenu. Then, whenever the user hovers over a menu item, we can position the submenu wrappers using a bit of JavaScript:</p>
    <p>See the Pen <a href="http://codepen.io/agop/pen/itbew" rel="nofollow external" class="bo">Scrollable menu with pop out submenus</a> by Agop (<a href="http://codepen.io/agop" rel="nofollow external" class="bo">@agop</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>And that's it! Since neither the menus nor the menu items are positioned, the submenus are able to pop out of the hidden/scrollable overflow. Now we can have as many levels of nested submenus as we want, and we won't get any undesired clipping.</p>
    <h3>Takeaway</h3>
    <p>Unfortunately, this method of showing items that would otherwise be hidden is very obscure.</p>
    <p>It'd be nice if we could specify a clip depth, which would control which ancestor in the hiearchy would be responsible for clipping a particular element:</p>
    <pre><code>./* Fair warning: not real code */&#x000A;    .submenu {&#x000A;      /* only an ancestor 2 levels up can clip this element */ &#x000A;      clip-depth: 2;&#x000A;    }</code></pre>
    <p>Or, even better, perhaps we could specify the clipping parent by a CSS selector:</p>
    <pre><code>/* Fair warning: not real code */&#x000A;    .submenu {&#x000A;      /* only an ancestor that matches the .panel selector can clip this element */&#x000A;      clip-parent: .panel;&#x000A;    }</code></pre>
    <hr>
    <p><small><a href="http://css-tricks.com/popping-hidden-overflow/" rel="nofollow external" class="bo">Popping Out of Hidden Overflow</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Agop Shirinian. Agop ran into an interesting scenario where he needed an element to be scrollable in one direction, while allowing the overflow in the other...</Summary>
<Website>http://css-tricks.com/popping-hidden-overflow/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42326/guest@my.umbc.edu/ee65f0164b352b82a218a7c244b04627/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</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>Tue, 11 Mar 2014 17:11:42 -0400</PostedAt>
<EditAt>Tue, 11 Mar 2014 17:11:42 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42323" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42323">
<Title>NEW Full-time Postings for Engineering &amp; Math Majors</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>
    <span>During the last week, multiple full-time positions have been posted to UMBCworks. </span><span>Check them out </span><span>(plus many, many more opportunities) by logging in to UMBCworks today.</span>
    </div>
    <div>
    <br><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=cd0fedc30da264d35edaddfeb3f9170c" rel="nofollow external" class="bo">Reimbursement Specialist</a><span>- </span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=ba3454b13b4a9941ab2a50024cccbfa5" rel="nofollow external" class="bo">Maxim Healthcare Services</a><br>UMBCworks ID: </span><span>9263070<br>Application Deadline: 3/28/14</span><br><br><span><span><span><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=f2a22dbe0da1b31b2fbdee1d7e8ef98a" rel="nofollow external" class="bo">CBS Radio Multiple Posting (Updated March 4, 2014)</a> </span></span></span>- </span></span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=93116d415387d9f8710feed721cad295" rel="nofollow external" class="bo">CBS Radio</a><br><span>UMBCworks ID: </span></span><span>9264270<br><span>Application Deadline: 5/5/14</span></span><br><br><span><span><span><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=e9cfbc2ae86b8bf27e5a75ceafba3f49" rel="nofollow external" class="bo">QA Tester</a></span> - </span></span></span></span><span><span><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=8c1e3350dd4e9f6ba22938e08e268421" rel="nofollow external" class="bo">SECRETNEWCo, Inc.</a><br>UMBCworks ID: </span></span></span></span><span><span><span><span>9264418<br>Application Deadline: 6/10/14<br><br></span></span></span></span><span><span><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=8bd6dacb8676dd3b95af492e53bbb29c" rel="nofollow external" class="bo">Sales / Applications Engineer</a></span></span> </span>- </span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=70826492c6a917f381562ee7bfd387b1" rel="nofollow external" class="bo">Marsilli North America Inc.</a><br><span>UMBCworks ID: </span>9264427<br><span>Application Deadline: 7/8/14<br></span><span></span><br>
    </div>
    <br>To access these positions, log in to your UMBCworks account (via the link<span> </span><br><div>in the Jobs &amp; Internships Topic in myUMBC) and find details and<span> </span><br>application instructions as well as hundreds of other job postings! </div>
    <div><br></div>
    <div>Please note you MUST have an approved resume to apply to positions. To schedule an appointment, click on "Request a Counseling Appointment" via the UMBCworks homepage or call 410-455-2216.</div>
    </div>
]]>
</Body>
<Summary>During the last week, multiple full-time positions have been posted to UMBCworks. Check them out (plus many, many more opportunities) by logging in to UMBCworks today.   Reimbursement Specialist-...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42323/guest@my.umbc.edu/23584198f897abda471eec98f4536cb8/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>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 17:10:10 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42321" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42321">
<Title>NEW Internships for Engineering &amp; Math Majors (week of 3/10)</Title>
<Body>
<![CDATA[
    <div class="html-content"><div><div><div><div>
    <span>During the week of March 10, multiple internship positions have been posted to UMBCworks. Check out these new positions today:</span><br><br><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=a5c422720a88d210fc3a1d4d6af308a2" rel="nofollow external" class="bo">Embedded/Controls Design Engineering Co-op-13043518</a> - <a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=fc6dcd94fd8e5dc3299cd9207a284d6d" rel="nofollow external" class="bo">Xerox Corporation</a><br>UMBCworks ID: 9264379<br>Application Deadline: 4/6/14<br><br>Multiple Opportunities - MedImmune<br>UMBCworks ID: 9264247, 9264249, 9264250, 9264430<br>Application Deadline: 4/30/14<br><br><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=43cd5e6f0f2dfe5b752bde6c801f0726" rel="nofollow external" class="bo">Intern Undergrad - Decision Sciences</a> - </span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=a5a6bd2453bd36b13e7fe2c79e026ec0" rel="nofollow external" class="bo">eBay, Inc. (Timonium, MD)</a><br>UMBCworks ID: </span><span>9264363<br>Application Deadline: 5/2/14</span><br><br><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=7eff16229864137a48e89c4f71ed1c6a" rel="nofollow external" class="bo">Spring 2014 -  Student Intern / Technical Analyst (health informatics)  </a>- </span></span><span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=bf69b1d7ef9f744d9c59517c0659b9c3" rel="nofollow external" class="bo">Johns Hopkins University, General Medicine, Chronic Disease Informatics Group</a></span><br>UMBCworks ID: </span><span>9261470<br>Application Deadline: 6/15/14<br><br></span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?mode=form&amp;id=071fa0fee804a256abe0a0ec45713601" rel="nofollow external" class="bo">Accounting Intern (paid)</a> - </span><span><a href="https://umbc-csm.symplicity.com/manager/index.php?s=employers&amp;mode=form&amp;id=bb12bfb5aaec8974acc9482bdc926725" rel="nofollow external" class="bo">UMBC Training Centers</a><br>UMBCworks ID: </span><span>9263053<br>Application Deadline: 6/30/14<br><br></span>To access these positions, login to your UMBCworks account (via the link in the Jobs &amp; Internships topic in myUMBC) and find details and application instructions as well as hundreds of other job postings!  <br><div>
    <br>Please note you MUST have an approved resume and be released by a CSC Staff Member to apply to internships. To schedule an appointment, click on "Request a Counseling Appointment" from the UMBCworks homepage or call 410-455-2216.<br>
    </div>
    </div></div></div></div></div>
]]>
</Body>
<Summary>During the week of March 10, multiple internship positions have been posted to UMBCworks. Check out these new positions today:  Embedded/Controls Design Engineering Co-op-13043518 - Xerox...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42321/guest@my.umbc.edu/cb64117cf52dba563779555e73d66141/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>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 16:53:59 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42322" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42322">
<Title>DealBook: Will the Real Satoshi Nakamoto Please Stand Up?</Title>
<Body>
<![CDATA[
    <div class="html-content">Particularly in Japan, those named Satoshi Nakamoto have been garnering a lot of attention as the search continues for the creator of Bitcoin.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F11%2Fwill-the-real-satoshi-nakamoto-please-stand-up%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Will+the+Real+Satoshi+Nakamoto+Please+Stand+Up%3F" 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%2F2014%2F03%2F11%2Fwill-the-real-satoshi-nakamoto-please-stand-up%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Will+the+Real+Satoshi+Nakamoto+Please+Stand+Up%3F" 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%2F2014%2F03%2F11%2Fwill-the-real-satoshi-nakamoto-please-stand-up%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Will+the+Real+Satoshi+Nakamoto+Please+Stand+Up%3F" 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%2F2014%2F03%2F11%2Fwill-the-real-satoshi-nakamoto-please-stand-up%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Will+the+Real+Satoshi+Nakamoto+Please+Stand+Up%3F" 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%2F2014%2F03%2F11%2Fwill-the-real-satoshi-nakamoto-please-stand-up%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Will+the+Real+Satoshi+Nakamoto+Please+Stand+Up%3F" 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/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801062056/u/0/f/640387/c/34625/s/380f8c82/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Particularly in Japan, those named Satoshi Nakamoto have been garnering a lot of attention as the search continues for the creator of Bitcoin.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/380f8c82/sc/21/l/0Ldealbook0Bnytimes0N0C20A140C0A30C110Cwill0Ethe0Ereal0Esatoshi0Enakamoto0Eplease0Estand0Eup0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42322/guest@my.umbc.edu/07d61d63cb6ed295649fff89435d6e01/api/pixel</TrackingUrl>
<Tag>bitcoin-currency</Tag>
<Tag>financial-services</Tag>
<Tag>japan</Tag>
<Tag>mochizuki-shinichi</Tag>
<Tag>nakamoto-dorian-satoshi</Tag>
<Tag>nakamoto-satoshi</Tag>
<Tag>names-personal</Tag>
<Tag>new</Tag>
<Tag>newsweek</Tag>
<Tag>technology</Tag>
<Tag>venture-capital</Tag>
<Tag>virtual-currency</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>Tue, 11 Mar 2014 16:25:52 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 15:40:55 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42318" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42318">
<Title>Tickets on Sale at the CIC!</Title>
<Tagline>Event Tickets Remaining on March 11th, 2014</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div><strong>Stop by the Campus Information Center in The Commons to purchase the tickets listed below!</strong></div>
    <div><em><strong><br></strong></em></div>
    <div><strong><a href="http://my.umbc.edu/events/22407" rel="nofollow external" class="bo">SEB DC Trip - Cherry Blossom Festival</a></strong></div>
    <div><em>     Saturday, March 29th</em></div>
    <div><em>     Bus Departs: Commons Loop @ 10am</em></div>
    <div><em>     All Guests = $10.00</em></div>
    <div><em><strong>     We are Sold Out!!!</strong></em></div>
    <div><em><strong><br></strong></em></div>
    <div><span><span><div><span><a href="http://my.umbc.edu/events/22490" rel="nofollow external" class="bo"><strong>SEB Captain America Midnight Premiere</strong></a></span></div>
    <div><span><em>     Thursday, April 3rd</em></span></div>
    <div><span><em>     Bus Departs: Commons Loop @ 11pm</em></span></div>
    <div><span><em>     All Guests = $5.00</em></span></div>
    <div><span><span><em><strong>     We are on Ticket 51 of 250</strong></em></span></span></div>
    <div><em><strong><br></strong></em></div>
    <div><span><a href="http://my.umbc.edu/events/22491" rel="nofollow external" class="bo"><strong>SEB Sky Zone Trampoline Park</strong></a></span></div>
    <div><span><em>     Friday, April 4th</em></span></div>
    <div><span><em>     Bus Departs: Commons Loop @ 5pm</em></span></div>
    <div><span><em>     All Guests = $10.00</em></span></div>
    <div><span><span><em><strong>     We are on Ticket 47 of 49</strong></em></span></span></div>
    <div><span><span><br></span></span></div>
    <div><span><span><span><span><div><span><span><div><span><strong><a href="http://my.umbc.edu/groups/seb/events/22482" rel="nofollow external" class="bo">SEB Orioles Game Bus Trip</a></strong></span></div>
    <div><span><em>     Friday, April 11th</em></span></div>
    <div><span><em>     Bus Departs: Commons Loop @ 6pm</em></span></div>
    <div><span><em>     All Guests = $10.00</em></span></div>
    <div><span><strong><em>     We are on Ticket 2 of 49</em></strong></span></div>
    <div><span><br></span></div>
    <div><span><strong><a href="http://my.umbc.edu/groups/seb/events/22998" rel="nofollow external" class="bo">SEB Hershey Park Bus Trip</a></strong></span></div>
    <div><span><em>     Saturday, April 19th</em></span></div>
    <div><em>     Bus Departs: Commons Loop @ 8am</em></div>
    <div><em>     All Guests = $35.00</em></div>
    <div><em><strong>     We are on Ticket 3 of 49</strong></em></div>
    <div><span><br></span></div>
    <div><span><strong><a href="http://my.umbc.edu/events/22530" rel="nofollow external" class="bo">SEB Quadmania: Capital Cities</a></strong></span></div>
    <div><span><em>     Sunday, April 27th</em></span></div>
    <div><span><em>     The RAC @ 8pm</em></span></div>
    <div><span><em>     All Guests = $12.00</em></span></div>
    <div><span><span><em><strong>     We are on Ticket 705 of 2500</strong></em></span></span></div>
    <div><span><span><br></span></span></div>
    <div><span><span><div><span><strong>SEB Individual Weekly Movie Tickets</strong></span></div>
    <div><span><span><em>     All Guests = $2.00</em></span></span></div>
    <div><span><span><br></span></span></div>
    <div><span><strong>SEB Semester Movie Pass</strong></span></div>
    <div><span><em>     All Guests = $10.00</em></span></div>
    <div><span><em><br></em></span></div>
    <div><span><em><div><strong>Also, don't forget to check out these events happening this week!</strong></div>
    <div><br></div>
    <div>
    <strong><a href="http://my.umbc.edu/events/22448" rel="nofollow external" class="bo">SEB Pokemon Tournament</a></strong> - Tuesday, March 11th 7pm - 9pm. <em><span>Come out to the gameroom and battle for prizes (they might involve eevee plushes). Free pizza and drinks will be provided!</span></em>
    </div>
    <div><em><span><br></span></em></div>
    <div>
    <strong><a href="http://my.umbc.edu/events/22511" rel="nofollow external" class="bo">Faizun Kamal: Founder/CEO, SourceFK and Social Change Maker</a></strong> - Tuesday, March 11th 7:30pm - 9pm in Skylight Room. <span>Please join Student Life's Mosaic: Center for Culture and Diversity as we welcome our spring speaker, Faizun Kamal, entrepreneur, social change maker and CEO/Founder of SourceFK.</span>
    </div>
    <div><span><br></span></div>
    <div>
    <span><strong><a href="http://my.umbc.edu/events/22494" rel="nofollow external" class="bo">SEB DIY Loose Leaf Tea</a></strong> - Wednesday, March 12th 12pm - 1pm on Mainstreet. </span><span>There will be 9 </span><span>different</span><span> types of loose tea, so you can be as adventurous as you want while making your own tea. </span><span>All materials will be provided, you just need to bring is your adventurous, tea-loving self.</span>
    </div>
    <div><span><br></span></div>
    <div>
    <span><strong><a href="http://my.umbc.edu/events/22399" rel="nofollow external" class="bo">SEB Pi Day!</a></strong> - Friday, March 14th 12pm - 1pm on Mainstreet. </span><span>(seb) celebrates a very important holiday.</span>
    </div></em></span></div></span></span></div></span></span></div></span></span></span></span></div></span></span></div>
    </div>
]]>
</Body>
<Summary>Stop by the Campus Information Center in The Commons to purchase the tickets listed below!     SEB DC Trip - Cherry Blossom Festival       Saturday, March 29th       Bus Departs: Commons Loop @...</Summary>
<Website>https://www.facebook.com/UMBC.CIC</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42318/guest@my.umbc.edu/e127ef96d280789bed919d5d6b8dd16d/api/pixel</TrackingUrl>
<Group token="cic">Campus Information Center (CIC)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cic</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/original.png?1318518699</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/large.png?1318518699</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/medium.png?1318518699</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/small.png?1318518699</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxsmall.png?1318518699</AvatarUrl>
<Sponsor>Campus Information Center (CIC)</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/xxlarge.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/xlarge.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/large.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/medium.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/small.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/xsmall.jpg?1394567471</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/318/a9e804913d2f557cd43b77a29d592ba3/xxsmall.jpg?1394567471</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 15:55:16 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="122761" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122761">
<Title>Tom Beck, Library Gallery, Interviewed for WYPR&#8217;s Maryland Morning</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="jaffee05-360" src="/wp-content/uploads/2014/03/jaffee05-360.jpg?w=150" width="150" height="116" style="max-width: 100%; height: auto;"><a href="http://wypr.org/post/photographer-n-jay-jaffee-captured-spontaneous" rel="nofollow external" class="bo">An interview</a> with Tom Beck, Chief Curator of the Albin O. Kuhn Library Gallery, aired on WYPR’s <em>Maryland Morning</em> this week, in which he discusses the works currently on display in the Library Gallery exhibition, <em>N. Jay Jaffee Photographs from Public to Personal, 1947-1997</em>. Beck talks about the artist’s personal life and work in relation to the photography of his peers, as well as the historical importance of Jaffee’s photographs.</p>
    <p>Listen to the interview, <a href="http://wypr.org/post/photographer-n-jay-jaffee-captured-spontaneous" rel="nofollow external" class="bo">“Photographer N. Jay Jaffee Captured the Spontaneous”</a> at WYPR.org.</p>
    <p>More information about the exhibition is available at our <a href="http://artscalendar.umbc.edu/2011/12/15/n-jay-jaffee-photographs-from-public-to-personal-1947-1997/" rel="nofollow external" class="bo">Arts and Culture Calendar</a>. <em>N. Jay Jaffee Photographs from Public to Personal</em> is on display now through Sunday, March 23 in the AOK Library Gallery.</p>
    </div>
]]>
</Body>
<Summary>An interview with Tom Beck, Chief Curator of the Albin O. Kuhn Library Gallery, aired on WYPR’s Maryland Morning this week, in which he discusses the works currently on display in the Library...</Summary>
<Website>https://umbc.edu/stories/tom-beck-library-gallery-interviewed-for-wyprs-maryland-morning/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122761/guest@my.umbc.edu/f24e154edd81d25eac6f26d747c44f46/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>engage</Tag>
<Tag>library</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 15:46:25 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="122762" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122762">
<Title>Marie desJardins, Computer Science and Electrical Engineering, on Voice of America</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="/wp-content/uploads/2014/03/rapmdesjardin.jpg" rel="nofollow external" class="bo"><img alt="RAPmdesjardin" src="/wp-content/uploads/2014/03/rapmdesjardin.jpg?w=225" width="175" height="230" style="max-width: 100%; height: auto;"></a><em><a href="http://www.voanews.com/content/education-key-theme-for-international-womens-day/1866669.html" rel="nofollow external" class="bo">Voice of America’s </a></em>International Women’s Day coverage highlights the efforts of leading women in science, technology, engineering and math (STEM) to encourage girls to pursue those fields.</p>
    <p>In a video posted on the news site, Marie desJardins, professor of computer science and electrical engineering, says, “Make sure your kids are getting [exposure to STEM] from an early age so they think of themselves as creators of technology and new ideas, not just following the rules.”</p>
    <p>See the video and article <em>on Voice of America</em> by clicking <a href="http://www.voanews.com/content/education-key-theme-for-international-womens-day/1866669.html" rel="nofollow external" class="bo">here</a>.</p>
    </div>
]]>
</Body>
<Summary>Voice of America’s International Women’s Day coverage highlights the efforts of leading women in science, technology, engineering and math (STEM) to encourage girls to pursue those fields.   In a...</Summary>
<Website>https://umbc.edu/stories/marie-desjardins-computer-science-and-electrical-engineering-on-voice-of-america/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122762/guest@my.umbc.edu/69ec7d9b3bb8a479a3ea32170f934e00/api/pixel</TrackingUrl>
<Tag>csee</Tag>
<Tag>science-and-technology</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 15:43:55 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42314" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42314">
<Title>Bioarchaeology and Forensic Anthropology Field School</Title>
<Tagline>University of Massachusetts Amherst</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <span>We would like to highlight our bioarchaeology and forensic anthropology field school at the University of Massachusetts Amherst. This course introduces students to the role of the biological anthropologist, archaeologist and forensic scientist in excavations of human remains.</span><br><br><span>The course will be divided into three units. The first unit will introduce students to field and laboratory techniques, including familiarity with the human skeletal system, recognizing what constitutes bioarchaeological or forensic data, and violence theory. The second unit will consist of excavations of a pseudo-crime scene and pseudo-archaeological burial. The third unit will focus on laboratory techniques used to analyze the data generated from these two excavation sites, and the design and building of the following year?s burial sites.  Throughout the course we will explore key concepts in ethics, repatriation, medicolegal death investigation and regulations regarding unmarked burials.</span><br><span><br></span><div>
    <span>Our field school is aimed at giving students a better understanding of work in these fields, ethical issues and guidelines, and what constitutes violence and how to recognize evidence of violence on human remains and material objects.  The Low Stakes, High Impact learning model we have developed for this field school provides students with the opportunity to develop the professional and academic skills to immediately pursue career and graduate opportunities in a number of different professional settings.</span><br><span><br></span><div>
    <span>Each participating student will be awarded 6 semester credit units through the University of Massachusetts Amherst Continuing Education Division.</span><br><br><span>For more information please visit: </span><a href="http://www.umass.edu/anthro" rel="nofollow external" class="bo">www.umass.edu/anthro</a><span> .</span><br><span>Or find us on Facebook at: </span><a href="http://www.facebook.com/umassbioarchforensics" rel="nofollow external" class="bo">www.facebook.com/umassbioarchforensics</a><span> .</span><br><br>
    </div>
    </div>
    </div>
]]>
</Body>
<Summary>We would like to highlight our bioarchaeology and forensic anthropology field school at the University of Massachusetts Amherst. This course introduces students to the role of the biological...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42314/guest@my.umbc.edu/cf3001e31ed6030b9ae788089bbb8ed6/api/pixel</TrackingUrl>
<Group token="retired-279">Anthropology Council of Majors</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-279</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/xsmall.png?1315754011</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/original.png?1315754011</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/xxlarge.png?1315754011</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/xlarge.png?1315754011</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/large.png?1315754011</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/medium.png?1315754011</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/small.png?1315754011</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/xsmall.png?1315754011</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/279/56786bbe51b83ae53c89e68efb23425a/xxsmall.png?1315754011</AvatarUrl>
<Sponsor>Anthropology Council of Majors</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 15:33:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42316" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42316">
<Title>How to Use the Details and Summary Elements in HTML5</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>A number of new <em>interactive</em> elements were introduced with HTML5 that provide native implementations of common UI widgets like <a href="http://blog.teamtreehouse.com/a-preview-of-the-new-dialog-element" rel="nofollow external" class="bo">dialogs and modals</a>. Among these new additions are the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements. These elements allow developers to create collapsable UI widgets the user can click to show or hide content.</p>
    <p>In this post, we’ll take a deep dive into the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements. You’re going to learn how to use these elements in your HTML markup, how to apply custom styling to them, and what browsers they work in.</p>
    <p>Let’s get started.</p>
    <h2>Using the Details and Summary Elements</h2>
    <p>The <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements are used in combination to create a UI widget that allows the user to find out more information about a topic by clicking on a summary.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/simple-details.gif" rel="nofollow external" class="bo"><img alt="A simple details and summary element example." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/simple-details.gif" width="479" height="85" style="max-width: 100%; height: auto;"></a><p>A simple details and summary element example.</p>
    </div>
    <p>The <code>&lt;details&gt;</code> element is responsible for marking up all of the content relevant to the particular topic. The <code>&lt;summary&gt;</code> element is used to specify a short piece of text that describes the rest of the content in the <code>&lt;details&gt;</code> element.</p>
    <pre><code>&lt;details&gt;&#x000A;        &lt;summary&gt;Summary text&lt;/summary&gt;&#x000A;        Content goes here...&#x000A;    &lt;/details&gt;</code></pre>
    <p>By default, the browser will only display the content within the <code>&lt;summary&gt;</code> element to the user. Once this summary is clicked, the remaining content will become visible.</p>
    <p>The browser will use the text from the first <code>&lt;summary&gt;</code> element within the <code>&lt;details&gt;</code> element when constructing the widget. If no <code>&lt;summary&gt;</code> element is specified, the browser will simply display “Details.”</p>
    <p>If you’d like the widget to be open when the page loads, you can specify the <code>open</code> attribute on your <code>&lt;details&gt;</code> element.</p>
    <pre><code>&lt;details open&gt;...&lt;/details&gt;</code></pre>
    <p>The browser will toggle the <code>open</code> attribute for you as the user opens and closes the widget.</p>
    <p>So what kind of content should you be using the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements for? Simply, any additional information you’d like to provide about a subject. For example, you could use these elements for marking up order data within an e-commerce app. In the following example, the user is presented with an order number that, when clicked, will reveal the full information about the order.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-demo.gif" rel="nofollow external" class="bo"><img alt="Using details and summary elements to mark up order data." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-demo.gif" width="670" height="436" style="max-width: 100%; height: auto;"></a><p>Using details and summary elements to mark up order data.</p>
    </div>
    <p><a href="http://codepen.io/matt-west/pen/xtHdc" rel="nofollow external" class="bo">View The CodePen Demo</a></p>
    <pre><code>&lt;details&gt;&#x000A;        &lt;summary&gt;Order #24892105&lt;/summary&gt;&#x000A;        &lt;table&gt;&#x000A;            &lt;tr&gt;&#x000A;                &lt;th scope="row"&gt;Order Date&lt;/th&gt;&#x000A;                &lt;td&gt;30th May 2003&lt;/td&gt;&#x000A;            &lt;/tr&gt;&#x000A;            &lt;tr&gt;&#x000A;                &lt;th scope="row"&gt;Order Number&lt;/th&gt;&#x000A;                &lt;td&gt;#24892105&lt;/td&gt;&#x000A;            &lt;/tr&gt;&#x000A;            &lt;tr&gt;&#x000A;                &lt;th scope="row"&gt;Courier&lt;/th&gt;&#x000A;                &lt;td&gt;Buy N Large Postal&lt;/td&gt;&#x000A;            &lt;/tr&gt;&#x000A;            &lt;tr&gt;&#x000A;                &lt;th scope="row"&gt;Shipping Address&lt;/th&gt;&#x000A;                &lt;td&gt;&#x000A;                    P. Sherman,&lt;br&gt;&#x000A;                    42 Wallaby Way,&lt;br&gt;&#x000A;                    Sydney,&lt;br&gt;&#x000A;                    Australia&#x000A;                &lt;/td&gt;&#x000A;            &lt;/tr&gt;&#x000A;            &lt;tr&gt;&#x000A;                &lt;th scope="row"&gt;Billing Address&lt;/th&gt;&#x000A;                &lt;td&gt;&#x000A;                    P. Sherman,&lt;br&gt;&#x000A;                    42 Wallaby Way,&lt;br&gt;&#x000A;                    Sydney,&lt;br&gt;&#x000A;                    Australia&#x000A;                &lt;/td&gt;&#x000A;            &lt;/tr&gt;&#x000A;        &lt;/table&gt;&#x000A;    &lt;/details&gt;</code></pre>
    <p>You could also create a UI widget that presents additional controls when a user clicks on a key object in your application.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-controls.png" rel="nofollow external" class="bo"><img alt="Using details and summary elements to mark up additional controls." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-controls.png" width="640" height="190" style="max-width: 100%; height: auto;"></a><p>Using details and summary elements to mark up additional controls.</p>
    </div>
    <p><a href="http://codepen.io/matt-west/pen/xtHdc" rel="nofollow external" class="bo">View The CodePen Demo</a></p>
    <pre><code>&lt;details&gt;&#x000A;        &lt;summary&gt;README.txt&lt;/summary&gt;&#x000A;        &lt;ul&gt;&#x000A;            &lt;li&gt;&lt;a href="#"&gt;Open&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#"&gt;Edit&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#"&gt;Duplicate&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#"&gt;Delete&lt;/a&gt;&lt;/li&gt;&#x000A;        &lt;/ul&gt;&#x000A;    &lt;/details&gt;</code></pre>
    <p>Other applications could include things like questions and answers within FAQ pages, tables of contents, and collapsable fieldsets for multi-part forms.</p>
    <h2>Styling Details and Summary Elements with CSS</h2>
    <p>Now that you have an understanding of how to use the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements in your HTML, let’s take a look at how you can style these elements using CSS.</p>
    <p>Targeting the <code>details</code> element in your CSS allows you to style all of the content within the element.</p>
    <pre><code>details {&#x000A;        /* Your styling rules. */    &#x000A;    }</code></pre>
    <p>If you want to style just the area that opens and closes the widget, you should target the <code>summary</code> element.</p>
    <pre><code>summary {&#x000A;        /* Your styling rules. */    &#x000A;    }</code></pre>
    <p>Targeting these elements directly like this will add styling rules that apply in both the open and closed states of the widget. If you want to style the widget differently when it’s open or closed, you can use a CSS selector that only applies to <code>&lt;details&gt;</code> elements with the <code>open</code> attribute.</p>
    <pre><code>/* Open details element. */&#x000A;    details[open] {&#x000A;    &#x000A;    }&#x000A;    &#x000A;    /* Summary within an open details element. */&#x000A;    details[open] summary {&#x000A;    &#x000A;    }</code></pre>
    <p>By default, the browser will display a small marker triangle to the left of the summary text that indicates the current state of the <code>&lt;details&gt;</code> element. You can target this marker in CSS using the <code>-webkit-details-marker</code> pseudo-class.</p>
    <pre><code>/* Change the color and size of the marker. */&#x000A;    summary::-webkit-details-marker {&#x000A;        color: #69c773;&#x000A;        font-size: 200%;&#x000A;    }</code></pre>
    <p>You can even hide the marker completely by setting its <code>display</code> property to <code>none</code>.</p>
    <pre><code>/* Hide the marker completely. */&#x000A;    summary::-webkit-details-marker {&#x000A;        display: none;&#x000A;    }</code></pre>
    <p>If you want to use your own marker icon, start by hiding the default marker (as shown above), and then use the <code>:before</code> pseudo-element to add your custom icon. This should be applied to the <code>summary</code> element.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-custom-marker.gif" rel="nofollow external" class="bo"><img alt="Using custom marker icons." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/details-summary-custom-marker.gif" width="677" height="164" style="max-width: 100%; height: auto;"></a><p>Using custom marker icons.</p>
    </div>
    <p><a href="http://codepen.io/matt-west/pen/xtHdc" rel="nofollow external" class="bo">View The CodePen Demo</a></p>
    <p>Here’s the CSS code used to create the example above.</p>
    <pre><code>details {&#x000A;        border-radius: 3px;&#x000A;        background: #EEE;&#x000A;    }&#x000A;    &#x000A;    details summary {&#x000A;        font-size: 17px;&#x000A;        vertical-align: top;&#x000A;        background: #333;&#x000A;        color: #FFF;&#x000A;        border-radius: 3px;&#x000A;        padding: 5px 10px;&#x000A;        outline: none;&#x000A;    }&#x000A;    &#x000A;    details[open] summary {&#x000A;        background: #69c773;&#x000A;        color: #333;&#x000A;    }&#x000A;    &#x000A;    /* Hide the default marker. */    &#x000A;    details summary::-webkit-details-marker {&#x000A;        display: none;&#x000A;    }&#x000A;    &#x000A;    /* Add the custom marker in the default state. */    &#x000A;    details summary:before {&#x000A;        display: inline-block;&#x000A;        width: 18px;&#x000A;        height: 18px;&#x000A;        margin-right: 8px;&#x000A;        content: "";&#x000A;        background-image: url(<a href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4621/treehouse-icon-sprite.png">https://s3-us-west-2.amazonaws.com/s.cdpn.io/4621/treehouse-icon-sprite.png</a>);&#x000A;        background-repeat: no-repeat;&#x000A;        background-position: 0 0;&#x000A;    }&#x000A;    &#x000A;    /* Move the sprite image when the details box is open. */&#x000A;    details[open] summary:before {&#x000A;        background-position: -18px 0;&#x000A;    }</code></pre>
    <p>In this code, I’m using the <code>:before</code> pseudo-element to add the initial marker icon. I then create another rule that alters the positioning of the background image (so as to change the visible section of the <a href="http://blog.teamtreehouse.com/css-sprites-with-background-positioning" rel="nofollow external" class="bo">sprite</a>) when the <code>details</code> element has an <code>open</code> attribute.</p>
    <h2>Browser Support for the Details and Summary Elements</h2>
    <p>Browser support for the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements still isn’t great. Chrome, Safari, and Opera all support these elements, but Internet Explorer and Firefox do not.</p>
    <table>
    <thead>
    <tr>
    <th>IE</th>
    <th>Firefox</th>
    <th>Chrome</th>
    <th>Safari</th>
    <th>Opera</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>-</td>
    <td>-</td>
    <td>12.0+</td>
    <td>6.0+</td>
    <td>15.0+</td>
    </tr>
    </tbody>
    </table>
    <p>Source: <a href="http://caniuse.com/#feat=details" rel="nofollow external" class="bo">http://caniuse.com/#feat=details</a></p>
    <p>There are a number of polyfills available that will add support for the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements to other browsers. Two of the best ones that I’ve found are:</p>
    <ul>
    <li>
    <a href="https://github.com/termi/Element.details" rel="nofollow external" class="bo">Element.details</a> by <a href="https://github.com/termi" rel="nofollow external" class="bo">Егор Халимоненко</a>
    </li>
    <li>
    <a href="https://github.com/manuelbieh/Details-Polyfill" rel="nofollow external" class="bo">Details Polyfill</a> by <a href="https://github.com/manuelbieh" rel="nofollow external" class="bo">Manuel Bieh</a>
    </li>
    </ul>
    <h2>Final Thoughts on Details and Summary Elements</h2>
    <p>In this blog post you’ve learned how to use the <code>&lt;details&gt;</code> and <code>&lt;summary&gt;</code> elements to create your own collapsable UI widgets. You’ve also learned how to style these elements with CSS, as well as how to replace the default marker icon with your own images.</p>
    <p>It’s really encouraging to see browser vendors creating native implementations for some of the most commonly used UI widgets. What other UI components would you like to see added to browsers in the future?</p>
    <h2>Useful Links</h2>
    <ul>
    <li><a href="http://www.w3.org/TR/html5/interactive-elements.html#the-details-element" rel="nofollow external" class="bo">W3C HTML5 Specification: Interactive Elements</a></li>
    <li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/interactive-elements.html#the-details-element" rel="nofollow external" class="bo">WHATWG HTML Living Standard: Interactive Elements</a></li>
    <li><a href="https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills#wiki-details-and-summary" rel="nofollow external" class="bo">Modernizr HTML5 Cross-Browser Polyfills</a></li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/use-details-summary-elements" rel="nofollow external" class="bo">How to Use the Details and Summary Elements in HTML5</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>A number of new interactive elements were introduced with HTML5 that provide native implementations of common UI widgets like dialogs and modals. Among these new additions are the &lt;details&gt;...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/bTxPjNqPzi8/use-details-summary-elements</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42316/guest@my.umbc.edu/484c0df4d4d67107b2fb4d4426756fd5/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>code</Tag>
<Tag>css</Tag>
<Tag>css3</Tag>
<Tag>design</Tag>
<Tag>details</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html-and-xhtml</Tag>
<Tag>html5</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>responsive</Tag>
<Tag>summary</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>Tue, 11 Mar 2014 15:27:22 -0400</PostedAt>
</NewsItem>

</News>
