Team:UC Davis E/Management

From 2012e.igem.org

(Difference between revisions)
 
(20 intermediate revisions not shown)
Line 80: Line 80:
         <link rel="stylesheet" type="text/css" href="https://2012.igem.org/forum/forum_styles.css" />
         <link rel="stylesheet" type="text/css" href="https://2012.igem.org/forum/forum_styles.css" />
<script type="text/javascript"        src ="https://2012.igem.org/forum/forum_scripts.js"></script>
<script type="text/javascript"        src ="https://2012.igem.org/forum/forum_scripts.js"></script>
 +
 +
<!-- slide script starts here -->
 +
<script type="text/javascript">
<script type="text/javascript">
-
$(document).ready(function(){
+
function slider() {
-
        $('.ntabs a').click(function() {
+
    var $current = $('#slides IMG.current');
-
$this = $(this);
+
 
-
$('.npanel').hide();
+
    if ( $current.length == 0 ) $current = $('#slides IMG:last');
-
$('.ntabs a.active').removeClass('active');
+
    var $next =  $current.next().length ? $current.next()
-
$this.addClass('active').blur();
+
        : $('#slides IMG:first');
-
var contents = $this.attr('href');
+
 
-
$(contents).fadeIn(250);  
+
      $current.addClass('previous');
-
return false;      
+
    $next.css({opacity: 0.0})
-
});
+
        .addClass('current')
-
$('.ntabs li:first a').click();
+
        .animate({opacity: 1.0}, 4000, function() {
 +
            $current.removeClass('current previous');
 +
        });
 +
 
 +
var $navicurrent = $('.progress li.current');
 +
if($navicurrent.length ==0) $navicurrent = $('.progress li:last');
 +
var $navinext = $navicurrent.next().length ? $navicurrent.next() : $('.progress li:first');
 +
$navicurrent.addClass('previous');
 +
$navicurrent.removeClass('current previous');
 +
$navinext.addClass('current').animate({opacity: 1.0}, 4000, function() {
 +
        });
 +
 
 +
$('.progress li').click(function(){
 +
   
 +
var $ncurrent = $(this);
 +
        $('.progress li').removeClass('current').removeClass('previous');
 +
        $('#slides IMG').removeClass('current').removeClass('previous');  
 +
        $ncurrent.addClass('current');
 +
        var ncurrentindex = $ncurrent.index();
 +
if(  ncurrentindex=== 0) $current = $('#slides IMG:first');
 +
        if(  ncurrentindex=== 1) $current = $('#slides IMG:eq(1)');
 +
        if(  ncurrentindex=== 2) $current = $('#slides IMG:last');
 +
        $current.addClass('current');
 +
 
});
});
-
$(document).ready(function(){
+
}
-
$("#firstpane p.menu_head").click(function()
+
$(function() {
 +
    setInterval( "slider()", 7000 );
 +
});
 +
 
 +
</script>
 +
 
 +
</script>
 +
 
 +
<!-- slide script ends here -->
 +
<style type="text/css">
 +
<!-- beginning of slider style -->
 +
#globalWrapper { background-color: transparent; border: none; margin: 0; padding: 0; width: 100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#content { z-index: 1; background-color: transparent; border: none; padding: 0; margin: 0; width: 100%; overflow: hidden; top:-3px; margin-top: -45px !important;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#bodyContent { border: none; padding:0; margin:0; width:100%;
 +
height:auto !important; /* real browsers */
 +
height:100%; /* IE6: treaded as min-height*/
 +
min-height:100%; /* real browsers */
 +
}
 +
#top-section { z-index: 2; height: 15px; margin: 0px; margin-left: auto; margin-right: auto; margin-bottom: 0 !important; padding:0; border: none; font-size: 10px;}
 +
#p-logo { height:1px; overflow:hidden; display: none;}
 +
#search-controls { overflow:hidden; display:block; background: none; position: absolute; top: 100px; right: 40px;}
 +
.left-menu { width: 500px !important; display:block; margin-top:-80px; border: none; text-align: right;}
 +
.left-menu ul { border: none; }
 +
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
 +
.right-menu ul { border: none; width: 300px;}
 +
#footer-box { background-color: rgba(191, 191, 191, 0.5); border: none; width: 850px; height: 30px; margin: -10px auto 0 auto; padding: 20px 0;}
 +
.visualClear { display: none; }
 +
#footer { border: none; width: 850px; margin: 0 auto; padding: 0;}
 +
.firstHeading { display: block;}
 +
#f-list a { color: #333; font-size: 10px;}
 +
#f-list a:hover { color: #666;}
 +
.printfooter { display: none; }
 +
#footer ul { margin: 0; padding: 0;}
 +
#footer ul li { margin-top: 0; margin-bottom: 0; margin-left: 10px; margin-right: 10px; padding: 0;}
 +
#search-controls { display:none; }
 +
h3#siteSub { display: none;}
 +
#contentSub {display: none;}
 +
p:first-child { display: block;}
 +
h1{border:none; width: 100%; clear: both;}
 +
 
 +
<!-- end of slides style -->
 +
 
 +
 
 +
#globalWrapper {
 +
    position: relative;
 +
    font-size: 127%;
 +
    width: 850px //100%;
 +
    margin: 0;
 +
    padding: 0;
 +
    padding-bottom: 10px;
 +
#    background:url("https://static.igem.org/mediawiki/2012e/4/41/Bestbg.gif");
 +
#    background-repeat: repeat;
 +
#    background-attachment: fixed;
 +
#    background-size:100% auto;
 +
}
 +
 
 +
#main-content {
 +
    position: relative;
 +
    width:  850px;
 +
    margin: 0 auto;
 +
    padding: 5px 5px 5px 5px;;
 +
    background: transparent;
 +
    color: black;
 +
#    border-left: 1px solid #ffffff;
 +
#    border-right: 1px solid #ffffff;
 +
#    line-height: 1.5em;
 +
}
 +
 
 +
 
 +
