Difference between revisions of "Team:Cadets2Vets/Collaborations"

 
(38 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Team:Cadets2Vets/SideMenu}}
  
<html lang="en" dir="ltr" class="client-nojs">
+
<html>
 
+
<head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Team_Cadets2Vets_Collaborations skin-igem action-view">
+
 
+
        <script type='text/javascript'        src ='/common/tablesorter/jquery.tablesorter.min.js'></script>
+
        <link rel='stylesheet' type='text/css' href='/common/tablesorter/themes/groupparts/style.css' />
+
        <link rel='stylesheet' type='text/css' href='/common/table_styles.css' />
+
 
+
        <script type='text/javascript'        src ='/wiki/skins/Igem/resources/2017_skin.js'></script>
+
 
+
 
+
 
+
 
+
<!-- start of content -->
+
<script>
+
+
// This is the jquery part of your template. 
+
// Try not modify any of this code too much since it makes your menu work.
+
$(document).ready(function() {
+
$("#HQ_page").attr('id','');
+
// call the functions that control the menu
+
menu_functionality();
+
hide_show_menu();
+
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
+
function menu_functionality() {
+
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
+
$(".menu_button").click(function(){
+
// add or remove the class "open" , this class holds the "-"
+
$(this).children().toggleClass("open");
+
+
// show or hide the submenu
+
$(this).next('.submenu_wrapper').fadeToggle(400);
+
});
+
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
+
$("#display_menu_control").click(function(){
+
$('#menu_content').fadeToggle(400);
+
});
+
// call the current page highlight function
+
highlight_current_page();
+
}
+
// call the highlight current page function to show it on the menu with a different background color
+
function highlight_current_page() {
+
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
+
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
+
// now that the current_page class has been added to a menu item, make the submenu fade in
+
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
+
+
// change the +/- symbol of the corresponding menu button
+
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
+
}
+
// allow button on the black menu bar to show/hide the side menu
+
function hide_show_menu() {
+
+
// in case you preview mode is selected, the menu is hidden for better visibility
+
if (window.location.href.indexOf("submit") >= 0) {
+
$(".igem_2017_menu_wrapper").hide();
+
}
+
// if the black menu bar has been loaded
+
  if (document.getElementById('bars_item')) {
+
// when the "bars_item" has been clicked
+
$("#bars_item").click(function() {
+
$("#sideMenu").hide();
+
// show/hide the menu wrapper
+
$(".igem_2017_menu_wrapper").fadeToggle("100");
+
});
+
  }
+
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
+
else {
+
    setTimeout(hide_show_menu, 15);
+
}
+
}
+
});
+
</script>
+
<style>
+
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
+
/* Clear the default wiki settings */
+
#home_logo, #sideMenu { display:none; }
+
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { width:100%; padding:0px;  margin-top:-7px; margin-left:0px;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
/**************************************************************** MENU ***************************************************************/
+
/* Wrapper for the menu */
+
.igem_2017_menu_wrapper {
+
width: 15%;
+
height:100vh;
+
position:fixed;
+
right:0%;
+
padding:0px;
+
float:right;
+
border-left: 1px solid #383838;
+
background-color:#7c6429;
+
text-align:left;
+
font-family:Tahoma, Geneva, sans-serif;
+
overflow-y: auto;
+
overflow-x: hidden;
+
}
+
/* this hides the scrollbar to keep view consistency */
+
.igem_2017_menu_wrappe::-webkit-scrollbar {
+
display: none;
+
}
+
+
+
/* styling for links in the menu, removes the line under text */
+
.igem_2017_menu_wrapper a { 
+
text-decoration: none;
+
}
+
/* styling for the images in the menu */
+
.igem_2017_menu_wrapper img {
+
width: 100%;
+
}
+
/* styling for the menu buttons */
+
.igem_2017_menu_wrapper .menu_button {
+
width: 100%;
+
padding: 10px 0px 10px 15px;
+
float:left;
+
border-bottom: 1px solid #383838;
+
font-size: 12px;
+
font-weight: bold;
+
color: #ffffff;
+
cursor: pointer;
+
}
+
.igem_2017_menu_wrapper .menu_bottom_padding {
+
width: 100%;
+
height: 30px;
+
float:left;
+
}
+
.menu_button.direct_to_page {
+
padding-left: 36px;
+
}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
+
width:10%;
+
float:left;
+
}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
+
content: "+"; 
+
}
+
+
.open::before {
+
content: "-" !important; 
+
}
+
+
/* styling for the menu buttons on hover */
+
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {
+
background-color: #3399ff;
+
text-decoration: none;
+
color:#ffffff;
+
}
+
/* styling for the menu button when it is the current page */
+
.current_page {
+
background-color:#7fc1f7  !important;
+
color:#ffffff !important;
+
}
+
/* styling for the submenu buttons */
+
.igem_2017_menu_wrapper .submenu_button {
+
width: 100%;
+
padding: 10px 0px 10px 34px;
+
float:left;
+
background-color:#7c6429;
+
border-bottom: 1px solid #383838;
+
font-size: 12px;
+
color: #ffffff;
+
cursor: pointer;
+
}
+
/* wrapper for the submenu items, they are hidden by default*/
+
.igem_2017_menu_wrapper .submenu_wrapper {
+
display:none;
+
}
+
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
+
.igem_2017_menu_wrapper #display_menu_control {
+
display:none;
+
text-align:center;
+
}
+
+
/***************************************************** CONTENT OF THE PAGE ****************************************************/
+
/* Wrapper for the content */
+
.igem_2017_content_wrapper {
+
width: 81%;
+
margin: 2%;
+
display:block;
+
float:left;
+
background-color:white;
+
font-family:Tahoma, Geneva, sans-serif;
+
}
+
/********************************* HTML STYLING  *********************************/
+
/* styling for the titles h1 h2 */
+
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
+
padding:5px 15px;
+
border-bottom: 0px;
+
color: #3399ff;
+
}
+
/* styling for the titles  h3 h4 h5 h6*/
+
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {
+
padding:5px 15px;
+
border-bottom:0px;
+
color: #000000; 
+
}
+
/* font and text */
+
.igem_2017_content_wrapper p {
+
padding: 0px 15px;
+
font-size: 13px;
+
}
+
/* Links */
+
.igem_2017_content_wrapper a {
+
font-weight: bold;
+
text-decoration: underline;
+
text-decoration-color: #3399ff;
+
color:  #3399ff;
+
-webkit-transition: all 0.4s ease;
+
-moz-transition: all 0.4s ease;
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease;
+
transition: all 0.4s ease;
+
}
+
/* hover for the links */
+
.igem_2017_content_wrapper a:hover {
+
text-decoration:none;
+
color:#000000;
+
}
+
/* non numbered lists */
+
.igem_2017_content_wrapper ul {
+
padding:0px 20px;
+
font-size: 13px;
+
font-family:Tahoma, Geneva, sans-serif;
+
}
+
/* numbered lists */
+
.igem_2017_content_wrapper ol {
+
padding:0px;
+
font-size: 13px;
+
font-family:Tahoma, Geneva, sans-serif;
+
}
+
/* Table */
+
.igem_2017_content_wrapper table {
+
width: 97%;
+
margin:15px 10px;
+
border: 1px solid #383838;
+
border-collapse: collapse;
+
}
+
/* table cells */
+
.igem_2017_content_wrapper  td {
+
padding: 10px;
+
vertical-align: text-top;
+
border: 1px solid #383838;
+
border-collapse: collapse;
+
}
+
/* table headers */
+
.igem_2017_content_wrapper th {
+
padding: 10px;
+
vertical-align: text-top;
+
border: 1px solid #383838;
+
border-collapse: collapse;
+
background-color:#7c6429;
+
}
+
/**********************************LAYOUT CLASSES **********************************/
+
/* general class for column divs */
+
.igem_2017_content_wrapper .column  {
+
padding: 10px 0px;
+
float:left;
+
}
+
/* class for a full width column */
+
.column .full_size {
+
width:100%;
+
}
+
/* styling for images in a full width column*/
+
.column.full_size img {
+
width:97%;
+
padding: 10px 15px;
+
}
+
/* class for a half width column */
+
.column.half_size {
+
width: 50%;
+
}
+
/* styling for images in a half width column*/
+
.column.half_size img {
+
width: 94.5%;
+
padding: 10px 15px;
+
}
+
/********************************* SUPPORT CLASSES ********************************/
+
/* class that clears content below*/
+
.igem_2017_content_wrapper .clear {
+
clear:both;
+
}
+
+
/* adds extra spacing when clearing content */
+
.igem_2017_content_wrapper  .clear.extra_space {
+
height: 30px;
+
}
+
/* highlight class, makes content slightly smaller */
+
.igem_2017_content_wrapper .highlight {
+
margin: 0px 15px;
+
padding: 15px 0px;
+
}
+
/* highlight class, adds a gray background */
+
.igem_2017_content_wrapper .highlight.gray {
+
background-color: #7c6429;
+
}
+
/* highlight with decoration blue line on top */
+
.igem_2017_content_wrapper .highlight.blue_top {
+
    border-top: 4px solid #3399ff;
+
}
+
/* highlight with a full blue border decoration */
+
.igem_2017_content_wrapper .highlight.blue_border {
+
    border: 4px solid  #3399ff;
+
}
+
/* button class */
+
.igem_2017_content_wrapper .button{
+
max-width: 35%;
+
margin: 30px auto;
+
padding: 12px 10px;
+
    background-color: #3399ff;
+
    text-align: center;
+
  color: #ffffff;
+
-webkit-transition: all 0.4s ease;
+
-moz-transition: all 0.4s ease;
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease; transition: all 0.4s ease; 
+
}
+
/* styling for button on hover */
+
.igem_2017_content_wrapper .button:hover{
+
background-color: #3399ff;
+
    color: #000000;
+
}
+
/***************************************************** RESPONSIVE STYLING ****************************************************/
+
/* IF THE SCREEN IS LESS THAN 1200PX */
+
@media only screen and (max-width: 1200px) {
+
#content {width:100%; }
+
.igem_2017_menu_wrapper {width:15%; right:0;}
+
.highlight {padding:10px 0px;}
+
.igem_2017_menu_wrapper #display_menu_control { display:none; }
+
#menu_content { display:block;}
+
.menu_button.direct_to_page {padding-left: 17px;}
+
}
+
/* IF THE SCREEN IS LESS THAN 800PX */
+
@media only screen and (max-width: 800px) {
+
.igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
+
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
+
.column.half_size  {width:100%; }
+
.column.full_size img, .column.half_size img {  width: 100%; padding: 10px 0px;}
+
.highlight {padding:15px 5px;}
+
.igem_2017_menu_wrapper #display_menu_control { display:block; }
+
#menu_content { display:none;}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon { width: 5%; }
+
.menu_bottom_padding {display:none;}
+
.menu_button.direct_to_page { padding-left: 36px; }
+
}
+
/* special class that the system uses to make sure the team wants a page to be evaluated */
+
.judges-will-not-evaluate {
+
    width: 96.6%;
+
  margin: 5px 15px;
+
  display: block;
+
border: 4px solid #3399ff;
+
    font-weight: bold;
+
}
+
</style>
+
 
+
<div class="igem_2017_menu_wrapper" >
+
 
+
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
+
<div class="menu_button" id="display_menu_control">
+
MENU 
+
</div>
+
<div id="menu_content">
+
<a href="https://2017.igem.org/Team:Cadets2Vets">
+
<div class="menu_button direct_to_page">
+
HOME
+
</div>
+
</a>
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> TEAM
+
</div>
+
<div class="submenu_wrapper" id="team_submenu">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Team">
+
<div class="submenu_button" id="Team_page">
+
Team
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Collaborations">
+
<div class="submenu_button"  id="Collaborations_page">
+
Collaborations
+
</div>
+
</a>
+
</div>
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PROJECT
+
</div>
+
 
+
<!-- project submenu -->
+
<div class="submenu_wrapper">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Description">
+
<div class="submenu_button"  id="Description_page">
+
Description
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Design">
+
<div class="submenu_button"  id="Design_page">
+
Design
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Experiments">
+
<div class="submenu_button"  id="Experiments_page">
+
Experiments
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Notebook">
+
<div class="submenu_button"  id="Notebook_page">
+
Notebook
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/InterLab">
+
<div class="submenu_button"  id="InterLab_page">
+
InterLab
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Contribution">
+
<div class="submenu_button"  id="Contribution_page">
+
Contribution
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
+
<div class="submenu_button"  id="Model_page">
+
Model
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Results">
+
<div class="submenu_button"  id="Results_page">
+
Results
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Demonstrate">
+
<div class="submenu_button"  id="Demonstrate_page">
+
Demonstrate
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Improve">
+
<div class="submenu_button"  id="Improve_page">
+
Improve
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Attributions">
+
<div class="submenu_button"  id="Attributions_page">
+
Attributions
+
</div>
+
</a>
+
</div>
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> PARTS
+
</div>
+
+
<!-- parts submenu -->
+
<div class="submenu_wrapper">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Parts">
+
<div class="submenu_button"  id="Parts_page">
+
Parts
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Basic_Part">
+
<div class="submenu_button"  id="Basic_Part_page">
+
Basic Parts
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Composite_Part">
+
<div class="submenu_button"  id="Composite_Part_page">
+
Composite Parts
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Part_Collection">
+
<div class="submenu_button"  id="Part_Collection_page">
+
Part Collection
+
</div>
+
</a>
+
</div>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Safety">
+
<div class="menu_button direct_to_page">
+
SAFETY
+
</div>
+
</a>
+
<div class="menu_button" >
+
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
+
</div>
+
 
