Team:Sweden

From 2009.igem.org

(Difference between revisions)
Line 1: Line 1:
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-
<!-- TemplateBeginEditable name="doctitle" -->
+
<title>Untitled Document</title>
<title>Untitled Document</title>
-
<!-- TemplateEndEditable -->
 
-
<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
 
<style type="text/css">
<style type="text/css">
<!--
<!--
-
body  {
+
#Layer1 {
-
font: 100% Verdana, Arial, Helvetica, sans-serif;
+
-
background: #99CCCC;
+
-
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
+
-
padding: 0;
+
-
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
+
-
color: #000000;
+
-
background-image: url(../../Downloads/Goteberg/0374_goteborg_church.jpg);
+
-
}
+
-
 
+
-
/* Tips for this Hybrid layout
+
-
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
+
-
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
+
-
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
+
-
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
+
-
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
+
-
*/
+
-
.thrColHybHdr #container {
+
-
width: 100%;
+
-
background: #FFFFFF;
+
-
/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
+
-
text-align: left; /* this overrides the text-align: center on the body element. */
+
-
}
+
-
.thrColHybHdr #header {
+
-
background: #DDDDDD;
+
-
padding: 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
+
-
}
+
-
.thrColHybHdr #header h1 {
+
-
margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
+
-
padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
+
-
}
+
-
 
+
-
/* Tips for sidebar1:
+
-
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
+
-
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
+
-
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
+
-
*/
+
-
.thrColHybHdr #sidebar1 {
+
-
float: left;
+
-
width: 11em; /* since this element is floated, a width must be given */
+
-
background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
+
-
padding: 15px 0; /* top and bottom padding create visual space within this div */
+
-
}
+
-
.thrColHybHdr #sidebar2 {
+
-
float: right;
+
-
width: 11em; /* since this element is floated, a width must be given */
+
-
background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
+
-
padding: 15px 0; /* top and bottom padding create visual space within this div */
+
-
}
+
-
.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
+
-
margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
+
-
margin-right: 10px;
+
-
}
+
-
 
+
-
/* Tips for mainContent:
+
-
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
+
-
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
+
-
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
+
-
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
+
-
*/
+
-
.thrColHybHdr #mainContent {
+
-
margin: 0 0; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
+
-
padding: 0 2em 0 2em; /* padding here creates white space "inside the box." */
+
-
}
+
-
.thrColHybHdr #footer {
+
-
padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
+
-
background:#DDDDDD;
+
-
}
+
-
.thrColHybHdr #footer p {
+
-
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
+
-
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
+
-
}
+
-
 
+
-
/* Miscellaneous classes for reuse */
+
-
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
+
-
float: right;
+
-
margin-left: 8px;
+
-
}
+
-
.fltlft { /* this class can be used to float an element left in your page */
+
-
float: left;
+
-
margin-right: 0;
+
-
}
+
-
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
+
-
clear:both;
+
-
    height:0;
+
-
    font-size: 1px;
+
-
    line-height: 0px;
+
-
}
+
-
#apDiv1 {
+
position:absolute;
position:absolute;
-
width:135px;
+
width:900px;
-
height:26px;
+
height:762px;
z-index:1;
z-index:1;
-
left: 3px;
+
left: 153px;
-
top: 323px;
+
top: 2px;
-
background-color: #99CCCC;
+
}
}
-
#apDiv2 {
+
.style7 {font-size: 12px; color: #330000; }
 +
#Layer2 {
position:absolute;
position:absolute;
-
width:167px;
+
width:787px;
-
height:26px;
+
-
z-index:2;
+
-
background-color: #99CCCC;
+
-
left: 282px;
+
-
top: 323px;
+
-
}
+
-
#apDiv3 {
+
-
position:absolute;
+
-
width:117px;
+
-
height:55px;
+
-
z-index:1;
+
-
left: 10px;
+
-
top: 277px;
+
-
background-color: #00FF33;
+
-
}
+
-
.style2 {
+
-
font-size: xx-large;
+
-
color: #000000;
+
-
}
+
-
#apDiv4 {
+
-
position:absolute;
+
-
width:200px;
+
height:115px;
height:115px;
-
z-index:1;
 
-
left: 80px;
 
-
top: 252px;
 
-
}
 
-
#apDiv5 {
 
-
position:absolute;
 
-
width:141px;
 
-
height:26px;
 