body {
 +
display:inherit;
 +
background-color: #E9E9E9;
 +
background-image: ;
 +
background-size: 100%;
 +
background-repeat: repeat;
 +
background-attachment:fixed;
 +
 
 +
    color: black;
 +
    font: x-small sans-serif;
 +
    margin: 0;
 +
    padding: 0;
 +
#    height:100%;
 +
}
 +
 
 +
 
 +
#topmenubar {
 +
    position: relative;
 +
    white-space: nowrap;
 +
    top: -3px;
 +
    width: 850px;
 +
    z-index: 5;
 +
    font-family: sans-serif;
 +
    font-size: 80%;
 +
    line-height: 1em;
 +
}
 +
 
 +
.topleft-menu, .topleft-menu a {
 +
    left: 0px;
 +
    text-align: right;
 +
    text-transform: lowercase;
 +
}
 +
 
 +
.topleft-menu:hover {
 +
    color: white;
 +
 
 +
}
 +
.topright-menu, .right-menu a {
 +
    right: 0px;
 +
    text-align: right;
 +
    color: white;
 +
}
 +
#topmenubar ul {
 +
    color: #555555;
 +
    list-style: none;
 +
}
 +
#topmenubar li {
 +
    display: inline;
 +
    position: relative;
 +
    cursor: pointer;
 +
    padding-left: 0px;
 +
    padding-right: 0px;
 +
}             
 +
.topleft-menu li a {
 +
    padding: 0px 7px 0px 0px;
 +
}
 +
.topleft-menu .selected {
 +
#    color: white;
 +
}
 +
#.left-menu .selected:hover {
 +
#    color: #2a2a7f;
 +
#}
 +
 
 +
.topleft-menu:hover a {
 +
    color: ;
 +
}
 +
#newnavi {
 +
        position:relative;
 +
        height:42px;
 +
        width: 850px;
 +
        margin-left: -2px;
 +
        display:block;
 +
        background:transparent;
 +
}
 +
#newnavi .newmenu {
 +
        display:inline;
 +
        overflow:hidden;
 +
        padding:0px;
 +
        margin:2px solid transparent;
 +
        list-style-type:none;
 +
        height:24px;
 +
        width: 107px;
 +
        list-style-image:none;
 +
        background: #2a2a7f;
 +
}
 +
#newnavi .newmenu li    {
 +
        float:right;
 +
        background: #2a2a7f;
 +
        text-align:center;
 +
}
 +