+
<!-- human practices submenu -->
+
<div class="submenu_wrapper">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Silver">
+
<div class="submenu_button"  id="Silver_page">
+
Silver HP
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/HP/Gold_Integrated">
+
<div class="submenu_button" id="Gold_Integrated_page">
+
Integrated and Gold
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Engagement">
+
<div class="submenu_button"  id="Engagement_page">
+
Public Engagement
+
</div>
+
</a>
+
</div>
+
<div class="menu_button">
+
<div class="expand_collapse_icon">  </div> AWARDS
+
</div>
+
 
+
<!-- awards submenu -->
+
<div class="submenu_wrapper">
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Applied_Design">
+
<div class="submenu_button"  id="Applied_Design_page">
+
Applied Design
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Entrepreneurship">
+
<div class="submenu_button"  id="Entrepreneurship_page">
+
Entrepreneurship
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Hardware">
+
<div class="submenu_button"  id="Hardware_page">
+
Hardware
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Measurement">
+
<div class="submenu_button"  id="Measurement_page">
+
Measurement
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Model">
+
<div class="submenu_button"  id="Model_page">
+
Model
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Plant">
+
<div class="submenu_button"  id="Plant_page">
+
Plant
+
</div>
+
</a>
+
<a href="https://2017.igem.org/Team:Cadets2Vets/Software">
+
<div class="submenu_button"  id="Software_page">
+
Software
+
</div>
+
</a>
+
</div>
+
<a href="https://igem.org/2017_Judging_Form?team=Cadets2Vets">
+
<div class="menu_button direct_to_page">
+
JUDGING FORM
+
</div>
+
</a>
+
<div class="menu_bottom_padding" >
+
</div>
+
</div>
+
</div>
+
 
+
 
+
 
+
<div class="igem_2017_content_wrapper">
+
 
+
 
+
 
+
<head>
+
 
<title>
 
<title>
Article - CADETS2VETS</title>
+
Collaborations - Home</title>
 
<!-- META -->
 
<!-- META -->
 
<meta charset="UTF-8">
 
<meta charset="UTF-8">
Line 564: Line 10:
 
 
 
 
<meta name="robots" content="noindex, nofollow">
 
 
 
 
<script src="https://www.youtube.com/iframe_api"></script>
 
 
<!-- CSS -->
 
<!-- CSS -->
<link rel="stylesheet" href="//edit.www.imcreator.com/css/common.css?v=1.4.0p1">
+
<link href="https://2017.igem.org/Team:Cadets2Vets/css/common?action=raw&ctype=text/css" rel="stylesheet">
<link rel="stylesheet" href="//edit.www.imcreator.com/js/lib/sweetalert/sweetalert.css" />
+
                <link href="https://2017.igem.org/Team:Cadets2Vets/css/all_css?action=raw&ctype=text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="//edit.www.imcreator.com/all_css.css?v=1.4.0p1" />
+
 
+
 
 
+
<link rel="icon" type="image/png" href="https://static.igem.org/mediawiki/2017/7/71/Circleimage1.png" />
<link rel="icon" type="image/png" href="https://lh3.googleusercontent.com/dd_e0xA19up9208Tv6odcjHEw6z4cKAA6fTgjZ9ynkKoSnr5R4vFxI7gZp6pnZH1Vi5T5f-fphjFsrLG=s30" />
+
<link rel="apple-touch-icon" href="https://static.igem.org/mediawiki/2017/7/71/Circleimage1.png" />
<link rel="apple-touch-icon" href="https://lh3.googleusercontent.com/dd_e0xA19up9208Tv6odcjHEw6z4cKAA6fTgjZ9ynkKoSnr5R4vFxI7gZp6pnZH1Vi5T5f-fphjFsrLG=s30" />
+
<link id="vbid-5e0bb885-l8qwmrzh-STRIPE_DATA" link href="https://2017.igem.org/Team:Cadets2Vets/css/stripe_data_css?action=raw&ctype=text/css" rel="stylesheet">
+
+
 
 
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
+
                <link id="vbid-59a5b-fnxcttvm-STRIPE_DATA" link href="https://2017.igem.org/Team:Cadets2Vets/css/collaborations/stripe_data_css?action=raw&ctype=text/css" rel="stylesheet">
 
 
<link id="style-c148c-vexfro5f" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-vexfro5f&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link href="https://2017.igem.org/Team:Cadets2Vets/css/fonts?action=raw&ctype=text/css" rel="stylesheet">
<link id="style-6a014e3d-2ekd1ha4" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-6a014e3d-2ekd1ha4&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
                <link href="https://2017.igem.org/Team:Cadets2Vets/css/effects?action=raw&ctype=text/css" rel="stylesheet">
<link id="style-c148c-oayvzg7x" rel="stylesheet" type="text/css"   href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-oayvzg7x&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
                <link href="https://2017.igem.org/Team:Cadets2Vets/css/lightbox?action=raw&ctype=text/css" rel="stylesheet">
<link id="style-6220b2e3-f0sujcmp" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-6220b2e3-f0sujcmp&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
                <link href="https://2017.igem.org/Team:Cadets2Vets/css/spimeview?action=raw&ctype=text/css" rel="stylesheet">
<link id="style-c148c-omjn8lhq" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-omjn8lhq&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-c148c-wn9xyty3" rel="stylesheet" type="text/css"   href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-wn9xyty3&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-d6796841-f0sujcmp" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-d6796841-f0sujcmp&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-c148c-xkvqadvn" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-xkvqadvn&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-c148c-j9rehu5k" rel="stylesheet" type="text/css"   href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-j9rehu5k&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-c148c-ilf5hgbo" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-ilf5hgbo&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-f502a60e-hj1ol8de" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-f502a60e-hj1ol8de&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="style-c148c-zjadrzwq" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_dynamic_css?style_id=style-c148c-zjadrzwq&amp;viewer=xprs&amp;parent_style=style-c148c-omjn8lhq&amp;v=1.4.0p1">
+
<link id="vbid-c148c-8mcnamkh-STRIPE_DATA" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_data_css?page_id=vbid-c148c-8mcnamkh-STRIPE_DATA&amp;v=1.4.0p1">  
+
 
 
<link id="vbid-c148c-nxe9zty7-STRIPE_DATA" rel="stylesheet" type="text/css"  href="//edit.www.imcreator.com/stripe_data_css?page_id=vbid-c148c-nxe9zty7-STRIPE_DATA&amp;v=1.4.0p1">
+
<link id="vbid-5e0bb885-l8qwmrzh-STATIC_STYLE" link href="https://2017.igem.org/Team:Cadets2Vets/css/collaborations/static_style?action=raw&ctype=text/css" rel="stylesheet">
+
<link rel="stylesheet" type="text/css" href="//edit.www.imcreator.com/css/fonts.css?v=1.4.0p1" />
+
<link rel="stylesheet" type="text/css" href="//edit.www.imcreator.com/css/effects.css?v=1.4.0p1" />
+
<link rel="stylesheet" type="text/css" href="//edit.www.imcreator.com/css/lightbox.css?v=1.4.0p1">
+
+
<link rel="stylesheet" type="text/css" href="//edit.www.imcreator.com/css/spimeview.css?v=1.4.0p1">
+
 
 
 
 
 
<!-- SCRIPT -->
 
<!-- SCRIPT -->
<script src="https://code.jquery.com/jquery-2.x-git.min.js" type="text/javascript"></script>
+
<script type="text/javascript" src="https://2017.igem.org/Team:Cadets2Vets/js/xprs_helper?action=raw&ctype=text/javascript"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyByWRZWFbQRxJM7SiNz2NURPDPJPqTtBQQ" type="text/javascript"></script>
+
 
 +
<script type="text/javascript" src="https://2017.igem.org/Team:Cadets2Vets/js/all_js?action=raw&ctype=text/javascript"></script>
 +
<script type="text/javascript" src="https://2017.igem.org/Team:Cadets2Vets/js/lib/touchswipe/jquery_mobile_custom_min?action=raw&ctype=text/javascript"></script>
 
 
<script src="//edit.www.imcreator.com/js/xprs_helper.js?v=1.4.0p1" type="text/javascript"></script>
 
 
 
<script src="//edit.www.imcreator.com/js/lib/jquery.cookie.min.js" type="text/javascript"></script>
 
<script src="//edit.www.imcreator.com/js/lib/sweetalert/sweetalert.min.js" type="text/javascript"></script>
 
<script src="//edit.www.imcreator.com/translation_js?lang=en" type="text/javascript"></script>
 
 
<!-- User Head Code -->
 
 
 
<script src="https://imos004-dot-im--os.appspot.com/js/imos.js?v=1.4.0p1" type="text/javascript"></script>
 
 
<script type="text/javascript" src="//edit.www.imcreator.com/all_js.js?v=1.4.0p1"></script>
 
<script src="//edit.www.imcreator.com/js/lib/touchswipe/jquery.mobile.custom.min.js"></script>
 
<script type="text/javascript">IMOS.pageView();</script>
 
 
 
 
 
Line 629: Line 40:
 
 
 
<!-- User analytics -->
 
<!-- User analytics -->
 
<script type="text/javascript">
 
  var _gaq = _gaq || [];
 
  _gaq.push(['_setAccount', '']);
 
  _gaq.push(['_trackPageview']);
 
  (function() {
 
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
 
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
 
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 
  })();
 
</script>
 
  
  
 +
<!-- Serving analytics -->
 +
<script>
 +
var currentDomain =  window.location.host;
 +
if (currentDomain != "localhost:7000"){
 +
var _gaq = _gaq || [];
 +
_gaq.push(['_setAccount', 'UA-58695071-1']);
 +
_gaq.push(['_setDomainName', currentDomain]);
 +
_gaq.push(['_setAllowLinker', true]);
 +
_gaq.push(['_trackPageview']);
 +
}
 +
</script>
 +
 
<!-- Label config-->
 
<!-- Label config-->
 
<script>
 
<script>
 
 
var LABEL_CONFIG = JSON.parse('{"LANDING_PAGE": "fast_homepage", "BILLING": {"BUY_NOW_URL": "none", "BUY_NOW_IMAGE": "none", "PAYPAL_RECURRENCES": "1", "CUSTOM_CURRENCY": "USD", "HIDE_FREE_URL": "off", "PAYPAL_ID": "", "PAYPAL_AMOUNT": "100", "CUSTOM_TITLE": "Single Commercial License", "PAYPAL_PERIOD": "Y", "CUSTOM_EXPLAINED": "single domain connection for a single site. unlimited bandwidth, unlimited storage, premium support, e-commerce", "BILLING_TYPE": "abtest", "PAYPAL_OFFER_NAME": "Premium Subscription", "PAYPAL_EXPLAINED": "single domain connection for a single site. unlimited bandwidth, unlimited storage, premium support, e-commerce", "CUSTOM_CYCLE": "/month paid annualy", "PAYPAL_CURRENCY": "USD", "CUSTOM_PRICE": "100"}, "BRANDING": {"BRAND_THEMES_LOGO": "none", "BRAND_SECONDARY_COLOR": "rgb(255,255,255)", "BRAND_MAIN_COLOR": "#0099CC", "BRAND_BG": "https://lh3.googleusercontent.com/ZgLp2jeL7ynJJZ-aMv-LgcFLv1-wuV0E4mMxsQXqyPe9CDHiClIlQODrGLalwzQp4XNWjMBy8Z68369P4Q", "BUTTON_HOVER_COLOR": "#0099cc", "BRAND_SMALL_LOGO": "https://lh3.googleusercontent.com/PVw5qfegr3TcOhyx6UH2QShnmtTexxEIuzECuxiKnbfkzYPv28lrzSMSnelUe7nkoYjs-KLxOYzo1wgOSZk", "BRAND_LARGE_LOGO": "https://lh3.googleusercontent.com/BVPCuhW88_eSWMXpfFE8ZZh9IxRktAzfOp_rZ9vvhH2zLhLNoCJ6TjOleEnqppMxvYHdvsxDX-uXWfRrgQ"}, "SUPPORT": {"SUPPORT_URL": "http://support.imxprs.com/hc/en-us/requests/new", "VIDEO_ID": "K1ZnSLe-Rdk", "SUPPORT_ID": "", "KNOWLEDGE_CENTER_URL": "http://support.imxprs.com/hc/en-us"}, "ANALYTICS_ID": "UA-64970204-1", "META": {"OWNER": "xprsxprs", "DOMAIN": "imcreator.com", "CREATION_DATE": "28-07-2015 13:34:42", "PRODUCT_NAME": "XPRS", "NAME": "xprs"}, "DOMAIN_BILLING": {"BUY_NOW_URL": "none", "PAYPAL_RECURRENCES": "1", "CUSTOM_CURRENCY": "USD", "PAYPAL_PERIOD": "Y", "PAYPAL_AMOUNT": "100", "PAYPAL_ID": "", "CUSTOM_EXPLAINED": "1-Year domain subscription", "BILLING_TYPE": "standard", "PAYPAL_OFFER_NAME": "Premium Subscription", "PAYPAL_CURRENCY": "USD", "CUSTOM_PRICE": "100"}, "ID": "label-f6d7c", "SETTINGS": {"ALLOW_PERIPHERAL_PAGES": "allow", "LOGIN_URL": "", "ALLOW_ECOMMERCE": "allow", "ALLOW_NEW_DOMAIN": "allow", "ENABLE_IMXPRT": "true", "ECOMMERCE_DASHBOARD": "http://dashboard.shoprocket.co", "INCLUDE_REGISTER_PHONE": "disallow", "CUSTOM_TEMPLATES": "default", "API_TOKEN": "NOT GENERATED", "ALLOW_CALL_ME_CHECKBOX": "disallow", "SR_PARTNER_KEY": "N/A", "PHONE_EDIT_APP_LINK": "https://itunes.apple.com/app/apple-store/id953999749?pt=1847141&amp;mt=8", "DEFAULT_EDITOR_LANG": "en", "CUSTOM_SECTIONS": "default", "ALLOW_PHONE_EDIT": "allow", "ALLOW_NEW_SITES": "allow", "REGISTER_URL": "", "BILLING_SERVER": "", "USER_PROFILE": "show", "REGISTER_STEP": "themes", "ENABLE_IMOS": "false", "ECOMMERCE_SOLUTION": "IMOS", "WEBHOOKS_SERVER": "", "ALLOW_RESELLER": "allow"}, "HIY": "false", "EMAILS": {"FORWARD_ALL_EMAILS": "off", "FORWARD_EMAIL": ""}, "SERVERS": {"HEROKU_APP": "", "S3_ACCESS": "", "S3_REGION": "", "UPLOAD_TO_S3": "off", "S3_SECRET": "", "S3_BUCKET": ""}, "TOS_URL": "http://www.imcreator.com/terms-of-service"}');
+
var LABEL_CONFIG = {};
 
 
 
 
 
