www.signupgenius.com
Open in
urlscan Pro
2606:4700:10::6816:939
Public Scan
Submitted URL: https://www.signupgenius.com/go/StJohnsHealthCenter
Effective URL: https://www.signupgenius.com/go/stjohnshealthcenter
Submission: On July 09 via api from US — Scanned from DE
Effective URL: https://www.signupgenius.com/go/stjohnshealthcenter
Submission: On July 09 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /index.cfm?go=s.PreProcessSignup
<form action="/index.cfm?go=s.PreProcessSignup" method="post" id="signupForm" class="ng-pristine ng-valid">
<link rel="stylesheet" href="/css/angular/ngmodal-v1.css">
<style>
/* Still current */
.tb-shadow {
filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.45));
}
.tb-shadow-safari {
-webkit-filter: drop-shadow(0 12px 1.5em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.tb-shadow-half {
filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.45));
}
t .tb-shadow-half-safari {
-webkit-filter: drop-shadow(0 6px 0.75em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.rendering {
image-rendering: auto;
}
</style>
<script>
(function() {
var desktopSignup = function($scope, $timeout) {
$scope.image1 = {};
$scope.image2 = {};
$scope.image3 = {};
var ua = navigator.userAgent;
/* use Chrome's shadow settings */
$scope.tbshadow = "tb-shadow";
$scope.tbshadowhalf = "tb-shadow-half";
if ((ua.indexOf("Safari") > -1) && !(ua.indexOf("Chrome") > -1)) {
$scope.tbshadow = "tb-shadow-safari";
$scope.tbshadowhalf = "tb-shadow-safari";
}
$scope.image1 = {
"imageposition": 1,
"imageTypeId": 1,
"THEMEIMAGE": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"pairValue": 1607114012,
"isapproved": 1,
"serverFilename": "4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"desktopMemberImage": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"IMAGEHEIGHT": 170,
"id": 3046680,
"imageUrl": "https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"PAIREDIMAGEWIDTH": 1300,
"isCustomImage": 1,
"memberimageid": 3046680,
"imageThumbUrl": "https://images.signupgenius.com/memberImages/tn_4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"pairImage": {
"imageTypeId": 4,
"pairValue": 1607114012,
"memberimageid": 3046679,
"imageThumbUrl": "https://images.signupgenius.com/memberImages/tn_C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"isapproved": 1,
"serverFilename": "C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"mainImagePath": "https://images.signupgenius.com/memberImages/",
"disabled": 0,
"mobileMemberImage": "https://images.signupgenius.com/memberImages/tn_C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"imageWidth": 1300,
"desktopMemberImage": "https://images.signupgenius.com/memberImages/C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"imageHeight": 681,
"imageUrl": "https://images.signupgenius.com/memberImages/C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"clientFilename": "Providence_Logo.jpg"
},
"PAIREDIMAGEFILENAME": "C0D84D9B2D4DDF5F38C5CF27E6B0AEE8_106706795.jpg",
"mainImagePath": "",
"stockThemeImage": "",
"disabled": 0,
"PAIREDIMAGEID": 3046679,
"mobileMemberImage": "https://images.signupgenius.com/memberImages/tn_4B50B925D7035045230220D3CEC386F1_106706795.jpg",
"IMAGECROPCOORDS": [],
"IMAGEWIDTH": 325,
"imagecustom": 1,
"IMAGERATIO": 1.9,
"imageoverrideid": 14404047,
"clientFilename": "Providence_Logo.jpg",
"PAIREDIMAGEHEIGHT": 681
};
//Displays the MaskView. It's MaskViewController is at the base of this document.
$scope.displayMaskView = function(originalImageData, MaskViewTitle, imageKey, aspectRatio, coords) {
$scope.MaskOpen = true;
var confirmationWindow = $modal.open({
templateUrl: '/view/tools/prothemeMaskwindow.html?v1.6',
controller: MaskViewController,
resolve: {
originalImageData: function() {
return originalImageData;
},
MaskViewTitle: function() {
return MaskViewTitle;
},
aspectRatio: function() {
return aspectRatio;
},
coords: function() {
return coords;
}
}
});
confirmationWindow.result.then(function(result) {
$scope.MaskOpen = false; // Can spawn a new Mask window
if (result.success) {
$scope.createCoordinates(imageKey, result.coordinates, originalImageData);
}
});
};
$scope.getImageSize = function(key, url) {
var image = new Image();
image.src = url;
image.onload = function() {
/* fix for images that do not have images set */
$scope[key].IMAGEWIDTH = image.width;
$scope[key].IMAGEHEIGHT = image.height;
$scope.createCoordinates(key, $scope[key].IMAGECROPCOORDS);
}
}
// This method figures out the placement, and scale of the image inside its container / mask.
$scope.createCoordinates = function(imageKey, coordinates) {
//Vertical align value for Templates 1 and 2 -tb 2/15/17
try {
$scope.col2height = $('#col2id').height();
} catch (e) {
$scope.col2height = 350;
}
$scope[imageKey].coords = coordinates;
$scope[imageKey].containerwidth = $('#' + imageKey).width();
$scope[imageKey].containerheight = $('#' + imageKey).height();
$scope[imageKey].x1 = $scope[imageKey].coords[0];
$scope[imageKey].y1 = $scope[imageKey].coords[1];
$scope[imageKey].x2 = $scope[imageKey].coords[2];
$scope[imageKey].y2 = $scope[imageKey].coords[3];
$scope[imageKey].coordw = $scope[imageKey].coords[4];
$scope[imageKey].coordh = $scope[imageKey].coords[5];
//set coordinates
$scope[imageKey].width = $scope[imageKey].IMAGEWIDTH;
$scope[imageKey].height = $scope[imageKey].IMAGEHEIGHT;
$scope[imageKey].left = ($scope[imageKey].containerwidth / $scope[imageKey].coordw) * $scope[imageKey].x1 * -1;
$scope[imageKey].top = ($scope[imageKey].containerheight / $scope[imageKey].coordh) * $scope[imageKey].y1 * -1;
$scope[imageKey].newwidth = ($scope[imageKey].containerwidth / $scope[imageKey].coordw * $scope[imageKey].width);
$scope[imageKey].newheight = ($scope[imageKey].containerheight / $scope[imageKey].coordh * $scope[imageKey].height);
}
$scope.setupCoords = function() {
if ($scope.image1 && $scope.image1.IMAGECROPCOORDS) {
if ($scope.image1.IMAGEHEIGHT < 2 || $scope.image1.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image1', $scope.image1.THEMEIMAGE)
} else {
$scope.createCoordinates('image1', $scope.image1.IMAGECROPCOORDS);
}
}
if ($scope.image2 && $scope.image2.IMAGECROPCOORDS) {
if ($scope.image2.IMAGEHEIGHT < 2 || $scope.image2.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image2', $scope.image2.THEMEIMAGE);
} else {
$scope.createCoordinates('image2', $scope.image2.IMAGECROPCOORDS);
}
}
if ($scope.image3 && $scope.image3.IMAGECROPCOORDS) {
if ($scope.image3.IMAGEHEIGHT < 2 || $scope.image3.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image3', $scope.image3.THEMEIMAGE);
} else {
$scope.createCoordinates('image3', $scope.image3.IMAGECROPCOORDS);
}
}
}
$scope.setupCoords();
//** Auto Rescales the crops when the window resizes **//
//
//This technique can be used for responsive headers
$(window).resize(function() {
$timeout(function() {
$scope.setupCoords();
}, 1);
});
// make fundlyurl available as an angular variable for template headers
$scope.fundlyurl = '';
};
//allows angular to work with script minifiers
desktopSignup.$inject = ['$scope', '$timeout'];
//register controller with AngularJS
angular.module('SUGApp').controller('desktopSignup', desktopSignup);
}());
</script>
<style>
.modal-v1 {
color: black !important;
display: none;
}
</style>
<div id="addLockModal" class="modal-v1 fade" role="dialog">
<div class="modal-v1-dialog">
<div class="modal-v1-content">
<div class="modal-v1-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2>Change Lock</h2>
</div>
<div class="modal-v1-body">
<p>The time to sign up for this item / event has ended. Contact the sign up creator for assistance.</p>
</div>
<div class="modal-v1-footer">
<button type="button" class="btn btn-success" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="modifyLockModal" class="modal-v1 fade" role="dialog">
<div class="modal-v1-dialog">
<div class="modal-v1-content">
<div class="modal-v1-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h2>Change Lock</h2>
</div>
<div class="modal-v1-body">
<p>The time to make changes to this sign up have ended. Contact the sign up creator for assistance.</p>
</div>
<div class="modal-v1-footer">
<button type="button" class="btn btn-success" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div ng-controller="desktopSignup" class="ng-scope">
<style>
.col-body-100 {
width: calc(100% - 350px);
/* This works for 325 images */
}
.col-image,
.mod-1-image-1 {
width: 325px;
max-width: 325px;
}
</style>
<style>
/* Image column - inline for this sign up only */
.col-image {
margin-top: 0;
margin-right: 25px;
float: left;
}
.col-body-100 {
float: left;
}
</style>
<style>
.col-parent {
margin-top: 25px;
}
</style>
<div class="container">
<div class="col-parent">
<div class="col-image">
<!-- We are not using image masks on templates 1-4 -->
<div id="image1">
<img class="mod-1-image-1 zoom-in" src="https://images.signupgenius.com/memberImages/4B50B925D7035045230220D3CEC386F1_106706795.jpg" alt="" border="0">
</div>
</div>
</div>
<div class="col-body-100 SUGmain" id="col2id">
<div class="SUGbold">EH Scheduling</div>
<h1 class="SUGHeaderText">Providence St. John's Health Center</h1>
<p>Welcome to Providence!</p>
<p>Please schedule your health Screen appointment now as time slots can fill up quickly. If your start work date is further into the future, schedule closer to that date. If possible, no further out than 2 weeks. Bring your
completed Health Screen Packet and any vaccination records available to you. Depending on your records, a blood draw may be needed at this appointment. If you have any questions, please e-mail EHscheduling@providence.org.
Note: any comments you leave in the Sign-Up are public view, not Private.</p>
<p style="text-align: center;">Providence St. Johns Medical Center</p>
<p style="text-align: center;">2121 Santa Monica Blvd</p>
<p style="text-align: center;">Santa Monica, CA </p>
<p>Print and bring this email with you. Valet park in front of hospital. Be sure to bring your valet ticket so we can validate. Check in with the Information Desk. They will direct you to CH. To reach CH call 310-829-8873. Please bring
proof of vaccinations along with glasses or contacts (if needed) for your vision check.</p>
<strong>Related files:</strong>
<div style="padding: 10px 0 0px 10px;">
<div width="415px">
<a href="/index.cfm?go=s.downloadSignUpResource&eToken=5DBBB5BE243A8637FD1DA9FA5AD1DAD2AFFCCB3FBB88A6CFB3B469D9BD5A8D3E7EDDA59EA762C47F49A0CA28E0DEFB06BB3C5A12EDE3FE0750EFC9DA8E" class="SUGlink enforce-wrap">
<svg width="25" height="20" xmlns="http://www.w3.org/2000/svg">
<path stroke="#FFFFFF" fill="#FFFFFF" id="svg_1" d="m19,10c0,-4.97057 -4.02944,-9 -9,-9s-9,4.02943 -9,9s4.02943,9 9,9s9,-4.02944 9,-9zm-16.3125,0c0,-4.03857 3.27393,-7.3125 7.3125,-7.3125s7.3125,3.27393 7.3125,7.3125s-3.27393,7.3125 -7.3125,7.3125s-7.3125,-3.27393 -7.3125,-7.3125zm8.10798,5.29551l4.5,-4.50004c0.43935,-0.43931 0.43935,-1.15162 0,-1.59097s-1.15165,-0.43935 -1.591,0l-2.57948,2.57949l0,-6.284c0,-0.62131 -0.50369,-1.125 -1.125,-1.125s-1.125,0.50369 -1.125,1.125l0,6.284l-2.57949,-2.57952c-0.43935,-0.43935 -1.15169,-0.43935 -1.59104,0c-0.21966,0.21969 -0.32949,0.50762 -0.32949,0.79551c0,0.2879 0.10983,0.57583 0.32949,0.79548l4.5,4.50004c0.43935,0.43931 1.15169,0.43931 1.591,0l0,0l0.00001,0l0,0.00001z"></path>
</svg>
CG Screening Packet COMPLETE 02- prior to visit forms- fillable 10.pdf
</a> (361KB pdf)<br>
</div>
<div style="clear:both;"></div>
</div>
<p></p>
<table>
<tbody>
<tr>
<td><strong>Created by:</strong> </td>
<td>EH Scheduling</td>
<td>
<div style="padding-top:
2px;"> <a href="https://www.signupgenius.com/index.cfm?go=c.help&eid=08C3CFD8FCCBF86C08&cs=09CBBADC8FBB8B6D7B7C64755BCE9BBDFDCE&id=33776460&urlID=StJohnsHealthCenter" class="SUGlink"><span class="glyphicon glyphicon-envelope" style="font-size:15px;"><span></span></span></a>
</div>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-12">
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<br>
</div>
<script>
// header/footer updates for the menu dropdown not to overlay ads
(function() {
$(document).ready(function() {
$('.nav-dropdown-menu').on('show.bs.dropdown', function() {
$('#SUGContainer').addClass('open-horizontal');
});
$('.nav-dropdown-menu').on('hide.bs.dropdown', function() {
$('#SUGContainer').removeClass('open-horizontal');
});
});
})();
</script>
<div class="container" style="min-width:970px !important;">
<noscript>
<div style="border: 2px solid red; background-color: white; padding:3px;" class="redmessage">
<!-- <div id="qtyLimitMessage" class="alert alert-danger" role="alert"> --> The sign up creator has set a maximum quantity limit of 1 for this sign up.
</div>
</noscript>
<script>
<!--
// This allows you to check the box using the entire button
function checkTheBox(siid) {
var thischeck = document.getElementById('checkbox' + siid);
if (thischeck.checked == true) {
thischeck.checked = false;
} else {
thischeck.checked = true;
}
};
// This resets the hidden field called 'siids' everytime you click a button
function checkLIST(siid) {
var cboxes = document.getElementsByName('siid');
var idlist = '';
var restrict = restictQuantity(siid);
if (!restrict) {
for (i = 0; i < cboxes.length; i++) {
if (cboxes[i].checked == true) {
var tempval = idlist;
if (tempval == '') {
var idlist = cboxes[i].value;
} else {
var idlist = tempval + ',' + cboxes[i].value;
}
}
}
document.getElementById('siids').value = idlist;
saveSelectedToStorage(idlist);
}
};
function restictQuantity(siid) {
var result = false;
// unchecking is always allowed
if (!$('#checkbox' + siid).is(':checked')) {
return false
};
if ($('input:checkbox:checked').length > 1) {
$('#checkbox' + siid).attr('checked', false);
$('#quantityLimitDialog').modal('show');
result = false;
}
return result;
};
/** temporary storage for selected idlist **/
function saveSelectedToStorage(idlist) {
if (typeof(Storage) !== "undefined") {
window.sessionStorage.siidList = idlist;
}
};
/** this is specific to selected slot IDs **/
window.onload = function() {
window.sessionStorage.removeItem("calView");
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
var arrSiid = window.sessionStorage.siidList.split(',');
for (var i in arrSiid) {
var thischeck = document.getElementById('checkbox' + arrSiid[i]);
if (!thischeck.checked) thischeck.checked = true;
}
}
};
/** this is specific to selected slot IDs **/
window.onbeforeunload = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** This is alternative event for mobile Safari and mobile Chrome **/
window.onpagehide = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** this is specific to selected slot IDs and calendar view **/
function setCalView() {
window.sessionStorage.calView = true;
};
// End
-->
</script>
<style>
.link_cursor {
cursor: pointer;
}
.popover-content {
color: #000 !important;
}
.disabled {
opacity: .5;
}
</style>
<script>
$(document).ready(function() {
// $('[data-toggle="tooltip"]').tooltip();
try {
$('[data-toggle="popover"]').popover();
} catch (e) {}
});
</script>
<input name="URLID" id="URLID" type="hidden" value="StJohnsHealthCenter">
<input name="useMultiple" type="hidden" value="true">
<input name="siids" id="siids" type="hidden" value="">
<table width="100%" cellspacing="0" align="center" class="SUGtableouter">
<tbody>
<tr>
<td bgcolor="#F5F4ED" height="35" class="SUGtableheader">Date <span class="SUGheaddate">(mm/dd/yyyy)</span></td>
<td bgcolor="#F5F4ED" height="35" class="SUGtableheader"> Location </td>
<td bgcolor="#F5F4ED" height="35" class="SUGtableheader">Time <span class="SUGheaddate">(PDT)</span></td>
<td bgcolor="#F5F4ED" height="35" class="SUGtableheader">
<div style="float:right; width:130px; text-align:right;">
<a href="/index.cfm?go=s.signup&urlid=stjohnshealthcenter&view=calendar" class="SUGcalbutton rounded" onclick="setCalView()"><span class="glyphicon glyphicon-calendar"></span> Calendar View</a>
</div> Available Slot <span class="SUGheaddate"></span>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="1" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/18/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="1" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258840);checkLIST(1090258840);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258840" id="checkbox1090258840" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258840);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/19/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="4" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256716);checkLIST(1090256716);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256716" id="checkbox1090256716" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256716);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257527);checkLIST(1090257527);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257527" id="checkbox1090257527" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257527);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258032);checkLIST(1090258032);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258032" id="checkbox1090258032" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258032);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259553);checkLIST(1090259553);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259553" id="checkbox1090259553" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259553);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/20/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="4" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256705);checkLIST(1090256705);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256705" id="checkbox1090256705" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256705);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257531);checkLIST(1090257531);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257531" id="checkbox1090257531" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257531);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258033);checkLIST(1090258033);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258033" id="checkbox1090258033" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258033);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259548);checkLIST(1090259548);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259548" id="checkbox1090259548" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259548);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="1" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/25/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="1" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258852);checkLIST(1090258852);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258852" id="checkbox1090258852" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258852);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/26/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="4" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256713);checkLIST(1090256713);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256713" id="checkbox1090256713" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256713);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257535);checkLIST(1090257535);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257535" id="checkbox1090257535" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257535);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258039);checkLIST(1090258039);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258039" id="checkbox1090258039" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258039);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258855);checkLIST(1090258855);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258855" id="checkbox1090258855" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258855);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">07/27/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="4" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256714);checkLIST(1090256714);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256714" id="checkbox1090256714" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256714);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257541);checkLIST(1090257541);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257541" id="checkbox1090257541" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257541);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258047);checkLIST(1090258047);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258047" id="checkbox1090258047" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258047);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259552);checkLIST(1090259552);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259552" id="checkbox1090259552" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259552);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/01/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258847);checkLIST(1090258847);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258847" id="checkbox1090258847" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258847);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259538);checkLIST(1090259538);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259538" id="checkbox1090259538" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259538);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260283);checkLIST(1090260283);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260283" id="checkbox1090260283" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260283);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/02/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256706);checkLIST(1090256706);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256706" id="checkbox1090256706" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256706);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257528);checkLIST(1090257528);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257528" id="checkbox1090257528" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257528);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258035);checkLIST(1090258035);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258035" id="checkbox1090258035" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258035);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258832);checkLIST(1090258832);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258832" id="checkbox1090258832" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258832);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259544);checkLIST(1090259544);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259544" id="checkbox1090259544" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259544);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260273);checkLIST(1090260273);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260273" id="checkbox1090260273" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260273);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/03/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256711);checkLIST(1090256711);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256711" id="checkbox1090256711" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256711);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257538);checkLIST(1090257538);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257538" id="checkbox1090257538" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257538);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258043);checkLIST(1090258043);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258043" id="checkbox1090258043" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258043);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258857);checkLIST(1090258857);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258857" id="checkbox1090258857" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258857);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259550);checkLIST(1090259550);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259550" id="checkbox1090259550" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259550);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260267);checkLIST(1090260267);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260267" id="checkbox1090260267" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260267);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/08/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258848);checkLIST(1090258848);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258848" id="checkbox1090258848" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258848);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259539);checkLIST(1090259539);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259539" id="checkbox1090259539" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259539);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260266);checkLIST(1090260266);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260266" id="checkbox1090260266" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260266);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/09/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256707);checkLIST(1090256707);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256707" id="checkbox1090256707" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256707);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257537);checkLIST(1090257537);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257537" id="checkbox1090257537" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257537);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258034);checkLIST(1090258034);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258034" id="checkbox1090258034" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258034);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258833);checkLIST(1090258833);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258833" id="checkbox1090258833" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258833);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259546);checkLIST(1090259546);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259546" id="checkbox1090259546" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259546);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260278);checkLIST(1090260278);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260278" id="checkbox1090260278" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260278);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/10/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256708);checkLIST(1090256708);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256708" id="checkbox1090256708" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256708);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257539);checkLIST(1090257539);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257539" id="checkbox1090257539" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257539);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258041);checkLIST(1090258041);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258041" id="checkbox1090258041" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258041);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258853);checkLIST(1090258853);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258853" id="checkbox1090258853" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258853);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259555);checkLIST(1090259555);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259555" id="checkbox1090259555" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259555);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260279);checkLIST(1090260279);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260279" id="checkbox1090260279" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260279);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/15/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258837);checkLIST(1090258837);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258837" id="checkbox1090258837" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258837);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259558);checkLIST(1090259558);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259558" id="checkbox1090259558" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259558);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260282);checkLIST(1090260282);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260282" id="checkbox1090260282" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260282);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/16/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256700);checkLIST(1090256700);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256700" id="checkbox1090256700" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256700);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257536);checkLIST(1090257536);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257536" id="checkbox1090257536" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257536);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258031);checkLIST(1090258031);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258031" id="checkbox1090258031" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258031);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258854);checkLIST(1090258854);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258854" id="checkbox1090258854" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258854);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259545);checkLIST(1090259545);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259545" id="checkbox1090259545" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259545);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260277);checkLIST(1090260277);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260277" id="checkbox1090260277" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260277);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/17/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256712);checkLIST(1090256712);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256712" id="checkbox1090256712" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256712);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257532);checkLIST(1090257532);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257532" id="checkbox1090257532" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257532);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258048);checkLIST(1090258048);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258048" id="checkbox1090258048" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258048);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258850);checkLIST(1090258850);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258850" id="checkbox1090258850" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258850);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259540);checkLIST(1090259540);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259540" id="checkbox1090259540" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259540);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260286);checkLIST(1090260286);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260286" id="checkbox1090260286" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260286);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/22/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258839);checkLIST(1090258839);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258839" id="checkbox1090258839" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258839);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259551);checkLIST(1090259551);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259551" id="checkbox1090259551" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259551);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260270);checkLIST(1090260270);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260270" id="checkbox1090260270" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260270);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/23/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256703);checkLIST(1090256703);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256703" id="checkbox1090256703" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256703);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257543);checkLIST(1090257543);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257543" id="checkbox1090257543" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257543);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258042);checkLIST(1090258042);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258042" id="checkbox1090258042" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258042);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258835);checkLIST(1090258835);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258835" id="checkbox1090258835" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258835);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259561);checkLIST(1090259561);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259561" id="checkbox1090259561" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259561);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260287);checkLIST(1090260287);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260287" id="checkbox1090260287" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260287);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/24/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256709);checkLIST(1090256709);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256709" id="checkbox1090256709" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256709);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257529);checkLIST(1090257529);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257529" id="checkbox1090257529" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257529);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258040);checkLIST(1090258040);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258040" id="checkbox1090258040" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258040);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258843);checkLIST(1090258843);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258843" id="checkbox1090258843" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258843);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259556);checkLIST(1090259556);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259556" id="checkbox1090259556" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259556);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260281);checkLIST(1090260281);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260281" id="checkbox1090260281" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260281);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/29/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258849);checkLIST(1090258849);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258849" id="checkbox1090258849" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258849);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259557);checkLIST(1090259557);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259557" id="checkbox1090259557" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259557);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260292);checkLIST(1090260292);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260292" id="checkbox1090260292" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260292);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/30/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256704);checkLIST(1090256704);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256704" id="checkbox1090256704" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256704);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257544);checkLIST(1090257544);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257544" id="checkbox1090257544" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257544);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258038);checkLIST(1090258038);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258038" id="checkbox1090258038" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258038);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258838);checkLIST(1090258838);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258838" id="checkbox1090258838" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258838);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259542);checkLIST(1090259542);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259542" id="checkbox1090259542" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259542);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260272);checkLIST(1090260272);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260272" id="checkbox1090260272" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260272);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">08/31/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090256701);checkLIST(1090256701);">Sign Up </span>
<input name="siid" type="checkbox" value="1090256701" id="checkbox1090256701" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090256701);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090257534);checkLIST(1090257534);">Sign Up </span>
<input name="siid" type="checkbox" value="1090257534" id="checkbox1090257534" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090257534);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258037);checkLIST(1090258037);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258037" id="checkbox1090258037" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258037);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090258841);checkLIST(1090258841);">Sign Up </span>
<input name="siid" type="checkbox" value="1090258841" id="checkbox1090258841" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090258841);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090259543);checkLIST(1090259543);">Sign Up </span>
<input name="siid" type="checkbox" value="1090259543" id="checkbox1090259543" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090259543);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1090260288);checkLIST(1090260288);">Sign Up </span>
<input name="siid" type="checkbox" value="1090260288" id="checkbox1090260288" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1090260288);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="4" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/06/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="4" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897002);checkLIST(1109897002);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897002" id="checkbox1109897002" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897002);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897375);checkLIST(1109897375);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897375" id="checkbox1109897375" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897375);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897704);checkLIST(1109897704);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897704" id="checkbox1109897704" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897704);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897972);checkLIST(1109897972);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897972" id="checkbox1109897972" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897972);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/07/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897006);checkLIST(1109897006);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897006" id="checkbox1109897006" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897006);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897381);checkLIST(1109897381);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897381" id="checkbox1109897381" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897381);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897700);checkLIST(1109897700);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897700" id="checkbox1109897700" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897700);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897974);checkLIST(1109897974);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897974" id="checkbox1109897974" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897974);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898224);checkLIST(1109898224);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898224" id="checkbox1109898224" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898224);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898474);checkLIST(1109898474);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898474" id="checkbox1109898474" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898474);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/12/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897976);checkLIST(1109897976);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897976" id="checkbox1109897976" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897976);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898225);checkLIST(1109898225);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898225" id="checkbox1109898225" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898225);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898475);checkLIST(1109898475);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898475" id="checkbox1109898475" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898475);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/13/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109896994);checkLIST(1109896994);">Sign Up </span>
<input name="siid" type="checkbox" value="1109896994" id="checkbox1109896994" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109896994);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897380);checkLIST(1109897380);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897380" id="checkbox1109897380" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897380);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897702);checkLIST(1109897702);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897702" id="checkbox1109897702" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897702);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897973);checkLIST(1109897973);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897973" id="checkbox1109897973" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897973);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898226);checkLIST(1109898226);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898226" id="checkbox1109898226" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898226);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898471);checkLIST(1109898471);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898471" id="checkbox1109898471" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898471);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/14/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109896998);checkLIST(1109896998);">Sign Up </span>
<input name="siid" type="checkbox" value="1109896998" id="checkbox1109896998" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109896998);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897376);checkLIST(1109897376);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897376" id="checkbox1109897376" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897376);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897701);checkLIST(1109897701);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897701" id="checkbox1109897701" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897701);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897977);checkLIST(1109897977);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897977" id="checkbox1109897977" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897977);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898221);checkLIST(1109898221);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898221" id="checkbox1109898221" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898221);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898472);checkLIST(1109898472);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898472" id="checkbox1109898472" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898472);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/19/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897968);checkLIST(1109897968);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897968" id="checkbox1109897968" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897968);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898222);checkLIST(1109898222);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898222" id="checkbox1109898222" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898222);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898479);checkLIST(1109898479);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898479" id="checkbox1109898479" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898479);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/20/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109896996);checkLIST(1109896996);">Sign Up </span>
<input name="siid" type="checkbox" value="1109896996" id="checkbox1109896996" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109896996);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897379);checkLIST(1109897379);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897379" id="checkbox1109897379" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897379);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897705);checkLIST(1109897705);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897705" id="checkbox1109897705" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897705);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897970);checkLIST(1109897970);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897970" id="checkbox1109897970" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897970);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898227);checkLIST(1109898227);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898227" id="checkbox1109898227" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898227);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898477);checkLIST(1109898477);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898477" id="checkbox1109898477" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898477);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/21/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897004);checkLIST(1109897004);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897004" id="checkbox1109897004" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897004);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897377);checkLIST(1109897377);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897377" id="checkbox1109897377" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897377);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897703);checkLIST(1109897703);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897703" id="checkbox1109897703" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897703);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897975);checkLIST(1109897975);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897975" id="checkbox1109897975" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897975);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898218);checkLIST(1109898218);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898218" id="checkbox1109898218" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898218);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898473);checkLIST(1109898473);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898473" id="checkbox1109898473" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898473);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="3" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/26/2022 (Mon.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="3" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897978);checkLIST(1109897978);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897978" id="checkbox1109897978" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897978);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898223);checkLIST(1109898223);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898223" id="checkbox1109898223" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898223);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898478);checkLIST(1109898478);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898478" id="checkbox1109898478" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898478);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/27/2022 (Tue.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109896992);checkLIST(1109896992);">Sign Up </span>
<input name="siid" type="checkbox" value="1109896992" id="checkbox1109896992" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109896992);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897378);checkLIST(1109897378);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897378" id="checkbox1109897378" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897378);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897707);checkLIST(1109897707);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897707" id="checkbox1109897707" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897707);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897969);checkLIST(1109897969);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897969" id="checkbox1109897969" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897969);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898220);checkLIST(1109898220);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898220" id="checkbox1109898220" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898220);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898480);checkLIST(1109898480);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898480" id="checkbox1109898480" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898480);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" rowspan="6" style="padding-top:10px;padding-bottom:10px;">
<span class="SUGbigbold">09/28/2022 (Wed.)</span>
</td>
<td class="SUGtable enforce-wrap" valign="top" rowspan="6" style="padding-top:10px;">
<span class="SUGbigbold">
<a href="https://www.google.com/maps/search/?api=1&query=2121+Santa+Monica+Blvd+Santa+Monica+CA+90404" data-toggle="popover" data-trigger="hover" data-placement="top" data-content="2121 Santa Monica Blvd, Santa Monica, CA 90404" class="SUGlink" target="_blank" data-original-title="" title="">
2121 Santa Monica Blvd<span class="spacer-invisible"></span><span class="glyphicon glyphicon-map-marker"></span>
</a>
</span>
</td>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897000);checkLIST(1109897000);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897000" id="checkbox1109897000" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897000);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897374);checkLIST(1109897374);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897374" id="checkbox1109897374" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897374);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897706);checkLIST(1109897706);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897706" id="checkbox1109897706" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897706);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 11:00am </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109897971);checkLIST(1109897971);">Sign Up </span>
<input name="siid" type="checkbox" value="1109897971" id="checkbox1109897971" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109897971);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 1:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898219);checkLIST(1109898219);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898219" id="checkbox1109898219" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898219);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 2:00pm </span>
</td>
<td class="SUGtable" valign="top" width="45%">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Health Screen </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1109898476);checkLIST(1109898476);">Sign Up </span>
<input name="siid" type="checkbox" value="1109898476" id="checkbox1109898476" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1109898476);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</form>
Text Content
WE VALUE YOUR PRIVACY We and our partners store and/or access information on a device, such as cookies and process personal data, such as unique identifiers and standard information sent by a device for personalised ads and content, ad and content measurement, and audience insights, as well as to develop and improve products. With your permission we and our partners may use precise geolocation data and identification through device scanning. You may click to consent to our and our partners’ processing as described above. Alternatively you may access more detailed information and change your preferences before consenting or to refuse consenting. Please note that some processing of your personal data may not require your consent, but you have a right to object to such processing. Your preferences will apply to this website only. You can change your preferences at any time by returning to this site or visit our privacy policy. MORE OPTIONSAGREE We value your privacy. We use cookies and other technologies to keep the site reliable and secure, tailor your experience, measure site performance and present relevant offers and advertisements, as described in our Privacy Policy. Got it! Toggle navigation * Features * Pricing * More * Resources & Tips * Blog * Collect Money * Enterprise * Help * Log In * Create a Sign Up × CHANGE LOCK The time to sign up for this item / event has ended. Contact the sign up creator for assistance. Close × CHANGE LOCK The time to make changes to this sign up have ended. Contact the sign up creator for assistance. Close EH Scheduling PROVIDENCE ST. JOHN'S HEALTH CENTER Welcome to Providence! Please schedule your health Screen appointment now as time slots can fill up quickly. If your start work date is further into the future, schedule closer to that date. If possible, no further out than 2 weeks. Bring your completed Health Screen Packet and any vaccination records available to you. Depending on your records, a blood draw may be needed at this appointment. If you have any questions, please e-mail EHscheduling@providence.org. Note: any comments you leave in the Sign-Up are public view, not Private. Providence St. Johns Medical Center 2121 Santa Monica Blvd Santa Monica, CA Print and bring this email with you. Valet park in front of hospital. Be sure to bring your valet ticket so we can validate. Check in with the Information Desk. They will direct you to CH. To reach CH call 310-829-8873. Please bring proof of vaccinations along with glasses or contacts (if needed) for your vision check. Related files: CG Screening Packet COMPLETE 02- prior to visit forms- fillable 10.pdf (361KB pdf) Created by: EH Scheduling The sign up creator has set a maximum quantity limit of 1 for this sign up. Date (mm/dd/yyyy) Location Time (PDT) Calendar View Available Slot 07/18/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 07/19/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 07/20/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 07/25/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 07/26/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 07/27/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 08/01/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/02/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/03/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/08/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/09/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/10/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/15/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/16/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/17/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/22/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/23/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/24/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/29/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/30/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 08/31/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/06/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 09/07/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/12/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/13/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/14/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/19/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/20/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/21/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/26/2022 (Mon.) 2121 Santa Monica Blvd 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/27/2022 (Tue.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up 09/28/2022 (Wed.) 2121 Santa Monica Blvd 8:00am Health Screen Sign Up 9:00am Health Screen Sign Up 10:00am Health Screen Sign Up 11:00am Health Screen Sign Up 1:00pm Health Screen Sign Up 2:00pm Health Screen Sign Up ©2022 SignUpGenius. All Rights Reserved. Privacy Policy | Terms of Service | Do Not Sell My Personal Information SIGN UP QUANTITY LIMIT You have reached the quantity limit set up by the sign up creator. You are not allowed to sign up for more than 1 item on this sign up . OK