#newnavi .newmenu .selected {
 +
        background: #afc55b;
 +
}
 +
#newnavi .newmenu li a  {
 +
text-align:center; vertical-align:middle; width:121.5px; padding:5px 10px 5px 10px; display:block; color:#fff; text-decoration:none; font:14px arial, verdana, sans-serif; font-weight: bold;
 +
}
 +
#newnavi .newmenu li:hover a {
 +
        text-decoration:none;
 +
}
 +
#newnavi .newmenu ul    {
 +
position:absolute; left:-9999px; top:-9999px; list-style-type:none; list-style-image:none; margin:0px; border:0px; padding:0px; background:  #05bcea;
 +
}
 +
#newnavi .newmenu li:hover      {
 +
position:relative; background: #afc55b;
 +
}
 +
#newnavi .newmenu li:hover ul  {
 +
left:0px; top:26px; background: #afc55b;  width:150px; opacity:1.0 ; z-index:4;
 +
}
 +
#newnavi .newmenu li:hover ul li        {
 +
       
 +
        background: #afc55b;
 +
}
 +
#newnavi .newmenu li:hover ul li a      {
 +
text-align:left; padding:5px 0px 5px 0px;display:block; font-size:12px; width:150px; text-indent:10px; color:#444;
 +
background-color: #afc55b; text-decoration:none;     
 +
}
 +
#newnavi .newmenu li:hover ul li a:hover {
 +
background: #afc55b; color:#ffffff; width:150px;     
 +
}
 +
 
 +
/* slide starts here */
 +
#slides {
 +
    position:relative;
 +
    height:350px;
 +
    width: 840px
 +
   
 +
}
 +
 
 +
#slides IMG {
 +
        position:absolute;
 +
        opacity:0.0;
 +
        top:0px;   
 +
        left:0px;
 +
        z-index:1;   
 +
}
 +
 
 +
#slides .current {
 +
    z-index:3;
 +
    opacity:1.0;
 +
}
 +
 
 +
#slides .previous {
 +
    z-index:2;
 +
}
 +
/* slide ends here */
 +
//leftbox, rightbox starts here
 +
 
 +