</script></head>
 
</script></head>
  
<body class="fast-animated-bg fixed-bg " data-ecommerce-solution="NONE" data-root-id="vbid-c148c-nxe9zty7" data-root-style-id="style-c148c-ilf5hgbo" data-default-currency="USD" data-osid="osid--6af0e67f-af8681d1"  data-app-version="1.4.0p1" data-caller="preview"  data-ecommerce-dashboard="http://dashboard.shoprocket.co" data-static-server="//edit.www.imcreator.com" data-imos-server="https://imos004-dot-im--os.appspot.com">
+
<body class="fast-animated-bg fixed-bg " data-ecommerce-solution="NONE" data-root-id="vbid-59a5b-fnxcttvm" data-root-style-id="style-59a5b-yamofliu" data-default-currency="USD" data-osid="osid--6af0e67f-af8681d1"  data-app-version="1.4.1f" data-caller="live"  data-ecommerce-dashboard="https://dashboard.shoprocket.co" data-static-server="//www.imcreator.com" data-imos-server="https://imos004-dot-im--os.appspot.com">
 
 
<div id="xprs" data-website-name="CADETS2VETS" class="xprs-holder" >
+
<div id="xprs" data-website-name="Home" class="xprs-holder" >
 
<div class="main-page "  >
 
<div class="main-page "  >
 
<div id="content">
 
<div id="content">
<div  id="vbid-c148c-8mcnamkh"  class="master container style-c148c-omjn8lhq content stripes  website-style " data-itemtype="folder" data-creator="" data-itemname="Article"  data-itemslug="article" data-itemstyleid="style-c148c-omjn8lhq" data-margintop="" data-arranger="stripes" data-layout="middle" data-vbid="vbid-c148c-8mcnamkh" data-preset-type-id="ITEMS" data-preview-style="style-c148c-omjn8lhq" data-style="style-5a24e-kzdyurm3ju" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  id="vbid-5e0bb885-l8qwmrzh"  class="master container style-5e0bb885-3s4dsjel content stripes  website-style " data-itemtype="folder" data-creator="" data-itemname="Collaborations"  data-itemslug="collaborations" data-itemstyleid="style-5e0bb885-3s4dsjel" data-margintop="" data-arranger="stripes" data-layout="middle" data-vbid="vbid-5e0bb885-l8qwmrzh" data-preset-type-id="ITEMS" data-preview-style="style-5e0bb885-3s4dsjel" data-style="style-5a24e-kzdyurm3ju" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
Line 675: Line 87:
 
 
 
<!-- MENUS START -->
 
<!-- MENUS START -->
<div  id="vbid-c148c-zyed6lpc"  class="master item-box  header-box style-c148c-oayvzg7x injected        " data-holder-type="header"" data-holder-type="header"  data-child-type="ORIGIN"  data-styleid="style-c148c-oayvzg7x" data-preview-styleid='style-c148c-oayvzg7x' data-preset-type-id="MENUS">
+
<div  id="vbid-59a5b-1xbnq2ek"  class="master item-box  header-box style-59a5b-jbqq3wgo injected        " data-holder-type="header"" data-holder-type="header"  data-child-type="ORIGIN"  data-styleid="style-59a5b-jbqq3wgo" data-preview-styleid='style-59a5b-jbqq3wgo' data-preset-type-id="MENUS">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div class="header-wrapper item-wrapper menus-wrapper ">
 
<div class="header-wrapper item-wrapper menus-wrapper ">
 
 
<div class="item-content leaf menu_layout header content" data-preview-style="style-c148c-oayvzg7x" data-style="style-7f715-scjjarqgxu"  data-behavior-type="NOTHING" data-orig-thumb-height="" data-orig-thumb-width="" data-vbid="vbid-c148c-zyed6lpc" data-bgimg="">
+
<div class="item-content leaf menu_layout header content" data-preview-style="style-59a5b-jbqq3wgo" data-style="style-7f715-scjjarqgxu"  data-behavior-type="NOTHING" data-orig-thumb-height="" data-orig-thumb-width="" data-vbid="vbid-59a5b-1xbnq2ek" data-bgimg="">
 
<div class="preview-content-wrapper">
 
<div class="preview-content-wrapper">
 
<div class="preview-content-holder">
 
<div class="preview-content-holder">
Line 694: Line 106:
 
<!-- TITLE TEMPLATE -->
 
<!-- TITLE TEMPLATE -->
 
 
 
+
<div class="element-placeholder" data-elementtype='TITLE' style="display:none;"></div>
<br />
+
  
 
<!-- SUBTITLE TEMPLATE -->
 
<!-- SUBTITLE TEMPLATE -->
Line 708: Line 119:
 
<!-- LINKS TEMPLATE -->
 
<!-- LINKS TEMPLATE -->
 
<div class="preview-item-links ">
 
<div class="preview-item-links ">
 +
<ul class="preview-links-wrapper">
  
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="index.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-a1a56421418f7ce"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Home</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="collaborations.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-5efad87d43e4352"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Collaborations</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="description.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-e6e2afb357139e4"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Description</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="design.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-c6287513fca8901"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Design</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="experiments.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-f4b485a3e8b3825"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Experiments</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-603d2303312c4bd"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook-august.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-e39fe0beffa33cd"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook August</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook-july.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-09ca318ecaf1b2f"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook July</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook-june.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-367041e6445b247"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook June</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="public-engagement.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-307cb61a9a844e1"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Public Engagement</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="safety.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-fa38138e1dd4fce"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Safety</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="team.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-8308751370782bc"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Team</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="basic-parts.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-78fbd0423085ce2"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Basic Parts</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="composite-parts.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-24ea54f35798e9a"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Composite Parts</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="parts.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-8d68d4dbac38a10"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Parts</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="interlab.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-c92600692c09125"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Interlab</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="our-partners.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-be35f8069be1925"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Our Partners</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook-september.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-4d7dd9f5c90ef9b"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook September</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="environmental-project.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="2d522622"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Environmental Project</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="hardware.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="8d3cfa8c"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Hardware</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="demonstrate.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="1ad7c153"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Demonstrate</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="improve.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="d9b23d12"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Improve</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="results.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="7e0ed437"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Results</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="attribution.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="8a69633b"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Attribution</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="notebook-october.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="643d5085"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Notebook October</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="silver-hp.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-563894f97a8ebaf"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Silver HP</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
 +
<li class="removable-parent">
 +
 +
<a class="removable-parent" href="integrated-and-gold.html" data-link-type="EXISTING"  target="_self" >
 +
 +
<span id="element-874635e92416b44"  class="preview-element Link item-link magic-circle-holder text-element custom" data-menu-name="PREVIEW_LINK" >Integrated and Gold</span>
 +
</a>
 +
 +
</li>
 +
 +
 +
<div class="element-placeholder" data-elementtype='LINK' style="display:none;"></div>
 +
 +
</ul>
 
</div>
 
</div>
 
 
 
 
+
<button class="hamburger links-menu-btn  small" type="button">
 +
  <span class="hamburger-box">
 +
  <span class="hamburger-inner"></span>
 +
  </span>
 +
</button>
 
 
 
 
Line 724: Line 442:
 
data-MENU_SCROLL="false"
 
data-MENU_SCROLL="false"
 
data-ALWAYS_MINIFIED="false"
 
data-ALWAYS_MINIFIED="false"
data-MENU_POSITION="top"
+
data-MENU_POSITION="none"
 
data-MENU_ALIGN="left"
 
data-MENU_ALIGN="left"
 
data-BACKGROUND_COLOR="rgb(124, 100, 41)"
 
data-BACKGROUND_COLOR="rgb(124, 100, 41)"
Line 738: Line 456:
 
 
 
<!-- PROMO START -->
 
<!-- PROMO START -->
<div  id="vbid-c148c-fyphpqme"  class="master item-box  gallery-box style-c148c-xkvqadvn         " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-c148c-xkvqadvn" data-preview-styleid='style-c148c-xkvqadvn' data-preset-type-id="PROMO">
+
<div  id="vbid-5e0bb885-nxdgvcyp"  class="master item-box  gallery-box style-5e0bb885-ivrw4vm3         " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-5e0bb885-ivrw4vm3" data-preview-styleid='style-5e0bb885-ivrw4vm3' data-preset-type-id="PROMO">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div class="gallery-wrapper item-wrapper promo-wrapper ">
 
<div class="gallery-wrapper item-wrapper promo-wrapper ">
 
 
<!-- CACHED VERSION (7) OF vbid-c148c-fyphpqme FROM  19-06-2017 22:20:38 --><div  class="sub container style-c148c-xkvqadvn content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-c148c-xkvqadvn" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-c148c-fyphpqme" data-preset-type-id="PROMO" data-preview-style="style-c148c-xkvqadvn" data-style="style-4e411-j0xhjgzynh" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  class="sub container style-5e0bb885-ivrw4vm3 content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-5e0bb885-ivrw4vm3" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-5e0bb885-nxdgvcyp" data-preset-type-id="PROMO" data-preview-style="style-5e0bb885-ivrw4vm3" data-style="style-4e411-j0xhjgzynh" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
Line 767: Line 485:
 
 
 
 
<div  id="vbid-c148c-jpost0dn"  class="sub item-box  page-box style-c148c-xkvqadvn         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-c148c-xkvqadvn" data-preview-styleid='style-c148c-xkvqadvn' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-5e0bb885-jqkdre6g"  class="sub item-box  page-box style-5e0bb885-ivrw4vm3         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-5e0bb885-ivrw4vm3" data-preview-styleid='style-5e0bb885-ivrw4vm3' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-c148c-jpost0dn" data-preview-style="style-c148c-xkvqadvn" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="1069" data-orig-thumb-width="1920" data-vbid="vbid-c148c-jpost0dn" data-bgimg="https://lh3.googleusercontent.com/MbDrgVuORLzl7QFSP_31AYWSzGoNQmtVBrYcOrvVk1uwSRb7b7-eSHkgyMvr4RNF0NSrKnywmUKHyPTT">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-5e0bb885-jqkdre6g" data-preview-style="style-5e0bb885-ivrw4vm3" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="416" data-orig-thumb-width="750" data-vbid="vbid-5e0bb885-jqkdre6g" data-bgimg="https://static.igem.org/mediawiki/2017/2/27/Collaborations_Header.png">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 781: Line 499:
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-c148c-d9ssnboa-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-5e0bb885-ueabipf9-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-c148c-d9ssnboa" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/MbDrgVuORLzl7QFSP_31AYWSzGoNQmtVBrYcOrvVk1uwSRb7b7-eSHkgyMvr4RNF0NSrKnywmUKHyPTT=s300);"  data-orig-width="1920" data-orig-height="1069" >
+
<div  id="vbid-5e0bb885-ueabipf9" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/2/27/Collaborations_Header.png);"  data-orig-width="750" data-orig-height="416" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 812: Line 530:
 
 
 
<!--  BY SPECIFIC ORDER -->
 
<!--  BY SPECIFIC ORDER -->
 
 
 
 
<div class="preview-icon-holder Icon removable-parent order-handle" >
 
 
<img id="vbid-c148c-u9jcovws" class="preview-element icon-source magic-circle-holder shrinkable-img  allow-mobile-hide" data-menu-name="PREVIEW_ICON" src="https://lh3.googleusercontent.com/m-c08br1k0exO4ZcgGTTZE3zzzJmqOplHDPzthuMdwY4DSzZTYBSVcmkya1RdBMsbuEsV4b3Pj9V_AFWUw" />
 
 
</div>
 
 
 
 
 
 
 
 
Line 831: Line 537:
 