z-index:2;
z-index:2;
-
left: 140px;
+
left: 92px;
-
background-color: #99CCCC;
+
top: 283px;
}
}
-
#apDiv6 { position:absolute;
+
.style8 {color: #000000}
-
width:141px;
+
.style9 {
-
height:26px;
+
color: #330000;
-
z-index:2;
+
font-weight: bold;
-
left: 140px;
+
-
background-color: #99CCCC;
+
}
}
-
#apDiv7 {
+
.style16 {font-size: 16px; font-weight: bold; font-style: italic; }
-
position:absolute;
+
.style18 {font-size: 10px}
-
width:166px;
+
-
height:25px;
+
-
z-index:3;
+
-
left: 451px;
+
-
top: 324px;
+
-
background-color: #99CCCC;
+
-
}
+
-
#apDiv8 {
+
-
position:absolute;
+
-
width:165px;
+
-
height:26px;
+
-
z-index:4;
+
-
left: 618px;
+
-
top: 323px;
+
-
background-color: #99CCCC;
+
-
}
+
-
#apDiv9 {
+
-
position:absolute;
+
-
width:162px;
+
-
height:26px;
+
-
z-index:5;
+
-
left: 786px;
+
-
top: 323px;
+
-
background-color: #99CCCC;
+
-
}
+
-
#apDiv10 {
+
-
position:absolute;
+
-
width:140px;
+
-
height:26px;
+
-
z-index:6;
+
-
left: 950px;
+
-
top: 323px;
+
-
background-color: #99CCCC;
+
-
}
+
-
#apDiv11 {
+
-
position:absolute;
+
-
width:117px;
+
-
height:25px;
+
-
z-index:7;
+
-
left: 1093px;
+
-
top: 324px;
+
-
background-color: #99CCCC;
+
-
}
+
-
.style4 {color: #000000}
+
-->
-->
-
</style><!--[if IE]>
 
-
<style type="text/css">
 
-
/* place css fixes for all versions of IE in this conditional comment */
 
-
.thrColHybHdr #sidebar1, .thrColHybHdr #sidebar2 { padding-top: 30px; }
 
-
.thrColHybHdr #mainContent { zoom: 1; padding-top: 15px; }
 
-
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
 
</style>
</style>
-
<![endif]--></head>
+
</head>
-
 
+
-
<body class="thrColHybHdr" tracingsrc="../../Downloads/Goteberg/Picture1.png" tracingopacity="100">
+
-
<div id="container">
+
<body>
-
   <div id="header">
+
<div id="Layer1">
-
     <div>
+
   <table width="904" height="289" border="0">
-
       <h1><img src="head.jpg" width="1213" height="323" /></h1>
+
     <tr>
-
       <div id="apDiv1">
+
       <td colspan="11" bgcolor="#FFFFFF"><div align="center"><img src="head.jpg" width="897" height="229" /></div></td>
-
        <div align="center">Home</div>
+
    </tr>
-
      </div>
+
    <tr>
-
       <div id="apDiv5">
+
       <td width="16" bgcolor="#9AB2B4"><div align="center" class="style16">i</div></td>
-
        <div align="center">Our Team</div>
+
       <td width="46">&nbsp;</td>
-
       </div>
+
      <td width="369">&nbsp;</td>
-
    </div>
+
       <td width="34"><div align="center" class="style7">Home</div></td>
-
    <!-- end #header --></div>
+
      <td width="55"><div align="center" class="style7">Our Team </div></td>
-
  <div class="thrColHybHdr" id="mainContent">
+
      <td width="62"><div align="center" class="style7">Our Project </div></td>
-
    <div id="apDiv2">
+
       <td width="81"><div align="center" class="style7">Project design </div></td>
-
      <div align="center">Our Project<br />
+
      <td width="56"><div align="center" class="style7">Log Book </div></td>
-
       </div>
+
       <td width="41"><div align="center" class="style7">Results</div></td>
-
    </div>
+
      <td width="51"><div align="center" class="style7">Modeling</div></td>
-
    <p>&nbsp;</p>
+
       <td width="47"><div align="center" class="style7">Sponsors</div></td>
-
    <h1 class="style4">What is IGEM? </h1>
+
     </tr>
-
    <div class="style4" id="apDiv11">
+
     <tr>
-
       <div align="center">Sponsors</div>
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">G</div></td>
-
    </div>
+
       <td colspan="10">&nbsp;</td>
-
    <div class="style4" id="apDiv10">
+
     </tr>
-
       <div align="center">Modelling</div>
+
     <tr>
-
     </div>
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">E</div></td>
-
     <div class="style4" id="apDiv9">
+
      <td>&nbsp;</td>
-
      <div align="center">Results<br />
+
      <td colspan="9" rowspan="9"><div id="Layer2">
-
       </div>
+
        <p class="style9">What is iGEM ? </p>
-
     </div>
+
        <p align="justify" class="style8">The international Genetically Engineered Machine competition is designed to encourage undergraduates to work motivated on a project of their own in the field of synthetic biology.</p>
-
     <div class="style4" id="apDiv8">
+
        <p align="justify" class="style8">The iGEM competition started in 2003 at the MIT and grew steadily in size with the years. Every university can register a team. Even collaborations of schools are allowed participate.Goal of the project is to build new biological systems and to operate them in a living cell. Starting point for every team is a kit of biological parts.</p>
-
      <div align="center">Log Book<br />
+
        <p align="justify" class="style8">         These biological systems are presented at the Jamboree at the MIT where we give a 20 min presentation and present a poster. Freedom with what kind of project to do is essential. The students should hold most of the responsibility in that whereas the supervisor advise and guide. Therefore the iGEM competition is divided into different tracks going from environment, food energy, experimental measurement, health and medicine, human practice advance to software tool.<br />
-
      </div>
+
          This diversity implies that teams should be multidisciplinary.</p>
-
    </div>
+
        <p align="justify" class="style9">Objective of Our Project</p>
-
    <div class="style4" id="apDiv7">
+
        <p align="justify">......Coming Soon. </p>
-
      <div align="center">Project design<br />
+
        </div> </td>
-
      </div>
+
    </tr>
-
    </div>
+
    <tr>
-
    <p class="style4">The international Genetically Engineered Machine competition is designed to encourage undergraduates to work motivated on a project of their own in the field of synthetic biology.</p>
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">M</div></td>
-
    <p class="style4">The iGEM competition started in 2003 at the MIT and grew steadily in size with the years. Every university can register a team. Even collaborations of schools are allowed participate.</p>
+
      <td>&nbsp;</td>
-
    <p class="style4"><br />
+
    </tr>
-
      Goal of the project is to build new biological systems and to operate them in a living cell. Starting point for every team is a kit of biological parts.</p>
+
    <tr>
-
    <p class="style4"><br />
+
      <td bgcolor="#9AB2B4"><div align="center"></div></td>
-
      These biological systems are presented at the Jamboree at the MIT where we give a 20 min presentation and present a poster.</p>
+
      <td>&nbsp;</td>
-
    <p class="style4"><br />
+
    </tr>
-
      Freedom with what kind of project to do is essential. The students should hold most of the responsibility in that whereas the supervisor advise and guide. Therefore the iGEM competition is divided into different tracks going from environment, food energy, experimental measurement, health and medicine, human practice advance to software tool.</p>
+
    <tr>
-
    <p class="style4"><br />
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">2</div></td>
-
      This diversity implies that teams should be multidisciplinary</p>
+
      <td>&nbsp;</td>
-
    <p class="style2">Objective of our Project</p>
+
    </tr>
-
    <p class="style4">TEXT TO BE ADDED......<br class="clearfloat" />
+
    <tr>
-
  </p>
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">0</div></td>
-
  </div>
+
      <td>&nbsp;</td>
-
<div class="style4" id="footer">
+
     </tr>
-
     <p>Footer</p>
+
    <tr>
-
  <!-- end #footer --></div>
+
      <td bgcolor="#9AB2B4"><div align="center" class="style16">0</div></td>
-
<span class="style4">
+
      <td>&nbsp;</td>
-
<!-- end #container -->
+
    </tr>
-
</span></div>
+
    <tr>
 +
      <td bgcolor="#9AB2B4"><div align="center" class="style16">9</div></td>
 +
      <td>&nbsp;</td>
 +
    </tr>
 +
    <tr>
 +
      <td bgcolor="#FFFFFF">&nbsp;</td>
 +
      <td>&nbsp;</td>
 +
    </tr>
 +
    <tr>
 +
      <td bgcolor="#FFFFFF">&nbsp;</td>
 +
      <td><p>&nbsp;</p>
 +
      <p>&nbsp;</p>
 +
      <p>&nbsp;</p>
 +
      <p>&nbsp;</p>
 +
      <p>&nbsp;</p></td>
 +
    </tr>
 +
    <tr>
 +
      <td bgcolor="#FFFFFF">&nbsp;</td>
 +
      <td>&nbsp;</td>
 +
      <td colspan="9"><p align="center" class="style18">Team Sweden : iGEM 2009</p>
 +
      <p align="center" class="style18">Chalmers University of Technology &amp; Gothenburg University </p></td>
 +
    </tr>
 +
  </table>
 +
</div>
</body>
</body>
</html>
</html>

Revision as of 11:57, 16 June 2009

Untitled Document

i
   
Home
Our Team
Our Project
Project design
Log Book
Results
Modeling
Sponsors
G
 
E
 

What is iGEM ?

The international Genetically Engineered Machine competition is designed to encourage undergraduates to work motivated on a project of their own in the field of synthetic biology.

The iGEM competition started in 2003 at the MIT and grew steadily in size with the years. Every university can register a team. Even collaborations of schools are allowed participate.Goal of the project is to build new biological systems and to operate them in a living cell. Starting point for every team is a kit of biological parts.

These biological systems are presented at the Jamboree at the MIT where we give a 20 min presentation and present a poster. Freedom with what kind of project to do is essential. The students should hold most of the responsibility in that whereas the supervisor advise and guide. Therefore the iGEM competition is divided into different tracks going from environment, food energy, experimental measurement, health and medicine, human practice advance to software tool.
This diversity implies that teams should be multidisciplinary.

Objective of Our Project

......Coming Soon.

M
 
 
2
 
0
 
0
 
9
 
   
 

 

 

 

 

 

   

Team Sweden : iGEM 2009

Chalmers University of Technology & Gothenburg University