#myleftbox
{
{
-
     $(this).css({backgroundImage:"url(./arrow_down.png)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
+
position:relative;
-
     $(this).siblings().css({backgroundImage:"url(./arrow_right.png)"});
+
width:625px;
 +
float:left;
 +
background-color:#d2d2d2;
 +
margin-top: 0px;
 +
border-radius: 4px;
 +
padding: 0px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
#myleftbox .smallbox
 +
{
 +
width:820px;
 +
float:left;
 +
background-color:#bfbfbf;
 +
margin-top: 17px;
 +
margin-bottom: 10px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
line-height:1.5em;
 +
color:black;
 +
}
 +
#myleftbox .smallbox h1
 +
{
 +
color:#004b85;
 +
font-weight:bold;
 +
}
 +
#myleftbox .smallbox p
 +
{
 +
color: #004b85;
 +
font-weight:bold;
 +
}
 +
#myleftbox .smallboxsite
 +
{
 +
width:820px;
 +
float:left;
 +
background-color:rgba(191,191,191,0.6 );
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
line-height:1.5em;
 +
color:black;
 +
 
 +
}
 +
 
 +
#myleftbox .threeboxes
 +
{
 +
width:175px;
 +
float:left;
 +
background-color:rgba(143,143,143,0.7);
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
border-left:2px solid #e8eff1;
 +
border-right:2px solid #e8eff1;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
 
 +
}
 +
 
 +
#myleftbox .threeleft
 +
{
 +
width:175px;
 +
float:left;
 +
background-color:#ba9108;
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#myleftbox .threecenter
 +
{
 +
width:175px;
 +
#float:left;
 +
background-color:#ba9108;
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
#myleftbox .threeright
 +
{
 +
width:175px;
 +
float:right;
 +
background-color:#ba9108;
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: white;
 +
}
 +
 
 +
#sponsorbox
 +
{
 +
position: relative;
 +
width: 215px;
 +
margin-top:17px;
 +
float: right;
 +
height: auto;
 +
}
 +
 
 +
#sponsorbox .sponsorfloat
 +
{
 +
width:205px;
 +
float: right;
 +
background-color: #004b85;
 +
margin-top: 0px;
 +
margin-bottom:5px;
 +
border-radius: 4px;
 +
padding: 5px 5px 5px 5px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
color: rgba(225,225,225,1);
 +
}
 +
 
 +
#sponsorbox .sponsorfloat h2
 +
{
 +
#color:#ba9108;
 +
color:white;
 +
font-size:130%;
 +
}
 +
//leftbox, rightbox ends here
 +
 
 +
#sponsorbox .sponsorfloat a
 +
{
 +
color:white;
 +
}
 +
.newsAnnouncement
 +
{
 +
width:205px;
 +
height:110px;
 +
overflow-x:hidden;
 +
overflow-y:scroll;
 +
}
 +
<!-- notebook tab style starts here -->
 +
.ntabs {
 +
margin: 0;
 +
padding: 0;
 +
zoom : 1;
 +
}
 +
.ntabs li {
 +
float: left;
 +
list-style: none;
 +
padding: 0;
 +
margin: 0;
 +
}
 +
.ntabs a {
 +
display: block;
 +
text-decoration: none;
 +
padding: 1px 8px 1px 8px;
 +
background-color: #ba9108;
 +
margin-right:1px;
 +
border: 1px solid rgb(153,153,153);
 +
        border-radius: 4px 4px 0px 0px;
 +
margin-bottom: -1px;
 +
font-size:14px;
 +
line-height:25px;
 +
}
 +
.ntabs a.active {
 +
border-bottom: 1px solid #fdf2b2;
 +
background-color: #fdf2b2;
 +
color: #004b85;
 +
position: relative;
 +
}
 +
.ntabs a:hover {
 +
        background-color: rgba(186,145,8,0.3);     
 +
}
 +
.npanelContainer {
 +
background:url("./notepad_pattern.jpg") repeat;
 +
clear: both;
 +
margin-bottom: 25px;
 +
border: 1px solid rgb(153,153,153);
 +
background-color: white;
 +
padding: 17px 0 0 10px;;
 +
        font-size:14px;
 +
        line-height:25px;
 +
        border-radius:4px;
 +
}
 +
 
 +
.npanel h2 {
 +
color: rgb(57,78,121);
 +
text-shadow: none;
 +
}
 +
.npanel p {
 +
color: black;
 +
}
 +
<!-- notebook tab style ends here -->
 +
<!--DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"-->
 +
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
 +
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 +
<meta name="generator" content="MediaWiki 1.16.0" />
 +
<link rel="shortcut icon" href="/favicon.ico" />
 +
<link rel="search" type="application/opensearchdescription+xml" href="https://2012.igem.org/wiki/opensearch_desc.php" title="2012.igem.org (en)" />
 +
<link title="Creative Commons" type="application/rdf+xml" href="https://2012.igem.org/wiki/index.php? title=Team:UC_Davis&amp;action=creativecommons" rel="meta" />
 +
<link rel="copyright" href="http://creativecommons.org/licenses/by/3.0/" />
 +
<link rel="alternate" type="application/atom+xml" title="2012.igem.org Atom feed" href="https://2012.igem.org/wiki/index.php?title=Special:RecentChanges&amp;feed=atom" /> <title>Team:UC Davis - 2012.igem.org</title>
 +
<style type="text/css" media="screen, projection">/*<![CDATA[*/
 +
@import "/wiki/skins/common/shared.css?270";
 +
@import "/wiki/skins/igem/main.css?270";
 +
/*]]>*/</style>
 +
 
 +
<link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/common/shared.css?270" />
 +
<link rel="stylesheet" type="text/css" media="screen, projection" href="https://2012.igem.org/wiki/skins/igem/main.css?270" />
 +
 
 +
<link rel="stylesheet" type="text/css" media="print" href="/wiki/skins/common/commonPrint.css?270" />
 +
<!--[if lt IE 5.5000]><style type="text/css">@import "/wiki/skins/igem/IE50Fixes.css?270";</style><![endif]-->
 +
<!--[if IE 5.5000]><style type="text/css">@import "/wiki/skins/igem/IE55Fixes.css?270";</style><![endif]-->
 +
<!--[if IE 6]><style type="text/css">@import "/wiki/skins/igem/IE60Fixes.css?270";</style><![endif]-->
 +
<!--[if IE 7]><style type="text/css">@import "/wiki/skins/igem/IE70Fixes.css?270";</style><![endif]-->
 +
<!--[if lt IE 7]><script type="text/javascript" src="/wiki/skins/common/IEFixes.js?270"></script>
 +
<meta http-equiv="imagetoolbar" content="no" /><![endif]-->
 +
<script>
 +
var skin="igem",
 +
stylepath="/wiki/skins",
 +
wgUrlProtocols="http\\:\\/\\/|https\\:\\/\\/|ftp\\:\\/\\/|irc\\:\\/\\/|gopher\\:\\/\\/|telnet\\:\\/\\/|nntp\\:\\/\\/|worldwind\\:\\/\\/|mailto\\:|news\\:|svn\\:\\/\\/",
 +
wgArticlePath="/$1",
 +
wgScriptPath="/wiki",
 +
wgScriptExtension=".php",
 +
wgScript="/wiki/index.php",
 +
wgVariantArticlePath=false,
 +
wgActionPaths={},
 +
wgServer="https://2012.igem.org",
 +
wgCanonicalNamespace="",
 +
wgCanonicalSpecialPageName=false,
 +
wgNamespaceNumber=0,
 +
wgPageName="Team:UC_Davis",
 +
wgTitle="Team:UC Davis",
 +
wgAction="view",
 +
wgArticleId=1318,
 +
wgIsArticle=true,
 +
wgUserName=null,
 +
wgUserGroups=null,
 +
wgUserLanguage="en",
 +
wgContentLanguage="en",
 +
wgBreakFrames=false,
 +
wgCurRevisionId=22440,
 +
wgVersion="1.16.0",
 +
wgEnableAPI=true,
 +
wgEnableWriteAPI=true,
 +
wgSeparatorTransformTable=["", ""],
 +
wgDigitTransformTable=["", ""],
 +
wgMainPageTitle="Main Page",
 +
wgFormattedNamespaces={"-2": "Media", "-1": "Special", "0": "", "1": "Talk", "2": "User", "3": "User talk", "4": "2012.igem.org", "5": "2012.igem.org talk", "6": "File", "7": "File talk", "8": "MediaWiki", "9": "MediaWiki talk", "10": "Template", "11": "Template talk", "12": "Help", "13": "Help talk", "14": "Category", "15": "Category talk"},
 +
wgNamespaceIds={"media": -2, "special": -1, "": 0, "talk": 1, "user": 2, "user_talk": 3, "2012.igem.org": 4, "2012.igem.org_talk": 5, "file": 6, "file_talk": 7, "mediawiki": 8, "mediawiki_talk": 9, "template": 10, "template_talk": 11, "help": 12, "help_talk": 13, "category": 14, "category_talk": 15, "image": 6, "image_talk": 7},
 +
wgSiteName="2012.igem.org",
 +
wgCategories=[],
 +
wgMWSuggestTemplate="https://2012.igem.org/wiki/api.php?action=opensearch\x26search={searchTerms}\x26namespace={namespaces}\x26suggest",
 +
wgDBname="2012_igem_org",
 +
wgSearchNamespaces=[0],
 +
wgMWSuggestMessages=["with suggestions", "no suggestions"],
 +
wgRestrictionEdit=[],
 +
wgRestrictionMove=[];       
 +
</script>
 +
<script type="text/javascript" src="https://2012.igem.org/wiki/skins/common/wikibits.js?270"><!-- wikibits js --></script>
 +
 
 +
<!-- Head Scripts -->
 +
<script src="https://2012.igem.org/wiki/skins/common/ajax.js?270"></script>
 +
<script src="https://2012.igem.org/wiki/skins/common/mwsuggest.js?270"></script>
 +
<script type="text/javascript" src="https://2012.igem.org/wiki/index.php? title=-&amp;action=raw&amp;gen=js&amp;useskin=igem"><!-- site js --></script>
 +
<!-- jQuery Javascript -->
 +
<script type="text/javascript"        src ="https://2012.igem.org/common/jquery-latest.min.js"></script>
 +
<script type="text/javascript"        src ="https://2012.igem.org/common/tablesorter/jquery.tablesorter.min.js"></script>
 +
 
 +
        <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/tablesorter/themes/groupparts/style.css" />
 +
        <link rel="stylesheet" type="text/css" href="https://2012.igem.org/common/table_styles.css" />
 +
        <link rel="stylesheet" type="text/css" href="https://2012.igem.org/forum/forum_styles.css" />
 +
<script type="text/javascript"        src ="https://2012.igem.org/forum/forum_scripts.js"></script>
 +
 
 +
<script type="text/javascript">
 +
$(document).ready(function(){
 +
    $("#firstpane p.menu_head").click(function(){
 +
     $(this).css({backgroundImage:"url(https://static.igem.org/mediawiki/2012/b/b3/UCD_arrow_down.png)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
 +
     $(this).siblings().css({backgroundImage:"url(https://static.igem.org/mediawiki/2012/1/1d/UCD_arrow_right.png)"});
});
});
});
});
-
 
+
</script>
-
</script>
+
<style type="text/css">
<style type="text/css">
<!-- beginning of slider style -->
<!-- beginning of slider style -->
Line 127: Line 660:
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
#menubar.right-menu { width:300px; display:block; float:left; margin-top:-80px; border: none;}
.right-menu ul { border: none; width: 300px;}
.right-menu ul { border: none; width: 300px;}
-
#footer-box { background-color: #216085; border: none; width: 100%; height: 100%; margin: -10px auto 0 auto; padding: 20px 0;}
+
#footer-box { background-color: #216085; border: none; width: 850px; height: 100%; margin: -10px auto 0 auto; padding: 20px 0;}
.visualClear { display: none; }
.visualClear { display: none; }
#footer { border: none; width: 850px; margin: 0 auto; padding: 0;}
#footer { border: none; width: 850px; margin: 0 auto; padding: 0;}
Line 351: Line 884:
color: #004b85;
color: #004b85;
font-weight:bold;
font-weight:bold;
 +
}
 +
 +
#myleftbox .smallboxsite
 +
{
 +
width:820px;
 +
float:left;
 +
background-color:rgba(191,191,191,0.6 );
 +
margin-top: 17px;
 +
border-radius: 4px;
 +
padding: 15px 15px 15px 15px;
 +
font: sans-serif;
 +
font-size: 13px;
 +
line-height:1.5em;
 +
color:black;
 +
}
}
Line 514: Line 1,062:
margin:1px;
margin:1px;
       font-weight:bold;
       font-weight:bold;
-
       background: #eef4d3 url(./arrow_right.png) center left no-repeat;
+
       background: #eef4d3 url(https://static.igem.org/mediawiki/2012/1/1d/UCD_arrow_right.png) center left no-repeat;
background-position: 5px center;
background-position: 5px center;
         background-size: 0.7em auto;
         background-size: 0.7em auto;
Line 529: Line 1,077:
#firstpane .menu_body a {
#firstpane .menu_body a {
   display:block;
   display:block;
-
   color:#006699;
+
   color:black;
-
   background-color:#EFEFEF;
+
   background-color:#E1E1E1;
   padding-left:10px;
   padding-left:10px;
-
   font-weight:bold;
+
   font-weight:normal;
   text-decoration:none;
   text-decoration:none;
}
}
Line 587: Line 1,135:
     padding: 0 .0em;}
     padding: 0 .0em;}