<div class="preview-subtitle-holder removable-parent order-handle">
 
<div class="preview-subtitle-holder removable-parent order-handle">
 
 
<h3 id="vbid-c148c-omriunzi" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">WELCOME TO OUR COLLABORATION PAGE</h3>
+
<h3 id="vbid-5e0bb885-cnfk53uw" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">WELCOME TO OUR COLLABORATION PAGE</h3>
  
 
</div>
 
</div>
Line 844: Line 550:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-c148c-txjhbjlz" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-5e0bb885-qj3ub6mq" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
 
</div>
 
</div>
Line 858: Line 564:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h1 id="vbid-c148c-sjh1i1vv" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >DEEPER UNDERSTANDING. <br style="color: rgb(242, 242, 242); font-size: 31px; letter-spacing: normal; line-height: 34.1px; text-align: center; text-transform: uppercase;">OF HOW WE ACCOMPLISHED OUR MISSION.</h1>
+
<h1 id="vbid-5e0bb885-yz0nntgj" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >CONTRIBUTORS TO THE CAUSE</h1>
 
 
 
</div>
 
</div>
Line 905: Line 611:
 
 
 
 
<!-- ARTICLE START -->
+
<!-- TEXT_BLOCK START -->
<div  id="vbid-c148c-wct5zpuh"  class="master item-box  page-box style-c148c-vexfro5f          " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-c148c-vexfro5f" data-preview-styleid='style-c148c-vexfro5f' data-preset-type-id="ARTICLE">
+
<div  id="vbid-39e355d0-pwfs3s8z"  class="master item-box  gallery-box style-39e355d0-cfykn4og   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-39e355d0-cfykn4og" data-preview-styleid='style-39e355d0-cfykn4og' data-preset-type-id="TEXT_BLOCK">
<div id="no-image" class="stripe-background load-high-res " ></div>
+
<div class="page-wrapper item-wrapper article-wrapper ">
+
+
<div class="item-content leaf blocks_layout page content" data-self="vbid-c148c-wct5zpuh" data-preview-style="style-c148c-vexfro5f" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="720" data-orig-thumb-width="1080" data-vbid="vbid-c148c-wct5zpuh" data-bgimg="https://lh3.googleusercontent.com/5Csma7kBbB4xoe59umzB-A0FG--CG5OoDd9KLxNvbI5fRLfHJaqtodsPg1Ju9DOzug1Nd-8uYRQcD7mzJQ">
+
<div class="helper-div middle" >
+
<!-- <div class="benet" style="min-height:inherit;"></div> -->
+
<div class="text-side ">
+
<div class="vertical-aligner">
+
<div class="item-details blocks-preview-content-wrapper  blocks shrinker-parent" style="position:relative;">
+
<div class="blocks-preview-content-holder shrinker-content">
+
<!--  BY SPECIFIC ORDER -->
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-title-holder removable-parent order-handle">
+
+
<a href="https://www.ecbc.army.mil/"  data-link-type="EXTERNAL" target="_blank" >
+
+
<h2 id="vbid-c148c-lx8zerjh" class="preview-element blocks-preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_TITLE" >eDGEWOOD CHEMICAL BIOLOGICAL CENTER (ecbc)</h2>
+
</a>
+
</div>
+
<br class="lower-line-break" />
+
 
+
 
+
 
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-divider-holder removable-parent order-handle">
+
<div id="vbid-c148c-e3jnnydw" class="preview-element blocks-preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="BLOCKS_PREVIEW_DIVIDER">
+
</div>
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-body-holder removable-parent order-handle">
+
+
<div id="vbid-c148c-hftcy0of" class="preview-element blocks-preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_BODY">
+
<p class="MsoNormal"><span style="font-size:18px;"><span style="font-family:montserrat;">The U.S. Army Edgewood Chemical Biological Center (ECBC) is the primary Department of Defense technical organization for non-medical chemical and biological defense, and is a subordinate command of the U.S. Army Research, Development and Engineering Command.</span></span><o:p></o:p></p><p class="MsoNormal"><span style="font-size:18px;"><br></span></p><p class="MsoNormal"><span style="font-size:18px;"><span style="font-family:montserrat;">ECBC possesses an unrivaled chemical biological research and development infrastructure with scientists, engineers, technicians and specialists located at four different sites in the United States: Edgewood Area of Aberdeen Proving Ground, Md., Pine Bluff, Ark., Rock Island, Ill., and Dugway Proving Ground, Utah.</span></span></p><p class="MsoNormal"><span style="font-size:18px;"><br></span></p><p class="MsoNormal"><o:p></o:p></p><p class="MsoNormal"><o:p><span style="font-size:18px;"><span style="font-family:montserrat;"> </span></span></o:p></p><p class="MsoNormal"><span style="font-size:18px;"><span style="font-family:montserrat;">ECBC has a unique role in technology development that cannot be duplicated by private industry or research universities. It fosters research, development, testing, and application of technologies for protecting warfighters, first responders and the nation from chemical and biological warfare agents. ECBC is currently developing better ways to remotely detect these chemical and biological materials – before the warfighter or first responder ever enters the threat zone. ECBC is also developing a new generation of technologies to counter everything from homemade explosives to biological aerosols to traditional and non-traditional chemical hazards.</span></span><o:p></o:p></p>
+
</div>
+
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div id="vbid-c148c-tsgzw4tl-holder"  class="preview-image-holder blocks-inner-pic-holder removable-parent order-handle" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
 
+
 
+
<img  id="vbid-c148c-tsgzw4tl" class="blocks-inner-pic preview-element  magic-circle-holder  load-high-res shrinkable-img" data-menu-name="HEADER_IMAGE"  src="https://lh3.googleusercontent.com/5Csma7kBbB4xoe59umzB-A0FG--CG5OoDd9KLxNvbI5fRLfHJaqtodsPg1Ju9DOzug1Nd-8uYRQcD7mzJQ=s1600" data-orig-width="1080" data-orig-height="720" />
+
 
+
 
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
<!-- LAYOUT SETTINGS -->
+
<div class="layout-settings" style="display:none;" data-type="blocks"></div>
+
+
</div>
+
</div>
+
<!-- ARTICLE END -->
+
+
+
+
+
<!-- BIO_CV START -->
+
<div  id="vbid-c148c-fvzcckby"  class="master item-box  gallery-box style-c148c-j9rehu5k   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-c148c-j9rehu5k" data-preview-styleid='style-c148c-j9rehu5k' data-preset-type-id="BIO_CV">
+
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
<div class="gallery-wrapper item-wrapper bio_cv-wrapper ">
+
<div class="gallery-wrapper item-wrapper text_block-wrapper ">
 
 
<!-- CACHED VERSION (7) OF vbid-c148c-fvzcckby FROM  21-06-2017 20:51:27 --><div  class="sub container style-c148c-j9rehu5k content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-c148c-j9rehu5k" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-c148c-fvzcckby" data-preset-type-id="BIO_CV" data-preview-style="style-c148c-j9rehu5k" data-style="style-4e411-j0xhjgzynh" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  class="sub container style-39e355d0-cfykn4og content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-39e355d0-cfykn4og" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-39e355d0-pwfs3s8z" data-preset-type-id="TEXT_BLOCK" data-preview-style="style-39e355d0-cfykn4og" data-style="style-4e411-j0xhjgzynh" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
Line 1,022: Line 641:
 
 
 
 
<div  id="vbid-c148c-iks959hm"  class="sub item-box  page-box style-c148c-j9rehu5k         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-c148c-j9rehu5k" data-preview-styleid='style-c148c-j9rehu5k' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-39e355d0-4gaxjzpo"  class="sub item-box  page-box style-39e355d0-cfykn4og         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-39e355d0-cfykn4og" data-preview-styleid='style-39e355d0-cfykn4og' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-c148c-iks959hm" data-preview-style="style-c148c-j9rehu5k" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="1075" data-orig-thumb-width="1925" data-vbid="vbid-c148c-iks959hm" data-bgimg="https://lh3.googleusercontent.com/X89nnxXJW6DKhm62t3E4r9jXIBNjvMUlZQTkJhl6J9aQwOaplGEQ3Vb5A1IAc7v1MBk-xejW0-s3e7cLaYg">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-39e355d0-4gaxjzpo" data-preview-style="style-39e355d0-cfykn4og" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="754" data-orig-thumb-width="1009" data-vbid="vbid-39e355d0-4gaxjzpo" data-bgimg="https://static.igem.org/mediawiki/2017/8/88/USNA.jpg">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,036: Line 655:
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-c148c-p7rg5bwx-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-39e355d0-jm6adqzn-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-c148c-p7rg5bwx" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/X89nnxXJW6DKhm62t3E4r9jXIBNjvMUlZQTkJhl6J9aQwOaplGEQ3Vb5A1IAc7v1MBk-xejW0-s3e7cLaYg=s300);"  data-orig-width="1925" data-orig-height="1075" >
+
<div  id="vbid-39e355d0-jm6adqzn" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/8/88/USNA.jpg);"  data-orig-width="1009" data-orig-height="754" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 1,074: Line 693:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h2 id="vbid-c148c-jvim7vbp" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >RAIN</h2>
+
<h2 id="vbid-39e355d0-lhrwnuia" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >First Inter-Team Meeting (07/14/2017)<br></h2>
 
 
</div>
 
<br class="lower-line-break" />
 
 
 
 
 
 
 
 
<br class="upper-line-break" />
 
<div class="preview-subtitle-holder removable-parent order-handle">
 
 
<h3 id="vbid-c148c-boyo25ud" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">The Readiness Acceleration &amp; Innovation Network is a 501(c)(3) nonprofit organization based in Tacoma, WA. Working to unlock local innovation in the biotech/medical field, RAIN was founded as a collaboration between the University of Washington Tacoma, MultiCare Health System, and Madigan Army Medical Center. Together, we provide startups with significant support for ideation, research and development, prototyping, business development, and launch. In addition, the people and City of Tacoma are core partners in our efforts as we work together to create prosperity and well-being in our community.</h3>
 
 
 
</div>
 
</div>
 
<br class="lower-line-break" />
 
<br class="lower-line-break" />
Line 1,101: Line 706:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-c148c-dmhblhlz" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-39e355d0-i5dg9lve" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
 
</div>
 
</div>
Line 1,115: Line 720:
 
<div class="preview-body-holder removable-parent order-handle">
 
<div class="preview-body-holder removable-parent order-handle">
 
 
<div id="vbid-c148c-vptjx2kv" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
+
<div id="vbid-39e355d0-ccbscqzl" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
<p><o:p></o:p></p><p><span style="font-size:20px;"><strong>VISION</strong></span></p><p><span style="font-family:montserrat;"><span style="line-height:2em;"><span style="font-size:18px;">Thinking many years ahead to what we are working to achieve, we envision our city and region as being a major industrial and commercial player in the Pacific Northwest life-science sector with a reputation for being the best in the wold at we we do. Through helping build a local innovation-commercialization pipeline and the prosperity that occurs as a result, RAIN will be inclusive, empowering, and inspiring to our community, friends, and neighbors.</span></span></span></p>
+
<p><span style="letter-spacing: 1.2px; text-align: center; background-color: transparent; font-size: 12pt; vertical-align: baseline; white-space: pre-wrap;">In an attempt to learn the methods used by other iGEM teams we participated in an inter-team Skype call. We chose to meet with the other teams sponsored by the United States Armed forces, because we share many of the same challenges. These teams are Lab Pats Carroll High School and the US Naval Academy.</span></p><p><br></p><p><span style="letter-spacing: 1.2px; text-align: center; background-color: transparent; font-size: 12pt; vertical-align: baseline; white-space: pre-wrap;">Our team took many notes over the course of the hour-plus long Skype call that helped us to prepare for the upcoming challenges that iGEM poses. </span></p>
 
</div>
 
</div>
 
 
Line 1,159: Line 764:
 
</div>
 
</div>
 
</div>
 
</div>
<!-- BIO_CV END -->
+
<!-- TEXT_BLOCK END -->
 
 
 
 
 
 
 
 
<!-- BIO_CV START -->
+
<!-- TEXT_BLOCK START -->
<div  id="vbid-c148c-1ag10uzz"  class="master item-box  gallery-box style-c148c-wn9xyty3          " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-c148c-wn9xyty3" data-preview-styleid='style-c148c-wn9xyty3' data-preset-type-id="BIO_CV">
+
<div  id="vbid-9d7cb4c0-uxtvg9x1"  class="master item-box  gallery-box style-9d7cb4c0-0kemrtct    button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-9d7cb4c0-0kemrtct" data-preview-styleid='style-9d7cb4c0-0kemrtct' data-preset-type-id="TEXT_BLOCK">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
<div class="gallery-wrapper item-wrapper bio_cv-wrapper ">
+
<div class="gallery-wrapper item-wrapper text_block-wrapper ">
 
 
<!-- CACHED VERSION (7) OF vbid-c148c-1ag10uzz FROM  21-06-2017 20:50:33 --><div  class="sub container style-c148c-wn9xyty3 content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-c148c-wn9xyty3" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-c148c-1ag10uzz" data-preset-type-id="BIO_CV" data-preview-style="style-c148c-wn9xyty3" data-style="style-05eac-klcfm7pobp" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  class="sub container style-9d7cb4c0-0kemrtct content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-9d7cb4c0-0kemrtct" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-9d7cb4c0-uxtvg9x1" data-preset-type-id="TEXT_BLOCK" data-preview-style="style-9d7cb4c0-0kemrtct" data-style="style-4e411-j0xhjgzynh" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
 
