Skip to content

Instantly share code, notes, and snippets.

@revathskumar
Created August 24, 2012 18:44
Show Gist options
  • Save revathskumar/3454166 to your computer and use it in GitHub Desktop.
Save revathskumar/3454166 to your computer and use it in GitHub Desktop.

Revisions

  1. revathskumar revised this gist Aug 24, 2012. 1 changed file with 0 additions and 47 deletions.
    47 changes: 0 additions & 47 deletions blogger.xml
    Original file line number Diff line number Diff line change
    @@ -717,53 +717,6 @@ body {
    ]]>
    </b:template-skin>
    <!-- Add-in CSS for syntax highlighting -->
    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shCore.js' type='text/javascript'/>

    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCss.js' type='text/javascript'/>

    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushJScript.js' type='text/javascript'/>
    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushPhp.js' type='text/javascript'/>
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'/>

    <script class='javascript'>
    //<![CDATA[
    function FindTagsByName(container, name, Tag)
    {
    var elements = document.getElementsByTagName(Tag);
    for (var i = 0; i < elements.length; i++)
    {
    if (elements[i].getAttribute("name") == name)
    {
    container.push(elements[i]);
    }
    }
    }
    var elements = [];
    FindTagsByName(elements, "code", "pre");
    FindTagsByName(elements, "code", "code");
    for(var i=0; i < elements.length; i++) {
    if(elements[i].nodeName.toUpperCase() == "TEXTAREA") {
    var childNode = elements[i].childNodes[0];
    var newNode = document.createTextNode(childNode.nodeValue.replace(/<br\s*\/?>/gi,'\n'));
    elements[i].replaceChild(newNode, childNode);
    }
    else if(elements[i].nodeName.toUpperCase() == "PRE") {
    brs = elements[i].getElementsByTagName("br");
    for(var j = 0, brLength = brs.length; j < brLength; j++) {
    var newNode = document.createTextNode("\n");
    elements[i].replaceChild(newNode, brs[0]);
    }
    }
    }
    dp.SyntaxHighlighter.HighlightAll();
    jQuery(function($){
    $("#comment-editor").contents().find("textarea").css("resize","none");
    });
    //]]>
    </script>
    <!-- Place this tag in the <head> of your document -->
    <link href='https://plus.google.com/103137247923693864096' rel='author'/><script type='text/javascript'>
    (function()
  2. revathskumar revised this gist Aug 24, 2012. 1 changed file with 1 addition and 186 deletions.
    187 changes: 1 addition & 186 deletions blogger.xml
    Original file line number Diff line number Diff line change
    @@ -586,192 +586,7 @@ body.mobile .AdSense {
    .mobile-link-button a:link, .mobile-link-button a:visited {
    color: $(content.background.color);
    }
    .dp-highlighter
    {
    font-family: "Consolas", "Monaco", "Courier New", Courier, monospace;
    font-size: 12px;
    background-color: #E7E5DC;
    width: 99%;
    overflow: auto;
    margin: 18px 0 18px 0 !important;
    padding-top: 1px; /* adds a little border on top when controls are hidden */
    }
    /* clear styles */
    .dp-highlighter ol,
    .dp-highlighter ol li,
    .dp-highlighter ol li span
    {
    margin: 0;
    padding: 0;
    border: none;
    }
    .dp-highlighter a,
    .dp-highlighter a:hover
    {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    }
    .dp-highlighter .bar
    {
    padding-left: 45px;
    }
    .dp-highlighter.collapsed .bar,
    .dp-highlighter.nogutter .bar
    {
    padding-left: 0px;
    }
    .dp-highlighter ol
    {
    list-style: decimal; /* for ie */
    background-color: #fff;
    margin: 0px 0px 1px 45px !important; /* 1px bottom margin seems to fix occasional Firefox scrolling */
    padding: 0px;
    color: #5C5C5C;
    }
    .dp-highlighter.nogutter ol,
    .dp-highlighter.nogutter ol li
    {
    list-style: none !important;
    margin-left: 0px !important;
    }
    .dp-highlighter ol li,
    .dp-highlighter .columns div
    {
    list-style: decimal-leading-zero; /* better look for others, override cascade from OL */
    list-style-position: outside !important;
    border-left: 3px solid #6CE26C;
    background-color: #F8F8F8;
    color: #5C5C5C;
    padding: 0 3px 0 10px !important;
    margin: 0 !important;
    line-height: 14px;
    }
    .dp-highlighter.nogutter ol li,
    .dp-highlighter.nogutter .columns div
    {
    border: 0;
    }
    .dp-highlighter .columns
    {
    background-color: #F8F8F8;
    color: gray;
    overflow: hidden;
    width: 100%;
    }
    .dp-highlighter .columns div
    {
    padding-bottom: 5px;
    }
    .dp-highlighter ol li.alt
    {
    background-color: #FFF;
    color: inherit;
    }
    .dp-highlighter ol li span
    {
    color: black;
    background-color: inherit;
    }
    /* Adjust some properties when collapsed */
    .dp-highlighter.collapsed ol
    {
    margin: 0px;
    }
    .dp-highlighter.collapsed ol li
    {
    display: none;
    }
    /* Additional modifications when in print-view */
    .dp-highlighter.printing
    {
    border: none;
    }
    .dp-highlighter.printing .tools
    {
    display: none !important;
    }
    .dp-highlighter.printing li
    {
    display: list-item !important;
    }
    /* Styles for the tools */
    .dp-highlighter .tools
    {
    padding: 3px 8px 3px 10px;
    font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
    color: silver;
    background-color: #f8f8f8;
    padding-bottom: 10px;
    border-left: 3px solid #6CE26C;
    }
    .dp-highlighter.nogutter .tools
    {
    border-left: 0;
    }
    .dp-highlighter.collapsed .tools
    {
    border-bottom: 0;
    }
    .dp-highlighter .tools a
    {
    font-size: 9px;
    color: #a0a0a0;
    background-color: inherit;
    text-decoration: none;
    margin-right: 10px;
    }
    .dp-highlighter .tools a:hover
    {
    color: red;
    background-color: inherit;
    text-decoration: underline;
    }
    /* About dialog styles */
    .dp-about { background-color: #fff; color: #333; margin: 0px; padding: 0px; }
    .dp-about table { width: 100%; height: 100%; font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; }
    .dp-about td { padding: 10px; vertical-align: top; }
    .dp-about .copy { border-bottom: 1px solid #ACA899; height: 95%; }
    .dp-about .title { color: red; background-color: inherit; font-weight: bold; }
    .dp-about .para { margin: 0 0 4px 0; }
    .dp-about .footer { background-color: #ECEADB; color: #333; border-top: 1px solid #fff; text-align: right; }
    .dp-about .close { font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; background-color: #ECEADB; color: #333; width: 60px; height: 22px; }
    /* Language specific styles */
    .dp-highlighter .comment, .dp-highlighter .comments { color: #008200; background-color: inherit; }
    .dp-highlighter .string { color: blue; background-color: inherit; }
    .dp-highlighter .keyword { color: #069; font-weight: bold; background-color: inherit; }
    .dp-highlighter .preprocessor { color: gray; background-color: inherit; }]]></b:skin>

    ]]></b:skin>
    <b:template-skin>
    <b:variable default='930px' name='content.width' type='length' value='860px'/>
    <b:variable default='0' name='main.column.left.width' type='length' value='260px'/>
  3. revathskumar created this gist Aug 24, 2012.
    1,286 changes: 1,286 additions & 0 deletions blogger.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,1286 @@
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE html>
    <html b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
    <head prefix='og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# revathskumar: http://ogp.me/ns/fb/revathskumar#'>
    <meta content='190751917666930' property='fb:app_id'/>
    <meta content='article' property='og:type'/>
    <meta expr:content='data:blog.url' property='og:url'/>
    <meta expr:content='data:blog.pageName' property='og:title'/>
    <meta expr:content='data:blog.pageName' property='og:description'/>

    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <meta expr:content='data:blog.pageName' name='Description'/>
    <meta expr:content='data:blog.pageName' name='Keywords'/>
    </b:if>
    <meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>
    <meta content='oNtj_HYu-J33NGDgiMAahZZNK9RTGwch_DnVIzVcI_k' name='google-site-verification'/>
    <b:if cond='data:blog.isMobile'>
    <meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
    <b:else/>
    <meta content='width=1100' name='viewport'/>
    </b:if>
    <b:include data='blog' name='all-head-content'/>
    <title><data:blog.pageTitle/></title>
    <link href='http://fonts.googleapis.com/css?family=Concert+One' rel='stylesheet' type='text/css'/>
    <b:skin><![CDATA[/*
    -----------------------------------------------
    Blogger Template Style
    Name: Simple
    Designer: Josh Peterson
    URL: www.noaesthetic.com
    ----------------------------------------------- */
    /* Variable definitions
    ====================
    <Variable name="keycolor" description="Main Color" type="color" default="#66bbdd" value="#66bbdd"/>
    <Group description="Page Text" selector="body">
    <Variable name="body.font" description="Font" type="font"
    default="normal normal 12px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 12px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
    <Variable name="body.text.color" description="Text Color" type="color" default="#222222" value="#222222"/>
    </Group>
    <Group description="Backgrounds" selector=".body-fauxcolumns-outer">
    <Variable name="body.background.color" description="Outer Background" type="color" default="#ffffff" value="#ffffff"/>
    <Variable name="content.background.color" description="Main Background" type="color" default="#ffffff" value="#ffffff"/>
    <Variable name="header.background.color" description="Header Background" type="color" default="transparent" value="transparent"/>
    </Group>
    <Group description="Links" selector=".main-outer">
    <Variable name="link.color" description="Link Color" type="color" default="#2288bb" value="#2288bb"/>
    <Variable name="link.visited.color" description="Visited Color" type="color" default="#33aaff" value="#33aaff"/>
    <Variable name="link.hover.color" description="Hover Color" type="color" default="#33aaff" value="#33aaff"/>
    </Group>
    <Group description="Blog Title" selector=".header h1">
    <Variable name="header.font" description="Font" type="font"
    default="normal normal 60px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 60px Corsiva"/>
    <Variable name="header.text.color" description="Title Color" type="color" default="#3399bb" value="#3399bb"/>
    </Group>
    <Group description="Blog Description" selector=".header .description">
    <Variable name="description.text.color" description="Description Color" type="color"
    default="#777777" value="#5f5e5e"/>
    </Group>
    <Group description="Tabs Text" selector=".tabs-inner .widget li a">
    <Variable name="tabs.font" description="Font" type="font"
    default="normal normal 14px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 14px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
    <Variable name="tabs.text.color" description="Text Color" type="color" default="#999999" value="#999999"/>
    <Variable name="tabs.selected.text.color" description="Selected Color" type="color" default="#000000" value="#000000"/>
    </Group>
    <Group description="Tabs Background" selector=".tabs-outer .PageList">
    <Variable name="tabs.background.color" description="Background Color" type="color" default="#f5f5f5" value="#f5f5f5"/>
    <Variable name="tabs.selected.background.color" description="Selected Color" type="color" default="#eeeeee" value="#eeeeee"/>
    </Group>
    <Group description="Post Title" selector="h3.post-title, .comments h4">
    <Variable name="post.title.font" description="Font" type="font"
    default="normal normal 22px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal normal 22px Chewy"/>
    </Group>
    <Group description="Date Header" selector=".date-header">
    <Variable name="date.header.color" description="Text Color" type="color"
    default="$(body.text.color)" value="$(body.text.color)"/>
    <Variable name="date.header.background.color" description="Background Color" type="color"
    default="transparent" value="transparent"/>
    </Group>
    <Group description="Post Footer" selector=".post-footer">
    <Variable name="post.footer.text.color" description="Text Color" type="color" default="#666666" value="#666666"/>
    <Variable name="post.footer.background.color" description="Background Color" type="color"
    default="#f9f9f9" value="#f9f9f9"/>
    <Variable name="post.footer.border.color" description="Shadow Color" type="color" default="#eeeeee" value="#eeeeee"/>
    </Group>
    <Group description="Gadgets" selector="h2">
    <Variable name="widget.title.font" description="Title Font" type="font"
    default="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif" value="normal bold 11px Arial, Tahoma, Helvetica, FreeSans, sans-serif"/>
    <Variable name="widget.title.text.color" description="Title Color" type="color" default="#000000" value="#000000"/>
    <Variable name="widget.alternate.text.color" description="Alternate Color" type="color" default="#999999" value="#999999"/>
    </Group>
    <Group description="Images" selector=".main-inner">
    <Variable name="image.background.color" description="Background Color" type="color" default="#ffffff" value="#ffffff"/>
    <Variable name="image.border.color" description="Border Color" type="color" default="#eeeeee" value="#eeeeee"/>
    <Variable name="image.text.color" description="Caption Text Color" type="color" default="$(body.text.color)" value="$(body.text.color)"/>
    </Group>
    <Group description="Accents" selector=".content-inner">
    <Variable name="body.rule.color" description="Separator Line Color" type="color" default="#eeeeee" value="#eeeeee"/>
    <Variable name="tabs.border.color" description="Tabs Border Color" type="color" default="$(body.rule.color)" value="$(body.rule.color)"/>
    </Group>
    <Variable name="body.background" description="Body Background" type="background"
    color="$(body.background.color)" default="$(color) none repeat scroll top left" value="$(color) none repeat scroll top left"/>
    <Variable name="body.background.override" description="Body Background Override" type="string" default="" value=""/>
    <Variable name="body.background.gradient.cap" description="Body Gradient Cap" type="url"
    default="url(http://www.blogblog.com/1kt/simple/gradients_light.png)" value="url(http://www.blogblog.com/1kt/simple/gradients_light.png)"/>
    <Variable name="body.background.gradient.tile" description="Body Gradient Tile" type="url"
    default="url(http://www.blogblog.com/1kt/simple/body_gradient_tile_light.png)" value="url(http://www.blogblog.com/1kt/simple/body_gradient_tile_light.png)"/>
    <Variable name="content.background.color.selector" description="Content Background Color Selector" type="string" default=".content-inner" value=".content-inner"/>
    <Variable name="content.padding" description="Content Padding" type="length" default="10px" value="10px"/>
    <Variable name="content.padding.horizontal" description="Content Horizontal Padding" type="length" default="$(content.padding)" value="$(content.padding)"/>
    <Variable name="content.shadow.spread" description="Content Shadow Spread" type="length" default="40px" value="40px"/>
    <Variable name="content.shadow.spread.webkit" description="Content Shadow Spread (WebKit)" type="length" default="5px" value="5px"/>
    <Variable name="content.shadow.spread.ie" description="Content Shadow Spread (IE)" type="length" default="10px" value="10px"/>
    <Variable name="main.border.width" description="Main Border Width" type="length" default="0" value="0"/>
    <Variable name="header.background.gradient" description="Header Gradient" type="url" default="none" value="none"/>
    <Variable name="header.shadow.offset.left" description="Header Shadow Offset Left" type="length" default="-1px" value="-1px"/>
    <Variable name="header.shadow.offset.top" description="Header Shadow Offset Top" type="length" default="-1px" value="-1px"/>
    <Variable name="header.shadow.spread" description="Header Shadow Spread" type="length" default="1px" value="1px"/>
    <Variable name="header.padding" description="Header Padding" type="length" default="30px" value="30px"/>
    <Variable name="header.border.size" description="Header Border Size" type="length" default="1px" value="1px"/>
    <Variable name="header.bottom.border.size" description="Header Bottom Border Size" type="length" default="$(header.border.size)" value="$(header.border.size)"/>
    <Variable name="header.border.horizontalsize" description="Header Horizontal Border Size" type="length" default="0" value="0"/>
    <Variable name="description.text.size" description="Description Text Size" type="string" default="140%" value="140%"/>
    <Variable name="tabs.margin.top" description="Tabs Margin Top" type="length" default="0" value="0"/>
    <Variable name="tabs.margin.side" description="Tabs Side Margin" type="length" default="30px" value="30px"/>
    <Variable name="tabs.background.gradient" description="Tabs Background Gradient" type="url"
    default="url(http://www.blogblog.com/1kt/simple/gradients_light.png)" value="url(http://www.blogblog.com/1kt/simple/gradients_light.png)"/>
    <Variable name="tabs.border.width" description="Tabs Border Width" type="length" default="1px" value="1px"/>
    <Variable name="tabs.bevel.border.width" description="Tabs Bevel Border Width" type="length" default="1px" value="1px"/>
    <Variable name="date.header.padding" description="Date Header Padding" type="string" default="inherit" value="inherit"/>
    <Variable name="date.header.letterspacing" description="Date Header Letter Spacing" type="string" default="inherit" value="inherit"/>
    <Variable name="date.header.margin" description="Date Header Margin" type="string" default="inherit" value="inherit"/>
    <Variable name="post.margin.bottom" description="Post Bottom Margin" type="length" default="25px" value="25px"/>
    <Variable name="image.border.small.size" description="Image Border Small Size" type="length" default="2px" value="2px"/>
    <Variable name="image.border.large.size" description="Image Border Large Size" type="length" default="5px" value="5px"/>
    <Variable name="page.width.selector" description="Page Width Selector" type="string" default=".region-inner" value=".region-inner"/>
    <Variable name="page.width" description="Page Width" type="string" default="auto" value="auto"/>
    <Variable name="main.section.margin" description="Main Section Margin" type="length" default="15px" value="15px"/>
    <Variable name="main.padding" description="Main Padding" type="length" default="15px" value="15px"/>
    <Variable name="main.padding.top" description="Main Padding Top" type="length" default="30px" value="30px"/>
    <Variable name="main.padding.bottom" description="Main Padding Bottom" type="length" default="30px" value="30px"/>
    <Variable name="paging.background"
    color="$(content.background.color)"
    description="Background of blog paging area" type="background"
    default="transparent none no-repeat scroll top center" value="transparent none no-repeat scroll top center"/>
    <Variable name="footer.bevel" description="Bevel border length of footer" type="length" default="0" value="0"/>
    <Variable name="startSide" description="Side where text starts in blog language" type="automatic" default="left" value="left"/>
    <Variable name="endSide" description="Side where text ends in blog language" type="automatic" default="right" value="right"/>
    */
    /* Content
    ----------------------------------------------- */
    #navbar-iframe {
    display: none !important;
    }
    body {
    font: $(body.font);
    color: $(body.text.color);
    background: $(body.background);
    padding: 0 $(content.shadow.spread) $(content.shadow.spread) $(content.shadow.spread);
    $(body.background.override)
    }
    html body $(page.width.selector) {
    min-width: 0;
    max-width: 100%;
    width: $(page.width);
    }
    a:link {
    text-decoration:none;
    color: $(link.color);
    }
    a:visited {
    text-decoration:none;
    color: $(link.visited.color);
    }
    a:hover {
    text-decoration:underline;
    color: $(link.hover.color);
    }
    .body-fauxcolumn-outer .fauxcolumn-inner {
    background: transparent $(body.background.gradient.tile) repeat scroll top left;
    _background-image: none;
    }
    .body-fauxcolumn-outer .cap-top {
    position: absolute;
    z-index: 1;
    height: 400px;
    width: 100%;
    background: $(body.background);
    $(body.background.override)
    }
    .body-fauxcolumn-outer .cap-top .cap-left {
    width: 100%;
    background: transparent $(body.background.gradient.cap) repeat-x scroll top left;
    _background-image: none;
    }
    .content-outer {
    -moz-box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 $(content.shadow.spread.webkit) rgba(0, 0, 0, .15);
    -goog-ms-box-shadow: 0 0 $(content.shadow.spread.ie) #333333;
    box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15);
    margin-bottom: 1px;
    }
    .content-inner {
    padding: $(content.padding) $(content.padding.horizontal);
    }
    $(content.background.color.selector) {
    background-color: $(content.background.color);
    }
    /* Header
    ----------------------------------------------- */
    .header-outer {
    background: $(header.background.color) $(header.background.gradient) repeat-x scroll 0 -400px;
    _background-image: none;
    }
    .Header h1 {
    font: $(header.font);
    color: $(header.text.color);
    text-shadow: $(header.shadow.offset.left) $(header.shadow.offset.top) $(header.shadow.spread) rgba(0, 0, 0, .2);
    }
    .Header h1 a {
    color: $(header.text.color);
    }
    .Header .description {
    font-size: $(description.text.size);
    color: $(description.text.color);
    }
    .header-inner .Header .titlewrapper {
    padding: 22px $(header.padding) 0px;
    }
    .header-inner .Header .descriptionwrapper {
    padding: 0 $(header.padding);
    }
    /* Tabs
    ----------------------------------------------- */
    .tabs-inner .section:first-child {
    border-top: $(header.bottom.border.size) solid $(tabs.border.color);
    }
    .tabs-inner .section:first-child ul {
    margin-top: -$(header.border.size);
    border-top: $(header.border.size) solid $(tabs.border.color);
    border-left: $(header.border.horizontalsize) solid $(tabs.border.color);
    border-right: $(header.border.horizontalsize) solid $(tabs.border.color);
    }
    .tabs-inner .widget ul {
    background: $(tabs.background.color) $(tabs.background.gradient) repeat-x scroll 0 -800px;
    _background-image: none;
    border-bottom: $(tabs.border.width) solid $(tabs.border.color);
    margin-top: $(tabs.margin.top);
    margin-left: -$(tabs.margin.side);
    margin-right: -$(tabs.margin.side);
    }
    .tabs-inner .widget li a {
    display: inline-block;
    padding: .6em 1em;
    font: $(tabs.font);
    color: $(tabs.text.color);
    border-$startSide: $(tabs.border.width) solid $(content.background.color);
    border-$endSide: $(tabs.bevel.border.width) solid $(tabs.border.color);
    }
    .tabs-inner .widget li:first-child a {
    border-$startSide: none;
    }
    .tabs-inner .widget li.selected a, .tabs-inner .widget li a:hover {
    color: $(tabs.selected.text.color);
    background-color: $(tabs.selected.background.color);
    text-decoration: none;
    }
    /* Columns
    ----------------------------------------------- */
    .main-outer {
    border-top: $(main.border.width) solid $(body.rule.color);
    }
    .fauxcolumn-left-outer .fauxcolumn-inner {
    border-right: 1px solid $(body.rule.color);
    }
    .fauxcolumn-right-outer .fauxcolumn-inner {
    border-left: 1px solid $(body.rule.color);
    }
    /* Headings
    ----------------------------------------------- */
    h2 {
    margin: 0 0 1em 0;
    font: $(widget.title.font);
    color: $(widget.title.text.color);
    text-transform: uppercase;
    }
    /* Widgets
    ----------------------------------------------- */
    .widget .zippy {
    color: $(widget.alternate.text.color);
    text-shadow: 2px 2px 1px rgba(0, 0, 0, .1);
    }
    .widget .popular-posts ul {
    list-style: none;
    }
    /* Posts
    ----------------------------------------------- */
    .date-header span {
    background-color: $(date.header.background.color);
    color: $(date.header.color);
    padding: $(date.header.padding);
    letter-spacing: $(date.header.letterspacing);
    margin: $(date.header.margin);
    }
    .main-inner {
    padding-top: $(main.padding.top);
    padding-bottom: $(main.padding.bottom);
    }
    .main-inner .column-center-inner {
    padding: 0 $(main.padding);
    }
    .main-inner .column-center-inner .section {
    margin: 0 $(main.section.margin);
    }
    .post {
    margin: 0 0 $(post.margin.bottom) 0;
    }
    h3.post-title, .comments h4 {
    font-family: 'Concert One', cursive;
    font-size: 250%;
    margin: .75em 0 0;
    }
    .post-body {
    font-size: 110%;
    line-height: 1.4;
    position: relative;
    }
    .post-body img, .post-body .tr-caption-container, .Profile img, .Image img,
    .BlogList .item-thumbnail img {
    padding: $(image.border.small.size);
    background: $(image.background.color);
    border: 1px solid $(image.border.color);
    -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    }
    .post-body img, .post-body .tr-caption-container {
    padding: $(image.border.large.size);
    }
    .post-body .tr-caption-container {
    color: $(image.text.color);
    }
    .post-body .tr-caption-container img {
    padding: 0;
    background: transparent;
    border: none;
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 0 rgba(0, 0, 0, .1);
    }
    .post-body blockquote{
    display:block;
    padding:10px 10px;
    background-color: #DDD;
    width: 90%;
    -webkit-margin-start: 10px;
    -webkit-margin-end: 10px;
    -moz-margin-start: 10px;
    -moz-margin-end: 10px;
    }
    .post-header {
    margin: 0 0 1.5em;
    line-height: 1.6;
    font-size: 90%;
    }
    .post-footer {
    margin: 5px -2px 0;
    padding: 5px 10px;
    color: $(post.footer.text.color);
    background-color: $(post.footer.background.color);
    border-bottom: 1px solid $(post.footer.border.color);
    line-height: 1.6;
    font-size: 90%;
    }
    #comments .comment-author {
    padding-top: 1.5em;
    border-top: 1px solid $(body.rule.color);
    background-position: 0 1.5em;
    }
    #comments .comment-author:first-child {
    padding-top: 0;
    border-top: none;
    }
    .avatar-image-container {
    margin: .2em 0 0;
    }
    #comments .avatar-image-container img {
    border: 1px solid $(image.border.color);
    }
    .comment-form {
    clear: both;
    max-width: 520px;
    }
    #comment-editor{
    height:253px;
    }
    .no-resize{
    resize: none;
    }
    /*
    pre{
    border:2px solid #000;
    }*/
    /* Accents
    ---------------------------------------------- */
    .section-columns td.columns-cell {
    border-$startSide: 1px solid $(body.rule.color);
    }
    .blog-pager {
    background: $(paging.background);
    }
    .blog-pager-older-link, .home-link,
    .blog-pager-newer-link {
    background-color: $(content.background.color);
    padding: 5px;
    }
    .footer-outer {
    border-top: $(footer.bevel) dashed #bbbbbb;
    }
    /* Mobile
    ----------------------------------------------- */
    body.mobile {
    padding: 0;
    }
    .mobile .content-inner {
    padding: 0;
    }
    .mobile .content-outer {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    padding: 0 $(content.shadow.spread);
    }
    body.mobile .AdSense {
    margin-left: -$(content.shadow.spread);
    }
    .mobile .tabs-inner .widget ul {
    margin-left: 0;
    margin-right: 0;
    }
    .mobile .post {
    margin: 0;
    }
    .mobile .main-inner .column-center-inner .section {
    margin: 0;
    }
    .mobile .main-inner {
    padding-top: 20px;
    padding-bottom: 20px;
    }
    .mobile .main-inner .column-center-inner {
    padding: 0;
    }
    .mobile .date-header span {
    padding: 0.4em 10px;
    margin: 0 -10px;
    }
    .mobile h3.post-title {
    margin: 0;
    }
    .mobile .blog-pager {
    background: transparent;
    }
    .mobile .footer-outer {
    border-top: none;
    }
    .mobile .main-inner, .mobile .footer-inner {
    background-color: $(content.background.color);
    }
    .mobile-link-button {
    background-color: $(link.color);
    }
    .mobile-link-button a:link, .mobile-link-button a:visited {
    color: $(content.background.color);
    }
    .dp-highlighter
    {
    font-family: "Consolas", "Monaco", "Courier New", Courier, monospace;
    font-size: 12px;
    background-color: #E7E5DC;
    width: 99%;
    overflow: auto;
    margin: 18px 0 18px 0 !important;
    padding-top: 1px; /* adds a little border on top when controls are hidden */
    }
    /* clear styles */
    .dp-highlighter ol,
    .dp-highlighter ol li,
    .dp-highlighter ol li span
    {
    margin: 0;
    padding: 0;
    border: none;
    }
    .dp-highlighter a,
    .dp-highlighter a:hover
    {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    }
    .dp-highlighter .bar
    {
    padding-left: 45px;
    }
    .dp-highlighter.collapsed .bar,
    .dp-highlighter.nogutter .bar
    {
    padding-left: 0px;
    }
    .dp-highlighter ol
    {
    list-style: decimal; /* for ie */
    background-color: #fff;
    margin: 0px 0px 1px 45px !important; /* 1px bottom margin seems to fix occasional Firefox scrolling */
    padding: 0px;
    color: #5C5C5C;
    }
    .dp-highlighter.nogutter ol,
    .dp-highlighter.nogutter ol li
    {
    list-style: none !important;
    margin-left: 0px !important;
    }
    .dp-highlighter ol li,
    .dp-highlighter .columns div
    {
    list-style: decimal-leading-zero; /* better look for others, override cascade from OL */
    list-style-position: outside !important;
    border-left: 3px solid #6CE26C;
    background-color: #F8F8F8;
    color: #5C5C5C;
    padding: 0 3px 0 10px !important;
    margin: 0 !important;
    line-height: 14px;
    }
    .dp-highlighter.nogutter ol li,
    .dp-highlighter.nogutter .columns div
    {
    border: 0;
    }
    .dp-highlighter .columns
    {
    background-color: #F8F8F8;
    color: gray;
    overflow: hidden;
    width: 100%;
    }
    .dp-highlighter .columns div
    {
    padding-bottom: 5px;
    }
    .dp-highlighter ol li.alt
    {
    background-color: #FFF;
    color: inherit;
    }
    .dp-highlighter ol li span
    {
    color: black;
    background-color: inherit;
    }
    /* Adjust some properties when collapsed */
    .dp-highlighter.collapsed ol
    {
    margin: 0px;
    }
    .dp-highlighter.collapsed ol li
    {
    display: none;
    }
    /* Additional modifications when in print-view */
    .dp-highlighter.printing
    {
    border: none;
    }
    .dp-highlighter.printing .tools
    {
    display: none !important;
    }
    .dp-highlighter.printing li
    {
    display: list-item !important;
    }
    /* Styles for the tools */
    .dp-highlighter .tools
    {
    padding: 3px 8px 3px 10px;
    font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
    color: silver;
    background-color: #f8f8f8;
    padding-bottom: 10px;
    border-left: 3px solid #6CE26C;
    }
    .dp-highlighter.nogutter .tools
    {
    border-left: 0;
    }
    .dp-highlighter.collapsed .tools
    {
    border-bottom: 0;
    }
    .dp-highlighter .tools a
    {
    font-size: 9px;
    color: #a0a0a0;
    background-color: inherit;
    text-decoration: none;
    margin-right: 10px;
    }
    .dp-highlighter .tools a:hover
    {
    color: red;
    background-color: inherit;
    text-decoration: underline;
    }
    /* About dialog styles */
    .dp-about { background-color: #fff; color: #333; margin: 0px; padding: 0px; }
    .dp-about table { width: 100%; height: 100%; font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; }
    .dp-about td { padding: 10px; vertical-align: top; }
    .dp-about .copy { border-bottom: 1px solid #ACA899; height: 95%; }
    .dp-about .title { color: red; background-color: inherit; font-weight: bold; }
    .dp-about .para { margin: 0 0 4px 0; }
    .dp-about .footer { background-color: #ECEADB; color: #333; border-top: 1px solid #fff; text-align: right; }
    .dp-about .close { font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; background-color: #ECEADB; color: #333; width: 60px; height: 22px; }
    /* Language specific styles */
    .dp-highlighter .comment, .dp-highlighter .comments { color: #008200; background-color: inherit; }
    .dp-highlighter .string { color: blue; background-color: inherit; }
    .dp-highlighter .keyword { color: #069; font-weight: bold; background-color: inherit; }
    .dp-highlighter .preprocessor { color: gray; background-color: inherit; }]]></b:skin>

    <b:template-skin>
    <b:variable default='930px' name='content.width' type='length' value='860px'/>
    <b:variable default='0' name='main.column.left.width' type='length' value='260px'/>
    <b:variable default='360px' name='main.column.right.width' type='length' value='0px'/>

    <![CDATA[
    body {
    min-width: $(content.width);
    }
    .content-outer, .content-fauxcolumn-outer, .region-inner {
    min-width: $(content.width);
    max-width: $(content.width);
    _width: $(content.width);
    }
    .main-inner .columns {
    padding-left: $(main.column.left.width);
    padding-right: $(main.column.right.width);
    }
    .main-inner .fauxcolumn-center-outer {
    left: $(main.column.left.width);
    right: $(main.column.right.width);
    /* IE6 does not respect left and right together */
    _width: expression(this.parentNode.offsetWidth -
    parseInt("$(main.column.left.width)") -
    parseInt("$(main.column.right.width)") + 'px');
    }
    .main-inner .fauxcolumn-left-outer {
    width: $(main.column.left.width);
    }
    .main-inner .fauxcolumn-right-outer {
    width: $(main.column.right.width);
    }
    .main-inner .column-left-outer {
    width: $(main.column.left.width);
    right: 100%;
    margin-left: -$(main.column.left.width);
    }
    .main-inner .column-right-outer {
    width: $(main.column.right.width);
    margin-right: -$(main.column.right.width);
    }
    #layout {
    min-width: 0;
    }
    #layout .content-outer {
    min-width: 0;
    width: 800px;
    }
    #layout .region-inner {
    min-width: 0;
    width: auto;
    }
    #ujepaz_1, .fbConnectWidgetTopmost{
    border:0;
    }
    #about author
    .author_info {
    float: left;
    width: 573px;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    margin-top: 15px;
    background: #eee;
    }
    .author_info h3 {
    margin-bottom: 10px;
    }
    .author_photo {
    float: right;
    margin: 0 0 0 10px;
    }
    .author_photo img {
    border: 1px solid #666;
    }
    .fb-add-to-timeline{
    display:none;
    }
    .popup{
    position:fixed;
    bottom:0;
    left:80%;
    }
    /* Show Gist line numbers
    ----------------------------------------------------*/
    .gist-highlight {
    border-left: 3ex solid #eee;
    position: relative;
    }
    .gist-highlight pre {
    counter-reset: linenumbers;
    }
    .gist-highlight pre div:before {
    color: #aaa;
    content: counter(linenumbers);
    counter-increment: linenumbers;
    left: -3ex;
    position: absolute;
    text-align: right;
    width: 2.5ex;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    ]]>
    </b:template-skin>
    <!-- Add-in CSS for syntax highlighting -->
    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shCore.js' type='text/javascript'/>

    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushCss.js' type='text/javascript'/>

    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushJScript.js' type='text/javascript'/>
    <script src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushPhp.js' type='text/javascript'/>
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'/>

    <script class='javascript'>
    //<![CDATA[
    function FindTagsByName(container, name, Tag)
    {
    var elements = document.getElementsByTagName(Tag);
    for (var i = 0; i < elements.length; i++)
    {
    if (elements[i].getAttribute("name") == name)
    {
    container.push(elements[i]);
    }
    }
    }
    var elements = [];
    FindTagsByName(elements, "code", "pre");
    FindTagsByName(elements, "code", "code");
    for(var i=0; i < elements.length; i++) {
    if(elements[i].nodeName.toUpperCase() == "TEXTAREA") {
    var childNode = elements[i].childNodes[0];
    var newNode = document.createTextNode(childNode.nodeValue.replace(/<br\s*\/?>/gi,'\n'));
    elements[i].replaceChild(newNode, childNode);
    }
    else if(elements[i].nodeName.toUpperCase() == "PRE") {
    brs = elements[i].getElementsByTagName("br");
    for(var j = 0, brLength = brs.length; j < brLength; j++) {
    var newNode = document.createTextNode("\n");
    elements[i].replaceChild(newNode, brs[0]);
    }
    }
    }
    dp.SyntaxHighlighter.HighlightAll();
    jQuery(function($){
    $("#comment-editor").contents().find("textarea").css("resize","none");
    });
    //]]>
    </script>
    <!-- Place this tag in the <head> of your document -->
    <link href='https://plus.google.com/103137247923693864096' rel='author'/><script type='text/javascript'>
    (function()
    {var po = document.createElement(&quot;script&quot;);
    po.type = &quot;text/javascript&quot;; po.async = true;po.src = &quot;https://apis.google.com/js/plusone.js&quot;;
    var s = document.getElementsByTagName(&quot;script&quot;)[0];
    s.parentNode.insertBefore(po, s);
    })();</script>
    <!-- Place this tag in the <head> of your document -->
    <link href='https://plus.google.com/103137247923693864096' rel='publisher'/>
    </head>

    <body expr:class='&quot;loading&quot; + data:blog.mobileClass'>
    <b:section class='navbar' id='navbar' maxwidgets='1' showaddelement='no'>
    <b:widget id='Navbar1' locked='true' title='Navbar' type='Navbar'/>
    </b:section>

    <div class='body-fauxcolumns'>
    <div class='fauxcolumn-outer body-fauxcolumn-outer'>
    <div class='cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left'>
    <div class='fauxborder-right'/>
    <div class='fauxcolumn-inner'>
    </div>
    </div>
    <div class='cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>
    </div>

    <div class='content'>
    <div class='content-fauxcolumns'>
    <div class='fauxcolumn-outer content-fauxcolumn-outer'>
    <div class='cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left'>
    <div class='fauxborder-right'/>
    <div class='fauxcolumn-inner'>
    </div>
    </div>
    <div class='cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>
    </div>

    <div class='content-outer'>
    <div class='content-cap-top cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left content-fauxborder-left'>
    <div class='fauxborder-right content-fauxborder-right'/>
    <div class='content-inner'>

    <header>
    <div class='header-outer'>
    <div class='header-cap-top cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left header-fauxborder-left'>
    <div class='fauxborder-right header-fauxborder-right'/>
    <div class='region-inner header-inner'>
    <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
    <b:widget id='Header1' locked='true' title='Revath S kumar (Header)' type='Header'/>
    </b:section>
    </div>
    </div>
    <div class='header-cap-bottom cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>
    </header>

    <div class='tabs-outer'>
    <div class='tabs-cap-top cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left tabs-fauxborder-left'>
    <div class='fauxborder-right tabs-fauxborder-right'/>
    <div class='region-inner tabs-inner'>
    <b:section class='tabs' id='crosscol' maxwidgets='1' showaddelement='yes'/>
    <b:section class='tabs' id='crosscol-overflow' showaddelement='no'/>
    </div>
    </div>
    <div class='tabs-cap-bottom cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>

    <div class='main-outer'>
    <div class='main-cap-top cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>

    <div class='fauxborder-left main-fauxborder-left'>
    <div class='fauxborder-right main-fauxborder-right'/>
    <div class='region-inner main-inner'>

    <div class='columns fauxcolumns'>

    <div class='fauxcolumn-outer fauxcolumn-center-outer'>
    <div class='cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left'>
    <div class='fauxborder-right'/>
    <div class='fauxcolumn-inner'>
    </div>
    </div>
    <div class='cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>

    <div class='fauxcolumn-outer fauxcolumn-left-outer'>
    <div class='cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left'>
    <div class='fauxborder-right'/>
    <div class='fauxcolumn-inner'>
    </div>
    </div>
    <div class='cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>

    <div class='fauxcolumn-outer fauxcolumn-right-outer'>
    <div class='cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left'>
    <div class='fauxborder-right'/>
    <div class='fauxcolumn-inner'>
    </div>
    </div>
    <div class='cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>

    <!-- corrects IE6 width calculation -->
    <div class='columns-inner'>

    <div class='column-center-outer'>
    <div class='column-center-inner'>
    <b:section class='main' id='main' showaddelement='no'>
    <b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/>
    <b:widget id='HTML3' locked='false' title='Disqus for revathskumar' type='HTML'/>
    </b:section>
    </div>
    </div>

    <div class='column-left-outer'>
    <div class='column-left-inner'>
    <aside>
    <macro:include id='main-column-left-sections' name='sections'>
    <macro:param default='0' name='num' value='1'/>
    <macro:param default='sidebar-left' name='idPrefix'/>
    <macro:param default='sidebar' name='class'/>
    <macro:param default='true' name='includeBottom'/>
    </macro:include>
    </aside>
    </div>
    </div>

    <div class='column-right-outer'>
    <div class='column-right-inner'>
    <aside>
    <macro:include id='main-column-right-sections' name='sections'>
    <macro:param default='2' name='num' value='0'/>
    <macro:param default='sidebar-right' name='idPrefix'/>
    <macro:param default='sidebar' name='class'/>
    <macro:param default='true' name='includeBottom'/>
    </macro:include>
    </aside>
    </div>
    </div>

    </div>

    <div style='clear: both'/>
    <!-- columns -->
    </div>

    <!-- main -->
    </div>
    </div>
    <div class='main-cap-bottom cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>

    <footer>
    <div class='footer-outer'>
    <div class='footer-cap-top cap-top'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    <div class='fauxborder-left footer-fauxborder-left'>
    <div class='fauxborder-right footer-fauxborder-right'/>
    <div class='region-inner footer-inner'>
    <macro:include id='footer-sections' name='sections'>
    <macro:param default='2' name='num'/>
    <macro:param default='footer' name='idPrefix'/>
    <macro:param default='foot' name='class'/>
    <macro:param default='false' name='includeBottom'/>
    </macro:include>
    <!-- outside of the include in order to lock Attribution widget -->
    <b:section class='foot' id='footer-3' showaddelement='no'>
    <b:widget id='Attribution1' locked='true' title='' type='Attribution'/>
    </b:section>
    </div>
    </div>
    <div class='footer-cap-bottom cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>
    </footer>
    <b:if cond='data:blog.pageType != &quot;index&quot;'>
    <b:if cond='data:blog.isMobile'>
    <div class='popup'/>
    <b:else/>
    <div class='popup'>
    <b:section id='popup'/>
    </div>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <div class='fb-recommendations-bar' data-read-time='5' data-site='http://blog.revathskumar.com' expr:data-href='data:blog.url'/>
    </b:if>
    <!-- content -->
    </div>
    </div>
    <div class='content-cap-bottom cap-bottom'>
    <div class='cap-left'/>
    <div class='cap-right'/>
    </div>
    </div>
    </div>

    <script type='text/javascript'>
    window.setTimeout(function() {
    document.body.className = document.body.className.replace(&#39;loading&#39;, &#39;&#39;);
    }, 10);
    </script>
    </body>

    <macro:includable id='sections' var='col'>
    <macro:if cond='data:col.num == 0'>
    <macro:else/>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-1&quot;' preferred='yes' showaddelement='yes'/>

    <macro:if cond='data:col.num &gt;= 2'>
    <table border='0' cellpadding='0' cellspacing='0' mexpr:class='&quot;section-columns columns-&quot; + data:col.num'>
    <tbody>
    <tr>
    <td class='first columns-cell'>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-2-1&quot;'/>
    </td>

    <td class='columns-cell'>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-2-2&quot;'/>
    </td>

    <macro:if cond='data:col.num &gt;= 3'>
    <td class='columns-cell'>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-2-3&quot;'/>
    </td>
    </macro:if>

    <macro:if cond='data:col.num &gt;= 4'>
    <td class='columns-cell'>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-2-4&quot;'/>
    </td>
    </macro:if>
    </tr>
    </tbody>
    </table>

    <macro:if cond='data:col.includeBottom'>
    <b:section mexpr:class='data:col.class' mexpr:id='data:col.idPrefix + &quot;-3&quot;' showaddelement='no'/>
    </macro:if>
    </macro:if>
    </macro:if>
    </macro:includable>


    <script type='text/javascript'>

    var _gaq = _gaq || [];
    _gaq.push([&#39;_setAccount&#39;, &#39;UA-7969616-4&#39;]);
    _gaq.push([&#39;_trackPageview&#39;]);

    (function() {
    var ga = document.createElement(&#39;script&#39;); ga.type = &#39;text/javascript&#39;; ga.async = true;
    ga.src = (&#39;https:&#39; == document.location.protocol ? &#39;https://ssl&#39; : &#39;http://www&#39;) + &#39;.google-analytics.com/ga.js&#39;;
    var s = document.getElementsByTagName(&#39;script&#39;)[0]; s.parentNode.insertBefore(ga, s);
    })();

    </script>
    <b:section-contents id='sidebar-left-1'>
    <b:widget id='HTML5' locked='false' title='' type='HTML'/>
    <b:widget id='CustomSearch1' locked='false' title='Search This Blog' type='CustomSearch'/>
    <b:widget id='AdSense3' locked='false' title='' type='AdSense'/>
    <b:widget id='HTML4' locked='false' title='Find me on facebook' type='HTML'/>
    <b:widget id='HTML7' locked='false' title='On Bloggers' type='HTML'/>
    <b:widget id='AdSense2' locked='false' title='' type='AdSense'/>
    <b:widget id='HTML1' locked='false' title='Become Free' type='HTML'/>
    <b:widget id='HTML2' locked='false' title='About Me' type='HTML'/>
    <b:widget id='BlogArchive2' locked='false' title='Blog Archive' type='BlogArchive'/>
    </b:section-contents><b:section-contents id='footer-1'/><b:section-contents id='footer-2-1'/><b:section-contents id='footer-2-2'/></html>