-
 
+
#catlinks {
 +
background-color:transparent;
 +
border:1px solid transparent;
 +
}
 +
#footpage {
 +
background-color:transparent;
 +
}
 +
#footer-box {
 +
background-color:rgba(191,191,191,0.5);
 +
}
#footer-box-1 {
#footer-box-1 {
          
          
Line 596: Line 1,153:
         border: 1px solid #444444;
         border: 1px solid #444444;
}
}
-
 
</style>
</style>
Line 679: Line 1,235:
<div id="myleftbox">
<div id="myleftbox">
-
<div id="myleftbox"  class="smallbox">
+
<div id="myleftbox"  class="smallbox" style="margin-bottom:0px;">
<!-- Safety content starts here -->
<!-- Safety content starts here -->
<h1> Management </h1>
<h1> Management </h1>
-
<article>
 
 +
<div id="firstpane" class="menu_list">
 +
  <p class="menu_head">Akshay Sethi: <span style="font-weight:normal">  President and Chief Executive Officer </span> </p>
 +
    <div class="menu_body">
 +
<article>
-
</article>
+
Akshay Sethi, currently pursuing a bachelor’s of science degree in Biochemistry and Molecular Biology at UC Davis, co-founded AmberCycle Industries in August 2012, initially for the International Genetically Engineered Machines (iGEM) entrepreneurship competition of 2012. Following the completion of his undergraduate studies, Akshay intends to pursue a MD degree, with aspirations to become a primary care provider in the future.
-
</div>
+
</article>
 +
    </div>
 +
  <p class="menu_head">Mattan Hamou: <span style="font-weight:normal">  Chief Financial Officer </span>  </p>
 +
    <div class="menu_body">
 +
      <article>
 +
 +