data-ARRANGER_TYPE="flex"
 
data-ARRANGER_TYPE="flex"
 
data-ARRANGER_COLS="0"
 
data-ARRANGER_COLS="0"
data-ARRANGER_ITEM_MAX_WIDTH="1000"
+
data-ARRANGER_ITEM_MAX_WIDTH="400"
 
data-ARRANGER_ITEM_MIN_WIDTH="230"
 
data-ARRANGER_ITEM_MIN_WIDTH="230"
 
data-ARRANGER_ITEM_RATIO="1"
 
data-ARRANGER_ITEM_RATIO="1"
Line 1,194: Line 799:
 
 
 
 
<div  id="vbid-c148c-p1hyqlgl"  class="sub item-box  page-box style-c148c-wn9xyty3         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-c148c-wn9xyty3" data-preview-styleid='style-c148c-wn9xyty3' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-9d7cb4c0-jkvxtp6k"  class="sub item-box  page-box style-9d7cb4c0-0kemrtct         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-9d7cb4c0-0kemrtct" data-preview-styleid='style-9d7cb4c0-0kemrtct' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-c148c-p1hyqlgl" data-preview-style="style-c148c-wn9xyty3" data-style="style-05eac-4lclhpvhex" data-orig-thumb-height="680" data-orig-thumb-width="1020" data-vbid="vbid-c148c-p1hyqlgl" data-bgimg="https://lh3.googleusercontent.com/iR7-_QBlN9E1kUZQr2cb4xdTa3ZiJfKz1ecpslHyZ3OYibZ372REkdoYZ0XmqPuxvNGbaN1jU4JTK_G5yw">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-9d7cb4c0-jkvxtp6k" data-preview-style="style-9d7cb4c0-0kemrtct" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="960" data-orig-thumb-width="960" data-vbid="vbid-9d7cb4c0-jkvxtp6k" data-bgimg="https://static.igem.org/mediawiki/2017/0/00/ITesla-SoundBio.jpg">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,208: Line 813:
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-c148c-4okhwv0q-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-9d7cb4c0-nvl466cp-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-c148c-4okhwv0q" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/iR7-_QBlN9E1kUZQr2cb4xdTa3ZiJfKz1ecpslHyZ3OYibZ372REkdoYZ0XmqPuxvNGbaN1jU4JTK_G5yw=s300);"  data-orig-width="1020" data-orig-height="680" >
+
<div  id="vbid-9d7cb4c0-nvl466cp" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/0/00/ITesla-SoundBio.jpg);"  data-orig-width="960" data-orig-height="960" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 1,246: Line 851:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h2 id="vbid-c148c-56gb5mqt" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >URBAN WATERS</h2>
+
<h2 id="vbid-9d7cb4c0-shwx1gav" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >iTesla-soundbio team meeting (09/28/2017)<br></h2>
 
 
 
</div>
 
</div>
Line 1,259: Line 864:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-c148c-oh2kjbrc" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-9d7cb4c0-yysxnf0m" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
</div>
 
<br class="lower-line-break" />
 
 
 
 
 
 
 
 
<br class="upper-line-break" />
 
<div class="preview-subtitle-holder removable-parent order-handle">
 
 
<h3 id="vbid-c148c-1lzydmn7" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">About</h3>
 
 
 
</div>
 
</div>
 
<br class="lower-line-break" />
 
<br class="lower-line-break" />
Line 1,287: Line 878:
 
<div class="preview-body-holder removable-parent order-handle">
 
<div class="preview-body-holder removable-parent order-handle">
 
 
<div id="vbid-c148c-h8hwcefa" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
+
<div id="vbid-9d7cb4c0-l4j5yobd" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
<p><span style="font-family:montserrat;"><span style="line-height:2em;"><span style="font-size:18px;">The Center for Urban Waters brings together environmental scientists, analysts, engineers and policymakers who are developing creative and sustainable solutions to restore and protect Puget Sound. The founding partners – the City of Tacoma, the University of Washington Tacoma and the Puget Sound Partnership – are committed to providing a collaborative environment where the best-available science forms the basis for policy development and implementation. The Center for Urban Waters is the result of years of work by community leaders who dreamed of a world-class research center on Commencement Bay dedicated to finding solutions for urban bay communities.</span></span></span><o:p></o:p></p>
+
<p><span style="font-size: 16px; letter-spacing: 1.2px; text-align: center; white-space: pre-wrap;">Cadets2Vets Adviser Judy Nguyen and Cadets2Vets Collaborator from Center for Urban Waters Joel Baker had a conference call with two team members from iTesla-SoundBio: Anna Vasyura and Advisor Zach Mueller. They shared information about each others’ projects and the status of their experiments.</span></p><p><br></p><p><span style="font-size: 16px; letter-spacing: 1.2px; text-align: center; white-space: pre-wrap;">Anna and Zach are looking for help regarding the analysis of the degradation of polychlorinated biphenyls (PCBs). Joel had previously collaborated with a lab that performed this type of research and had a lot of valuable information to share. One of the significant bits of advice was to pivot the analysis from PCBs to PCEs (tetrachloroethene). </span></p><p><br></p><p><span style="font-size: 16px; letter-spacing: 1.2px; text-align: center; white-space: pre-wrap;">PCBs take a really long time to degrade and the analysis is not fast or easy to do. PCEs degrade a little quicker and make more sense to measure for the iGEM timeline. Joel will meet face to face with iTesla-SoundBio to work out more details of what the analytical experiments would involve. Judy has also joined the team’s Slack workspace and is available to help with any other technical questions or assistance with laboratory space. </span><span style="letter-spacing: 1.2px; text-align: center; font-size: 12pt; vertical-align: baseline; white-space: pre-wrap;"> </span></p>
 
</div>
 
</div>
 
 
Line 1,331: Line 922:
 
</div>
 
</div>
 
</div>
 
</div>
<!-- BIO_CV END -->
+
<!-- TEXT_BLOCK END -->
+
+
+
+
<!-- ARTICLE START -->
+
<div  id="vbid-d6796841-elbnuu5k"  class="master item-box  page-box style-d6796841-f0sujcmp          " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-d6796841-f0sujcmp" data-preview-styleid='style-d6796841-f0sujcmp' data-preset-type-id="ARTICLE">
+
<div id="no-image" class="stripe-background load-high-res " ></div>
+
<div class="page-wrapper item-wrapper article-wrapper ">
+
+
<div class="item-content leaf blocks_layout page content" data-self="vbid-d6796841-elbnuu5k" data-preview-style="style-d6796841-f0sujcmp" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="682" data-orig-thumb-width="1024" data-vbid="vbid-d6796841-elbnuu5k" data-bgimg="https://lh3.googleusercontent.com/jTKC9kCg8KosbJsJl5kW9PUS-PayykqKKSauyBeunJn-EhwFz8Ii_lIsX1ZYY79Tjx3jqb8BPSJoI4zAqA">
+
<div class="helper-div middle" >
+
<!-- <div class="benet" style="min-height:inherit;"></div> -->
+
<div class="text-side ">
+
<div class="vertical-aligner">
+
<div class="item-details blocks-preview-content-wrapper  blocks shrinker-parent" style="position:relative;">
+
<div class="blocks-preview-content-holder shrinker-content">
+
<!--  BY SPECIFIC ORDER -->
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-title-holder removable-parent order-handle">
+
+
<h2 id="vbid-d6796841-5abl90jn" class="preview-element blocks-preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_TITLE" >United States military academy</h2>
+
+
</div>
+
<br class="lower-line-break" />
+
 
+
 
+
 
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-divider-holder removable-parent order-handle">
+
<div id="vbid-d6796841-bmaunpwa" class="preview-element blocks-preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="BLOCKS_PREVIEW_DIVIDER">
+
</div>
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-body-holder removable-parent order-handle">
+
+
<div id="vbid-d6796841-6slvhhwu" class="preview-element blocks-preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_BODY">
+
<p><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;"><span style="color: rgb(30, 30, 30);">The United States Military Academy's mission is to educate, train and inspire the Corps of Cadets so that each graduate is a commissioned leader of character committed to the values of Duty, Honor, Country and prepared for a career of professional excellence and service to the nation as an officer in the United States Army.</span></span></span></span><br style="color: rgb(30, 30, 30); font-family: arial; font-size: 13.3333px; background-color: rgb(178, 180, 179);"><br></p>
+
</div>
+
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div id="vbid-d6796841-avcfy2xy-holder"  class="preview-image-holder blocks-inner-pic-holder removable-parent order-handle" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
 
+
 
+
<img  id="vbid-d6796841-avcfy2xy" class="blocks-inner-pic preview-element  magic-circle-holder  load-high-res shrinkable-img" data-menu-name="HEADER_IMAGE"  src="https://lh3.googleusercontent.com/jTKC9kCg8KosbJsJl5kW9PUS-PayykqKKSauyBeunJn-EhwFz8Ii_lIsX1ZYY79Tjx3jqb8BPSJoI4zAqA=s1600" data-orig-width="1024" data-orig-height="682" />
+
 
+
 
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-body-holder removable-parent order-handle">
+
+
<div id="vbid-d6796841-69acrgty" class="preview-element blocks-preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_BODY">
+
<p><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;">CDT Mitchell and CDT Buehrer are sophomores at West Point. During the summer of their freshman year they traveled to Tacoma, WA to work with members of the Cadets2Vets team to design the product that will be presented at the iGEM Jamboree in November of 2017.</span></span></span></p>
+
</div>
+
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
<!-- LAYOUT SETTINGS -->
+
<div class="layout-settings" style="display:none;" data-type="blocks"></div>
+
+
</div>
+
</div>
+
<!-- ARTICLE END -->
+
 
 
 
 
 
 
 
 
<!-- BIO_CV START -->
+
<!-- TEXT_BLOCK START -->
<div  id="vbid-f502a60e-ghwf2ehl"  class="master item-box  gallery-box style-f502a60e-hj1ol8de   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-f502a60e-hj1ol8de" data-preview-styleid='style-f502a60e-hj1ol8de' data-preset-type-id="BIO_CV">
+
<div  id="vbid-ec2a096d-uxtvg9x1"  class="master item-box  gallery-box style-ec2a096d-0kemrtct   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-ec2a096d-0kemrtct" data-preview-styleid='style-ec2a096d-0kemrtct' data-preset-type-id="TEXT_BLOCK">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
<div class="gallery-wrapper item-wrapper bio_cv-wrapper ">
+
<div class="gallery-wrapper item-wrapper text_block-wrapper ">
 
 
<!-- CACHED VERSION (7) OF vbid-f502a60e-ghwf2ehl FROM  21-06-2017 20:50:33 --><div  class="sub container style-f502a60e-hj1ol8de content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-f502a60e-hj1ol8de" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-f502a60e-ghwf2ehl" data-preset-type-id="BIO_CV" data-preview-style="style-f502a60e-hj1ol8de" data-style="style-4e411-j0xhjgzynh" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  class="sub container style-ec2a096d-0kemrtct content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-ec2a096d-0kemrtct" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-ec2a096d-uxtvg9x1" data-preset-type-id="TEXT_BLOCK" data-preview-style="style-ec2a096d-0kemrtct" data-style="style-4e411-j0xhjgzynh" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
Line 1,466: Line 957:
 
 
 
 
<div  id="vbid-f502a60e-rpbmapey"  class="sub item-box  page-box style-f502a60e-hj1ol8de         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-f502a60e-hj1ol8de" data-preview-styleid='style-f502a60e-hj1ol8de' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-ec2a096d-jkvxtp6k"  class="sub item-box  page-box style-ec2a096d-0kemrtct         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-ec2a096d-0kemrtct" data-preview-styleid='style-ec2a096d-0kemrtct' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-f502a60e-rpbmapey" data-preview-style="style-f502a60e-hj1ol8de" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="550" data-orig-thumb-width="770" data-vbid="vbid-f502a60e-rpbmapey" data-bgimg="https://lh3.googleusercontent.com/xehDGDkXRHqVGN10uver2Ad2_vQYc95fmpZAsKA_aCfTQbXQLdrG3pqSdJjvgqU_LCHLaK9E2wRlTyq3T3I">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-ec2a096d-jkvxtp6k" data-preview-style="style-ec2a096d-0kemrtct" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="1200" data-orig-thumb-width="1600" data-vbid="vbid-ec2a096d-jkvxtp6k" data-bgimg="https://static.igem.org/mediawiki/2017/4/47/Lab_Pats_2.jpg">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,480: Line 971:
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-f502a60e-bakykiat-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-ec2a096d-nvl466cp-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-f502a60e-bakykiat" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/xehDGDkXRHqVGN10uver2Ad2_vQYc95fmpZAsKA_aCfTQbXQLdrG3pqSdJjvgqU_LCHLaK9E2wRlTyq3T3I=s300);"  data-orig-width="770" data-orig-height="550" >
+
<div  id="vbid-ec2a096d-nvl466cp" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/4/47/Lab_Pats_2.jpg);"  data-orig-width="1600" data-orig-height="1200" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 1,518: Line 1,009:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h2 id="vbid-f502a60e-chq2sz9a" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >Charles Wright Academy</h2>
+
<h2 id="vbid-ec2a096d-shwx1gav" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >Lab Pats First Interlab Meeting (10/05/2017)<br></h2>
 
 
 
</div>
 
</div>
Line 1,531: Line 1,022:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-f502a60e-u0djlmrd" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-ec2a096d-yysxnf0m" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
 
</div>
 
</div>
Line 1,545: Line 1,036:
 
<div class="preview-body-holder removable-parent order-handle">
 
<div class="preview-body-holder removable-parent order-handle">
 
 
<div id="vbid-f502a60e-mix3ng5y" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
+
<div id="vbid-ec2a096d-l4j5yobd" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
<div><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;">Charles Wright Academy is a private school in the Tacoma, Washington area that serves students K-12 grade. The school features small classes, a safe campus, and a preparation center for college and life skills.</span></span></span></div><div><div><br></div><div><p><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;">The Cadets2Vets iGEM team is honored to have four of Charles Wright Academy's best and brightest serve as Lab Members on their team!</span></span></span></p></div></div>
+
<p><span id="docs-internal-guid-1b7da29c-f937-736d-d27b-f199a1ff299f" style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">The Cadets2Vets team had a Skype call with Dallas McDonald from the Lab Pats (AFRL) team. Our teams had Skype’d previously during the summer and we wanted to talk a little more about the Interlab Measurement Study.</span></span></p><p><br></p><p><span style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">We are sharing the results from our Interlab Study and wanted to see if Lab Pats had measured data that was similar to ours. Cadets2Vets had graphed the fluorescence values from the 6 Devices and positive and negative controls, and found that the Devices all had variable performance, although there were a few Devices that had very low GFP fluorescence. We also found that some Devices performed at or below the LB+Chloramphenicol blank, which means that the previously known autofluorescence of LB was being picked up by the plate reader. The Devices that performed worse than LB+Chloramphenicol are promoter/RBS sites that we would want to avoid in the future when trying to express GFP, because the amount of GFP expressed was unable to rise higher than the background autofluorescence under the given experimental conditions. </span><br class="kix-line-break"><br class="kix-line-break"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Cadets2Vets will work with Dallas to establish a collaboration where Cadets2Vets will send Dallas the plasmids we have created so that he can help us characterize the GFP fluorescence. We will base the assay off the InterLab study and we will consider these questions:</span></span></p><ol><li><span style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Do our plasmids produce GFP as they are expected to?</span></span></li><li><span style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">How does our plasmid compare to the Interlab positive and negative controls?</span></span></li><li><span style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">What is the appropriate density of cells and duration of growth to get significant GFP fluorescence?</span></span></li><li><span style="letter-spacing: 1.2px; text-align: center;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Can other labs reproduce our data? </span></span><span style="letter-spacing: 1.2px; text-align: center;">​</span><span style="letter-spacing: 1.2px; text-align: center; background-color: transparent; font-size: 12pt; vertical-align: baseline; white-space: pre-wrap;"> </span></li></ol>
 
</div>
 
</div>
 
 
Line 1,589: Line 1,080:
 
</div>
 
</div>
 
</div>
 
</div>
<!-- BIO_CV END -->
+
<!-- TEXT_BLOCK END -->
+
+
+
+
<!-- ARTICLE START -->
+
<div  id="vbid-6220b2e3-elbnuu5k"  class="master item-box  page-box style-6220b2e3-f0sujcmp          " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-6220b2e3-f0sujcmp" data-preview-styleid='style-6220b2e3-f0sujcmp' data-preset-type-id="ARTICLE">
+
<div id="no-image" class="stripe-background load-high-res " ></div>
+
<div class="page-wrapper item-wrapper article-wrapper ">
+
+
<div class="item-content leaf blocks_layout page content" data-self="vbid-6220b2e3-elbnuu5k" data-preview-style="style-6220b2e3-f0sujcmp" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="275" data-orig-thumb-width="275" data-vbid="vbid-6220b2e3-elbnuu5k" data-bgimg="https://lh3.googleusercontent.com/3I82Y8nV49fiLTxr1K3c9tDag8BsFA1sObCIorLzh8OUyQmQucUTXWc2XrVMIs_DJ5Q2nA3Mvv8yfgj8HA">
+
<div class="helper-div middle" >
+
<!-- <div class="benet" style="min-height:inherit;"></div> -->
+
<div class="text-side ">
+
<div class="vertical-aligner">
+
<div class="item-details blocks-preview-content-wrapper  blocks shrinker-parent" style="position:relative;">
+
<div class="blocks-preview-content-holder shrinker-content">
+
<!--  BY SPECIFIC ORDER -->
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-title-holder removable-parent order-handle">
+
+
<h2 id="vbid-6220b2e3-5abl90jn" class="preview-element blocks-preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_TITLE" >Bellarmine Preparatory school</h2>
+
+
</div>
+
<br class="lower-line-break" />
+
 
+
 
+
 
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-divider-holder removable-parent order-handle">
+
<div id="vbid-6220b2e3-bmaunpwa" class="preview-element blocks-preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="BLOCKS_PREVIEW_DIVIDER">
+
</div>
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div class="blocks-preview-body-holder removable-parent order-handle">
+
+
<div id="vbid-6220b2e3-6slvhhwu" class="preview-element blocks-preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="BLOCKS_PREVIEW_BODY">
+
<p><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;">Bellarmine Preparatory School was founded under the leadership of the Jesuits. The school serves a a Catholic college preparatory school and is the only Catholic high school in the Tacoma, Washington area. The Cadets2Vets iGEM team is privileged to have Josh Grace as a Lab Member on their team. </span></span></span></p>
+
</div>
+
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
+
+
<br class="upper-line-break" />
+
<div id="vbid-6220b2e3-avcfy2xy-holder"  class="preview-image-holder blocks-inner-pic-holder removable-parent order-handle" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
 
+
 
+
<img  id="vbid-6220b2e3-avcfy2xy" class="blocks-inner-pic preview-element  magic-circle-holder  load-high-res shrinkable-img" data-menu-name="HEADER_IMAGE"  src="https://lh3.googleusercontent.com/3I82Y8nV49fiLTxr1K3c9tDag8BsFA1sObCIorLzh8OUyQmQucUTXWc2XrVMIs_DJ5Q2nA3Mvv8yfgj8HA=s1600" data-orig-width="275" data-orig-height="275" />
+
 
+
 
+
</div>
+
<br class="lower-line-break" />
+
+
+
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
</div>
+
<!-- LAYOUT SETTINGS -->
+
<div class="layout-settings" style="display:none;" data-type="blocks"></div>
+
+
</div>
+
</div>
+
<!-- ARTICLE END -->
+
 
 
 
 
Line 1,680: Line 1,086:
 
 
 
<!-- SLIDESHOWS START -->
 
<!-- SLIDESHOWS START -->
<div  id="vbid-6a014e3d-v1gahe5a"  class="master item-box  gallery-box style-6a014e3d-2ekd1ha4   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-6a014e3d-2ekd1ha4" data-preview-styleid='style-6a014e3d-2ekd1ha4' data-preset-type-id="SLIDESHOWS">
+
<div  id="vbid-f0579fae-il0hd7ed"  class="master item-box  gallery-box style-f0579fae-jenpwuqp   button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-f0579fae-jenpwuqp" data-preview-styleid='style-f0579fae-jenpwuqp' data-preset-type-id="SLIDESHOWS">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div class="gallery-wrapper item-wrapper slideshows-wrapper ">
 
<div class="gallery-wrapper item-wrapper slideshows-wrapper ">
 
 
<!-- CACHED VERSION (7) OF vbid-6a014e3d-v1gahe5a FROM  21-06-2017 20:50:34 --><div  class="sub container style-6a014e3d-2ekd1ha4 content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-6a014e3d-2ekd1ha4" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-6a014e3d-v1gahe5a" data-preset-type-id="SLIDESHOWS" data-preview-style="style-6a014e3d-2ekd1ha4" data-style="style-89a8e-bbtqrmxrkr" data-absolute-path="http://edit.www.imcreator.com/viewer" >
+
<div  class="sub container style-f0579fae-jenpwuqp content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-f0579fae-jenpwuqp" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-f0579fae-il0hd7ed" data-preset-type-id="SLIDESHOWS" data-preview-style="style-f0579fae-jenpwuqp" data-style="style-89a8e-bbtqrmxrkr" data-absolute-path="" >
 
<!-- ARRANGER SETTINGS -->
 
<!-- ARRANGER SETTINGS -->
 
<div class="arranger-settings" style="display:none;"
 
<div class="arranger-settings" style="display:none;"
Line 1,696: Line 1,102:
 
data-ARRANGER_ORDER_TYPE="regular"
 
data-ARRANGER_ORDER_TYPE="regular"
 
data-AUTO_PLAY="true"
 
data-AUTO_PLAY="true"
data-AUTO_PLAY_DURATION="5"
+
data-AUTO_PLAY_DURATION="4"
 
data-FLEX_ELEMENT_EFFECT="effect-fadein"
 
data-FLEX_ELEMENT_EFFECT="effect-fadein"
 
></div>
 
></div>
Line 1,709: Line 1,115:
 
 
 
 
<div  id="vbid-6a014e3d-zc4t6svd"  class="sub item-box  page-box style-6a014e3d-2ekd1ha4         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-6a014e3d-2ekd1ha4" data-preview-styleid='style-6a014e3d-2ekd1ha4' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-f0579fae-3mflnhgb"  class="sub item-box  page-box style-f0579fae-jenpwuqp         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-f0579fae-jenpwuqp" data-preview-styleid='style-f0579fae-jenpwuqp' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-6a014e3d-zc4t6svd" data-preview-style="style-6a014e3d-2ekd1ha4" data-style="style-89a8e-q4q4gr5nhr" data-orig-thumb-height="1000" data-orig-thumb-width="1000" data-vbid="vbid-6a014e3d-zc4t6svd" data-bgimg="https://lh3.googleusercontent.com/xAqKy6QJyiH_N2e0lOWAO7_d1wB8VFnhU44gEMPCJoinBzxUHW8GxIa8bdPDl_0s-PCUx_CzIRUFHO3j5Qg">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-f0579fae-3mflnhgb" data-preview-style="style-f0579fae-jenpwuqp" data-style="style-89a8e-q4q4gr5nhr" data-orig-thumb-height="1975" data-orig-thumb-width="3358" data-vbid="vbid-f0579fae-3mflnhgb" data-bgimg="https://static.igem.org/mediawiki/2017/6/69/UW_Seattle.png">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,719: Line 1,125:
 
<div id="no-image" class="background-image-div preview-element image-source magic-circle-holder unfold-left load-high-res" data-menu-name="BACKGROUND_IMAGE" style="">
 
<div id="no-image" class="background-image-div preview-element image-source magic-circle-holder unfold-left load-high-res" data-menu-name="BACKGROUND_IMAGE" style="">
 
</div>
 
</div>
<div class="helper-div middle-right" >
+
<div class="helper-div middle-left" >
 
<!-- <div class="benet" style="min-height:inherit;"></div> -->
 
<!-- <div class="benet" style="min-height:inherit;"></div> -->
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-6a014e3d-lzsc8yp3-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-f0579fae-gcn28yg9-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-6a014e3d-lzsc8yp3" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/xAqKy6QJyiH_N2e0lOWAO7_d1wB8VFnhU44gEMPCJoinBzxUHW8GxIa8bdPDl_0s-PCUx_CzIRUFHO3j5Qg=s300);"  data-orig-width="1000" data-orig-height="1000" >
+
<div  id="vbid-f0579fae-gcn28yg9" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/6/69/UW_Seattle.png);"  data-orig-width="3358" data-orig-height="1975" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 1,761: Line 1,167:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h2 id="vbid-6a014e3d-nlkslafv" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >University of washington-tacoma<br></h2>
+
<h2 id="vbid-f0579fae-38mizlan" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >FOURTH INTER-TEAM MEETING (10/05/2017)<br></h2>
 
 
 
</div>
 
</div>
Line 1,774: Line 1,180:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-6a014e3d-ybd2dfo8" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-f0579fae-irkn1rmq" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
 
</div>
 
</div>
Line 1,788: Line 1,194:
 
<div class="preview-body-holder removable-parent order-handle">
 