Mattan Hamou as a Life Science major at UC Davis is currently exploring all the opportunities available in the college of biological sciences, currently debating between cell biology and neurobiology, physiology and behavior. After joining the UC Davis International Genetically Engineered Machine competition, Mattan co-founded AmberCycle Industries. Mattan intends to continue his research in bioremediation as he pursues a medical degree.
 +
</article>
 +
    </div>
 +
 +
  <p class="menu_head">Nick Csicsery: <span style="font-weight:normal">Chief Operations Officer</span></p>
 +
    <div class="menu_body">
 +
    <article>
 +
 +
Nick Csicsery is an undergraduate studying biological systems engineering at the University of California, Davis. He has been involved with developing the technology for AmberCycle Industries as part of the 2012 igem team at UC Davis. In the future, Nick intends to pursue a PhD in biological engineering.
 +
</article>
 +
    </div>
 +
 +
  <p class="menu_head">Deborah Park: <span style="font-weight:normal">Chief Technology Officer    </span>  </p>
 +
    <div class="menu_body">
 +
      <article>
 +
 +
 +
Deborah Park is majoring in Biological Sciences at UC Davis. Following the completion of her undergraduate studies, she has intentions to focus on neurobiology. She is in charge of website production and AmberCycle corporate identity logo.
 +
        </article>
 +
  </div>
 +
 +
 +
  <p class="menu_head">Andrew Yao: <span style="font-weight:normal">Vice President, B.S. Biomedical Engineering      </span>  </p>
 +
    <div class="menu_body">
 +
        <article>
 +
 +
Andrew Yao is the Lab Manager of Facciotti Lab at UC Davis. He specializes in understanding how structures and dynamics of gene regulatory networks have evolved to regulate complex phenotypes. He also focuses primarily on microbial systems, which allow us to interrogate complex processes across a wide range of levels of cellular complexity (e.g. from single proteins to comprehensive systems-level analysis), and has become a crucial part to the development of AmberCycles technology.
 +
        </article>
 +
  </div>
 +
 +
 +
        </article>           
 +
    </div></div>
 +
 +
 +
<!-- site map starts here -->
 +
<div id="myleftbox"  class="smallboxsite" style=" margin-top: 15px; padding-top: 15px; padding-left: 350px; width: 485px;">
 +
<ul style="font-size:10px;list-style-image:none;list-style-type:none;float:left;display:inline;color:#000000;"  >
 +
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012e.igem.org/Team:UC_Davis_E/Terms_of_Use"> Legal</a></li>
 +
<li style="float:left ;margin:0 10px;"><a href="https://2012e.igem.org/Team:UC_Davis_E/Site_Map"> Site Map</a></li>
 +
 +
</ul>
</div>
</div>
-
</div>
+
<!-- site map ends here -->
-
<!--  </div> -->
+
<script>if (window.runOnloadHook) runOnloadHook();</script>
<script>if (window.runOnloadHook) runOnloadHook();</script>
</div>
</div>
</div>
</div>
-
 
+
<!-- footer ends here -->
-
</body>
+
</html>
</html>

Latest revision as of 03:58, 28 October 2012

Team:UC Davis - 2012.igem.org




Management