<div class="preview-body-holder removable-parent order-handle">
 
 
<div id="vbid-6a014e3d-nfkup2cf" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
+
<div id="vbid-f0579fae-kbnxfkse" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
<p><span style="line-height:2em;"><span style="font-size:18px;"><span style="font-family:montserrat;">A special thanks to UW Tacoma faculty and staff for allowing the Cadets2Vets iGEM the opportunity to utilize their lab, equipment, and facilities. Thank-you!</span></span></span></p>
+
<p><span id="docs-internal-guid-1b7da29c-f936-c0f2-830a-192b378e7a21" style="letter-spacing: 0.6px; text-align: left;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Members of the Cadets2Vets team had a teleconference with Yoshi Goto from the UW-Seattle iGEM team. The Washington team has a really interesting and complex project that involves the creation of a bioreactor and manipulation and development of a violacein reporter system to monitor metabolite production from chemical reactions made by bacteria or yeast.</span></span></p><p><br></p><p><span style="letter-spacing: 0.6px; text-align: left;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">The violacein pigment is produced through a series of 5 different genes and altering the synthetic pathway can produce different colors. This project is also developing an analytical system that monitors the turbidity and color of the culture in the bioreactor. There are many possible applications of this technology for monitoring metabolic reactions while maintaining affordability. </span></span></p><p><br class="kix-line-break"><span style="letter-spacing: 0.6px; text-align: left;"><span style="font-size: 12pt; background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">We discussed the possibility of sharing some reagents to help each other characterize some Parts. Cadets2Vets is looking for collaborators to measure the GFP fluorescence from the plasmids we made and Washington is looking for ways to characterize some of its plasmids in a similar way. </span></span><span style="letter-spacing: 0.6px; text-align: left;">​​</span></p>
 
</div>
 
</div>
 
 
Line 1,820: Line 1,226:
 
 
 
 
 +
 +
 +
</div>
 +
</div>
 +
 +
 +
 +
</div>
 +
</div>
 +
 +
</div>
 +
</div>
 +
<!-- SLIDESHOWS END -->
 +
 +
 +
 +
 +
<!-- TEXT_BLOCK START -->
 +
<div  id="vbid-77158560-zahwam2a"  class="master item-box  gallery-box style-77158560-ayb9jkdy    button-effects btn_hover4      " data-holder-type="gallery"" data-holder-type="gallery"  data-child-type="STYLE"  data-styleid="style-77158560-ayb9jkdy" data-preview-styleid='style-77158560-ayb9jkdy' data-preset-type-id="TEXT_BLOCK">
 +
<div id="no-image" class="stripe-background load-high-res " ></div>
 +
<div class="gallery-wrapper item-wrapper text_block-wrapper ">
 +
 +
<div  class="sub container style-77158560-ayb9jkdy content flex  " data-itemtype="folder" data-creator="" data-itemname="LOADING Copy"  data-itemslug="loading-copy" data-itemstyleid="style-77158560-ayb9jkdy" data-margintop="" data-arranger="flex" data-layout="multi" data-vbid="vbid-77158560-zahwam2a" data-preset-type-id="TEXT_BLOCK" data-preview-style="style-77158560-ayb9jkdy" data-style="style-4e411-j0xhjgzynh" data-absolute-path=""  >
 +
<!-- ARRANGER SETTINGS -->
 +
<div class="arranger-settings" style="display:none;"
 +
data-ARRANGER_TYPE="flex"
 +
data-ARRANGER_COLS="0"
 +
data-ARRANGER_ITEM_MAX_WIDTH="400"
 +
data-ARRANGER_ITEM_MIN_WIDTH="230"
 +
data-ARRANGER_ITEM_RATIO="1"
 +
data-ARRANGER_ITEM_SPACING="20"
 +
data-ARRANGER_ITEMS_PER_PAGE="all"
 +
data-ARRANGER_ORDER_TYPE="regular"
 +
data-AUTO_PLAY="true"
 +
data-AUTO_PLAY_DURATION="4"
 +
data-FLEX_ELEMENT_EFFECT="effect-fadein"
 +
></div>
 +
<div class="layout-settings" style="display:none;" data-type="multi"></div>
 +
<div id="children">
 +
 +
 +
<div id="items-holder-wrapper">
 +
<div id="items-holder">
 +
 
 
 
 
 
 
<div  id="vbid-6a014e3d-tpxhcpzp"  class="sub item-box  page-box style-6a014e3d-2ekd1ha4         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-6a014e3d-2ekd1ha4" data-preview-styleid='style-6a014e3d-2ekd1ha4' data-preset-type-id="UNRESOLVED">
+
<div  id="vbid-77158560-f9ord5p9"  class="sub item-box  page-box style-77158560-ayb9jkdy         " data-holder-type="page"" data-holder-type="page"  data-child-type="STYLE"  data-styleid="style-77158560-ayb9jkdy" data-preview-styleid='style-77158560-ayb9jkdy' data-preset-type-id="UNRESOLVED">
 
 
 
<div class="page-wrapper item-wrapper ">
 
<div class="page-wrapper item-wrapper ">
 
 
<div class="item-content leaf multi_layout page content -container" data-self="vbid-6a014e3d-tpxhcpzp" data-preview-style="style-6a014e3d-2ekd1ha4" data-style="style-89a8e-q4q4gr5nhr" data-orig-thumb-height="287" data-orig-thumb-width="430" data-vbid="vbid-6a014e3d-tpxhcpzp" data-bgimg="https://lh3.googleusercontent.com/yQ5X8s-FvJZPZGastPvidHbHwMikSNT8T1YnPUvGKf4gXcOGKf10L44z7DEYsrLiZE-QdGyGeodHw6LtOPY">
+
<div class="item-content leaf multi_layout page content -container" data-self="vbid-77158560-f9ord5p9" data-preview-style="style-77158560-ayb9jkdy" data-style="style-4e411-yq39oaomol" data-orig-thumb-height="1536" data-orig-thumb-width="2048" data-vbid="vbid-77158560-f9ord5p9" data-bgimg="https://static.igem.org/mediawiki/2017/0/07/Lab_Pats.jpg">
 
<div  class="multi-container preview image-cover" >
 
<div  class="multi-container preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,837: Line 1,287:
 
<div class="pic-side">
 
<div class="pic-side">
 
<div class="vertical-aligner">
 
<div class="vertical-aligner">
<div id="vbid-6a014e3d-jjwrpytp-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
+
<div id="vbid-77158560-vcegk2cm-holder"  class="preview-image-holder inner-pic-holder" data-menu-name="PREVIEW_INLINE_IMAGE_HOLDER">
  
<div  id="vbid-6a014e3d-jjwrpytp" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://lh3.googleusercontent.com/yQ5X8s-FvJZPZGastPvidHbHwMikSNT8T1YnPUvGKf4gXcOGKf10L44z7DEYsrLiZE-QdGyGeodHw6LtOPY=s300);"  data-orig-width="430" data-orig-height="287" >
+
<div  id="vbid-77158560-vcegk2cm" class="inner-pic preview-element  magic-circle-holder  load-high-res " data-menu-name="PREVIEW_INLINE_IMAGE" style="background-image:url(https://static.igem.org/mediawiki/2017/0/07/Lab_Pats.jpg);"  data-orig-width="2048" data-orig-height="1536" >
 
<!-- VIDEO TEMPLATE -->
 
<!-- VIDEO TEMPLATE -->
 
 
Line 1,875: Line 1,325:
 
<div class="preview-title-holder removable-parent order-handle">
 
<div class="preview-title-holder removable-parent order-handle">
 
 
<h2 id="vbid-6a014e3d-czmgxmv3" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >University of washington-tacoma<br></h2>
+
<h2 id="vbid-77158560-dpnn9jre" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >Interlab collaboration with lab pats air force research lab<br></h2>
 
 
 
</div>
 
</div>
Line 1,888: Line 1,338:
 
<br class="upper-line-break" />
 
<br class="upper-line-break" />
 
<div class="preview-divider-holder removable-parent order-handle">
 
<div class="preview-divider-holder removable-parent order-handle">
<div id="vbid-6a014e3d-prfawbio" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
+
<div id="vbid-77158560-q3b5i1ev" class="preview-element preview-divider magic-circle-holder quick-text-style-menu" data-menu-name="PREVIEW_DIVIDER">
 
</div>
 
</div>
 
</div>
 
</div>
Line 1,902: Line 1,352:
 
<div class="preview-body-holder removable-parent order-handle">
 
<div class="preview-body-holder removable-parent order-handle">
 
 
<div id="vbid-6a014e3d-umq5rave" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
+
<div id="vbid-77158560-sxl62tbr" class="preview-element preview-body magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_BODY">
<p><span style="color:#FFFFFF;"><span style="font-family:montserrat;"><span style="font-size:18px;"><span style="line-height:2em;"><span style="text-align: start;">UW Tacoma is an urban-serving university providing access to students in a way that transforms families and communities. We impact and inform economic development through community-engaged students and faculty. We conduct research that is of direct use to our community and region. And, most importantly, we seek to be connected to our community’s needs and aspirations.</span></span></span></span></span></p>
+
<p><span style="line-height:1em;"><span style="font-size:16px;"><span id="docs-internal-guid-1b7da29c-f937-736d-d27b-f199a1ff299f" style="letter-spacing: 1.2px; text-align: center;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Cadets2Vets had a Skype call with Dallas McDonald from the Lab Pats team. </span></span></span></span></p><p><br></p><p><span style="font-size:16px;"><span style="line-height:1em;">​</span><span id="docs-internal-guid-07d9d787-11a4-1efb-f4d4-11ec539fa495"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"><span style="line-height:1em;">The res</span>ults obtained from the Lab Pats Interlab study were different from Cadets2Vets. At the 6 hour time point, th</span><span style="vertical-align: baseline; white-space: pre-wrap;">e plasmids with highest to lowest GFP fluorescence were:</span></span></span></p><ul><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">LB + Chloramphenicol</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Negative Control</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 6</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Positive Control</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 1</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 4</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 5</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 3</span></span></span></li><li><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">Device 2</span></span></span></li></ul><p><span style="font-size:16px;"><span><span style="vertical-align: baseline; white-space: pre-wrap;">After sharing these results, Cadets2Vets were curious why the results were so different. The Lab Pats team speculated that the difference may have been due to pipetting errors or differences in the instruments. Te Lab Pats used a SpectraMax M5, which uses monochromators to excite the GFP instead of filters, which is what Cadets2Vets had in their FilterMax F5 instrument. Cadets2Vets went back to their transformation plates and tried to assess whether the bacterial colonies sill expressed GFP and if the intensity was similar to the pattern gain from the plate reader.</span></span></span><span style="font-size: 16px; background-color: transparent; font-family: Arial; letter-spacing: 0.1em; text-align: inherit; vertical-align: baseline; white-space: pre-wrap;">​</span></p><p><br></p><p><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Cadets2Vets’ one-month old transformation plates were still fluorescent, and we used a hand-held blacklight to qualitatively observe the colonies. The order of highest to lowest fluorescence using this method was:</span></span></p><ul><li><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Positive Control</span></span></li><li><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 2</span></span></li><li><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 4 = Device 1</span></span></li><li><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 6 = Device 3</span></span></li><li><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Negative Control.</span></span></li></ul><p><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 5 was omitted due to the few colonies present were on the edge of the plate and difficult to see clearly.</span></span><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"> </span></span></p><p><br></p><p><span style="font-size:16px;"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">The sensitivity of using a blacklight was much lower than using a plate reader, and so it was hard to see the differences between some of the plates. However, it appears that the pattern of fluorescence we observed in the plate reader is consistent with the bacteria in the plates.</span></span> <span style="font-size:16px;">​<span id="docs-internal-guid-07d9d787-11a4-1efb-f4d4-11ec539fa495"><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Washington also shared the results of their Interlab study. Summarizing their data in the same way we looked at ours and Lab Pats, the ranking of high to low GFP for Washington was:</span></span></span><span style="font-size:16px;"><span><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;"> </span></span></span></p><ul><li><span style="font-size:16px;"><span><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 2</span></span></span></li><li><span style="font-size:16px;"><span><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Positive control = Device 4</span></span></span></li><li><span style="font-size:16px;"><span><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Device 5 = Device 1</span></span></span></li><li><span style="font-size:16px;"><span><span style="background-color: transparent; vertical-align: baseline; white-space: pre-wrap;">Negative control = Device 3 = Device 6 = LB + Chloramphenicol</span></span></span></li></ul>
 
</div>
 
</div>
 
 
Line 1,946: Line 1,396:
 
</div>
 
</div>
 
</div>
 
</div>
<!-- SLIDESHOWS END -->
+
<!-- TEXT_BLOCK END -->
 
 
 
 
Line 1,952: Line 1,402:
 
 
 
<!-- FOOTERS START -->
 
<!-- FOOTERS START -->
<div  id="vbid-c148c-ybb2oqrd"  class="master item-box  footer-box style-c148c-zjadrzwq injected        " data-holder-type="footer"" data-holder-type="footer"  data-child-type="ORIGIN"  data-styleid="style-c148c-zjadrzwq" data-preview-styleid='style-c148c-zjadrzwq' data-preset-type-id="FOOTERS">
+
<div  id="vbid-59a5b-mskg6fxi"  class="master item-box  footer-box style-59a5b-lbaqmrpi injected        " data-holder-type="footer"" data-holder-type="footer"  data-child-type="ORIGIN"  data-styleid="style-59a5b-lbaqmrpi" data-preview-styleid='style-59a5b-lbaqmrpi' data-preset-type-id="FOOTERS">
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div id="no-image" class="stripe-background load-high-res " ></div>
 
<div class="footer-wrapper item-wrapper footers-wrapper ">
 
<div class="footer-wrapper item-wrapper footers-wrapper ">
 
 
<div class="item-content leaf middle_layout footer content shrinker-parent" data-self="vbid-c148c-ybb2oqrd" data-preview-style="style-c148c-zjadrzwq" data-style="style-f785e-jp5ywgaa0t" data-orig-thumb-height="" data-orig-thumb-width="" data-vbid="vbid-c148c-ybb2oqrd" data-bgimg="">
+
<div class="item-content leaf middle_layout footer content shrinker-parent" data-self="vbid-59a5b-mskg6fxi" data-preview-style="style-59a5b-lbaqmrpi" data-style="style-f785e-jp5ywgaa0t" data-orig-thumb-height="" data-orig-thumb-width="" data-vbid="vbid-59a5b-mskg6fxi" data-bgimg="">
 
<div  class="preview image-cover" >
 
<div  class="preview image-cover" >
 
<div class="Picture item-preview">
 
<div class="Picture item-preview">
Line 1,985: Line 1,435:
 
<div class="preview-title-holder removable-parent">
 
<div class="preview-title-holder removable-parent">
 
 
<h2 id="vbid-c148c-qa354hdh" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >Follow us on Social Media!</h2>
+
<h2 id="vbid-59a5b-xinhfnbg" class="preview-element preview-title magic-circle-holder inner-page text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_TITLE" >Follow us on Social Media!</h2>
 
 
 
</div>
 
</div>
Line 1,994: Line 1,444:
 
<div class="preview-subtitle-holder removable-parent">
 
<div class="preview-subtitle-holder removable-parent">
 
 
<h3 id="vbid-c148c-mxkafou0" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">2304 Jefferson Ave, Tacoma, WA 98402</h3>
+
<h3 id="vbid-59a5b-novarlkx" class="preview-element preview-subtitle magic-circle-holder text-element quick-text-style-menu  allow-mobile-hide" data-menu-name="PREVIEW_SUBTITLE">2304 Jefferson Ave, Tacoma, WA 98402</h3>
  
 
</div>
 
</div>
Line 2,025: Line 1,475:
 
 
 
<div class="preview-social-wrapper removable-parent"  >
 
<div class="preview-social-wrapper removable-parent"  >
<div id="vbid-c148c-utfyiy6p" class="preview-element preview-social-holder magic-circle-holder" data-menu-name="PREVIEW_SOCIAL" data-theme="1" >
+
<div id="vbid-59a5b-xmkwjkjw" class="preview-element preview-social-holder magic-circle-holder" data-menu-name="PREVIEW_SOCIAL" data-theme="7" >
 
 
<div id="FACEBOOK" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="FACEBOOK" data-img-url="//edit.www.imcreator.com/images/socialmedia/1facebook.png">
+
<div id="FACEBOOK" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="FACEBOOK" data-img-url="https://static.igem.org/mediawiki/2017/a/a4/FacebookImage.png">
<a class='social-link-url' href="http://www.facebook.com/" target='_blank'><img class='preview-link-img ' src="//edit.www.imcreator.com/images/socialmedia/1facebook.png" ></a>
+
<a class='social-link-url' href="https://www.facebook.com/RAINIncubator" target='_blank'><img class='preview-link-img ' src="https://static.igem.org/mediawiki/2017/a/a4/FacebookImage.png" ></a>
 
</div>
 
</div>
 
 
<div id="TWITTER" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="TWITTER" data-img-url="//edit.www.imcreator.com/images/socialmedia/1twitter.png">
+
<div id="TWITTER" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="TWITTER" data-img-url="https://static.igem.org/mediawiki/2017/5/59/TwitterImage.png">
<a class='social-link-url' href="http://www.twitter.com/" target='_blank'><img class='preview-link-img ' src="//edit.www.imcreator.com/images/socialmedia/1twitter.png" ></a>
+
<a class='social-link-url' href="https://twitter.com/RAINincubator" target='_blank'><img class='preview-link-img ' src="https://static.igem.org/mediawiki/2017/5/59/TwitterImage.png" ></a>
 
</div>
 
</div>
 
 
<div id="INSTAGRAM" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="INSTAGRAM" data-img-url="//edit.www.imcreator.com/images/socialmedia/1instagram.png">
+
<div id="INSTAGRAM" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="INSTAGRAM" data-img-url="https://static.igem.org/mediawiki/2017/8/86/InstagramImage.png">
<a class='social-link-url' href="http://www.instagram.com" target='_blank'><img class='preview-link-img ' src="//edit.www.imcreator.com/images/socialmedia/1instagram.png" ></a>
+
<a class='social-link-url' href="https://www.linkedin.com/in/rain-network" target='_blank'><img class='preview-link-img ' src="https://static.igem.org/mediawiki/2017/8/86/InstagramImage.png" ></a>
 
</div>
 
</div>
 
 
<div id="YOUTUBE" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="YOUTUBE" data-img-url="//edit.www.imcreator.com/images/socialmedia/1youtube.png">
+
<div id="YOUTUBE" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="YOUTUBE" data-img-url="https://static.igem.org/mediawiki/2017/3/34/YoutubeImage.png">
<a class='social-link-url' href="http://www.youtube.com" target='_blank'><img class='preview-link-img ' src="//edit.www.imcreator.com/images/socialmedia/1youtube.png" ></a>
+
<a class='social-link-url' href="https://www.youtube.com/channel/UCuVc4cKxuUzpjZfywBgoT9w" target='_blank'><img class='preview-link-img ' src="https://static.igem.org/mediawiki/2017/3/34/YoutubeImage.png" ></a>
 
</div>
 
</div>
 
 
<div id="GOOGLE_PLUS" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="GOOGLE_PLUS" data-img-url="//edit.www.imcreator.com/images/socialmedia/1googleplus.png">
+
<div id="GOOGLE_PLUS" class='link-entry' data-menu-name="PREVIEW_SOCIAL" style='display:inline-block;' data-title="GOOGLE_PLUS" data-img-url="https://static.igem.org/mediawiki/2017/f/fa/GooglePlusImage.png">
<a class='social-link-url' href="http://www.plus.google.com/" target='_blank'><img class='preview-link-img ' src="//edit.www.imcreator.com/images/socialmedia/1googleplus.png" ></a>
+
<a class='social-link-url' href="https://plus.google.com/u/0/+RainincubatorOrg" target='_blank'><img class='preview-link-img ' src="https://static.igem.org/mediawiki/2017/f/fa/GooglePlusImage.png" ></a>
 
</div>
 
</div>
 
 
Line 2,090: Line 1,540:
 
</div>
 
</div>
 
</div>
 
</div>
    <img src="https://lh3.googleusercontent.com/EWqW7DEI4kOTRMLjK2-ObFHp-EYBt5apFYZ1LVFAhLtTLjigCRfx5hCCTKbIjIm68VQ00p9twloHJ9w8=s50" class="download-gallery-btn clickable" style="display: none;">
+
    <img src="https://static.igem.org/mediawiki/2017/d/db/Arrow1.png" class="download-gallery-btn clickable" style="display: none;">
<img src="https://lh3.googleusercontent.com/TgRyMQvJ3_h9RmOnu7AlhIE7NLOOBsRoBounARrs8fQv8HCRPaFtpBneSqJOSZpI6l7He_bAZKN179JBig=s50" class="close-lightbox-btn clickable" style="opacity: 1;">
+
<img src="https://static.igem.org/mediawiki/2017/9/9e/XImage1.png" class="close-lightbox-btn clickable" style="opacity: 1;">
<img src="https://lh3.googleusercontent.com/43-pXHjwrpmVO8Oean-6BD0uzARvcqUQrpdi7Yw2bxaXwEoP21UdN5kW6Ks9pdOxf7ropMUrh0djgYPwYPU=s50" class="lightbox-arrow lightbox-left clickable top-layer" >
+
<img src="https://2017.igem.org/File:Thing5.png" class="lightbox-arrow lightbox-left clickable top-layer" >
<img src="https://lh3.googleusercontent.com/9rwgVnDglPdPFugSu98fhDmxzjXC9KovZ_7BuHkXPIv6jvg9S96flGnhL_e4y8mIpPpZQstfqEV-WitY=s50" class="lightbox-arrow lightbox-right clickable top-layer" >
+
<img src="https://2017.igem.org/File:Thing4.png" class="lightbox-arrow lightbox-right clickable top-layer" >
 
</div>
 
</div>
  
 
</div>
 
</div>
+
<script type="text/javascript" src="https://2017.igem.org/Team:Cadets2Vets/js/lightbox?action=raw&ctype=text/javascript"></script>
<script src="//edit.www.imcreator.com/js/lightbox.js?v=1.4.0p1"  type="text/javascript"></script>
+
<script type="text/javascript" src="https://2017.igem.org/Team:Cadets2Vets/js/spimeengine?action=raw&ctype=text/javascript"></script>
<script src="//edit.www.imcreator.com/js/spimeengine.js?v=1.4.0p1"  type="text/javascript"></script>
+
+
 
 
 
<!--  SHOPROCKET  ECOMMERCE  -->
 
<!--  SHOPROCKET  ECOMMERCE  -->
Line 2,112: Line 1,560:
  
 
 
<div id="user-pref" style="display:none;" data-lang="en"></div>
 
<div style="display:none;" id="lightbox-menus-holder">
 
 
<div  class="login-dialog-wrapper white_content delay-anim" style="text-align:center;">
 
 
<div class="login dialog-holder">
 
<div  class="login-title"><span class="im-text form-type  t-t">Login</span></div>
 
<form id="login-form">
 
<img id="user-gravatar" src="https://www.gravatar.com/avatar/?d=mm" /><br/>
 
<input name="name" type="text" placeholder="nickname/email" data-placeholder="nickname/email" /><br/>
 
<input name="password" type="password" placeholder="password" data-placeholder="password" autocomplete="off" /><br/>
 
<input id="login-btn" class="clickable" type="button" class="input-btn" value="LOGIN">
 
<div id="goto-register" class="clickable t-t">Create a new account</div>
 
<div id="forgot-password" class="clickable t-t">Forgot Password?</div>
 
</form>
 
</div>
 
 
<div class="register dialog-holder" style="display:none;">
 
<div  class="login-title"><span class="im-text form-type  t-t">Login</span></div>
 
<form id="register-form" class="hide-phone">
 
<img id="user-gravatar" src="https://www.gravatar.com/avatar/?d=mm" /><br/>
 
<input name="email" type="text" placeholder="email" data-placeholder="email"  /><br/>
 
 
<input name="name" type="text" placeholder="nickname" data-placeholder="nickname" /><br/>
 
<input name="password" type="password"  placeholder="password" data-placeholder="password" autocomplete="off" /><br/>
 
 
<input id="terms" type="checkbox" checked="checked" disabled /><span class="form-label"><a href="http://www.imcreator.com/terms-of-service" target="_blank" class="terms-link  t-t">Terms and Conditions</a></span><br/>
 
<input id="register-btn" class="clickable" type="button" class="input-btn" value="JOIN">
 
<div id="goto-login" class="clickable t-t">Already a member?</div>
 
</form>
 
</div>
 
 
<div class="forgot-pass dialog-holder" style="display:none;">
 
<div  class="login-title"><span class="im-text form-type t-t">Login</span></div>
 
<form id="forgot-pass-form">
 
<img id="user-gravatar" src="https://www.gravatar.com/avatar/?d=mm" /><br/>
 
<input name="email" type="text" placeholder="email" data-placeholder="email" /><br/>
 
<input id="forgot-pass-btn" class="clickable" type="button" class="input-btn" value="SEND">
 
<div id="goto-login" class="clickable t-t">Back</div>
 
</form>
 
</div>
 
</div>
 
</div>
 
<div id="fade" class="black_overlay fadein-noscript" style="display:none;"></div>
 
 
 
</p>
 
 
 
<!--
 
NewPP limit report
 
CPU time usage: 0.012 seconds
 
Real time usage: 0.012 seconds
 
Preprocessor visited node count: 12/1000000
 
Preprocessor generated node count: 62/1000000
 
Post‐expand include size: 41/2097152 bytes
 
Template argument size: 0/2097152 bytes
 
Highest expansion depth: 2/40
 
Expensive parser function count: 0/100
 
-->
 
 
<!-- Saved in parser cache with key 2017_igem_org:pcache:idhash:9199-0!*!*!*!*!*!* and timestamp 20170707025715 and revision id 45798
 
-->
 
</div>             <div class="visualClear"></div>
 
            </div>
 
    </div>
 
 
        </div>
 
 
        <!-- Side Menubar -->
 
        <div id="sideMenu">
 
            <a href="https://2017.igem.org">
 
                <div id="home_logo" >
 
                <img src="https://static.igem.org/mediawiki/2017/b/bf/HQ_menu_logo.jpg">
 
                </div>
 
            </a>
 
 
            <div style="clear:both; height:5px;"></div>
 
 
            <div id="menuDisplay"></div>  <!- Menu will be loaded here ->
 
        </div>
 
 
        <!-- Pop_Why Div is definded here -->
 
        <div class="pop_why_cover"></div>
 
 
        <div class="pop_why_box" >
 
            <div class="pop_close">× </div>
 
            <div class="pop_why_content"><h3> Loading ... </h3></div>
 
        </div>
 
 
    </div>
 
 
</html>
 
</html>

Latest revision as of 20:01, 28 October 2017

Collaborations - Home