/* What it does: Remove spaces around the email design added by some email clients. */
/* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
html,
body {
margin: 0 auto !important;
padding: 0 !important;
height: 100% !important;
width: 100% !important;
background: #ffffff;
}
/* What it does: Stops email clients resizing small text. */
* {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
/* What it does: Centers email on Android 4.4 */
div[style*="margin: 16px 0"] {
margin: 0 !important;
}
/* What it does: Stops Outlook from adding extra spacing to tables. */
table,
td {
mso-table-lspace: 0pt !important;
mso-table-rspace: 0pt !important;
}
/* What it does: Fixes webkit padding issue. */
table {
border-spacing: 0 !important;
border-collapse: collapse !important;
table-layout: fixed !important;
margin: 0 auto !important;
}
/* What it does: Uses a better rendering method when resizing images in IE. */
img {
-ms-interpolation-mode: bicubic;
}
/* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
a {
text-decoration: none;
}
/* What it does: A work-around for email clients meddling in triggered links. */
*[x-apple-data-detectors],
/* iOS */
.unstyle-auto-detected-links *,
.aBn {
border-bottom: 0 !important;
cursor: default !important;
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
/* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
.a6S {
display: none !important;
opacity: 0.01 !important;
}
/* What it does: Prevents Gmail from changing the text color in conversation threads. */
.im {
color: inherit !important;
}
/* If the above doesn't work, add a .g-img class to any image in question. */
img.g-img + div {
display: none !important;
}
/* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89 */
/* Create one of these media queries for each additional viewport size you'd like to fix */
/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
u ~ div .email-container {
min-width: 320px !important;
}
}
/* iPhone 6, 6S, 7, 8, and X */
@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
u ~ div .email-container {
min-width: 375px !important;
}
}
/* iPhone 6+, 7+, and 8+ */
@media only screen and (min-device-width: 414px) {
u ~ div .email-container {
min-width: 414px !important;
}
}
.primary {
background: #00386b;
}
.bg_white {
background: #ffffff;
}
.bg_light {
background: #fafafa;
}
.bg_black {
background: #000000;
}
.bg_dark {
background: rgba(0, 0, 0, 0.8);
}
.email-section {
padding: 2.5em;
}
/*BUTTON*/
.btn {
padding: 5px 20px;
display: inline-block;
}
.btn.btn-primary {
border-radius: 5px;
background: #00307c;
color: #ffffff;
}
.btn.btn-secondary {
border-radius: 5px;
background: #d41731;
color: #ffffff;
}
.btn.btn-white {
border-radius: 5px;
background: #ffffff;
color: #000000;
}
.btn.btn-white-outline {
border-radius: 5px;
background: transparent;
border: 1px solid #fff;
color: #fff;
}
.btn.btn-black {
border-radius: 0px;
background: #000;
color: #fff;
}
.btn.btn-black-outline {
border-radius: 0px;
background: transparent;
border: 2px solid #000;
color: #000;
font-weight: 700;
}
p {
margin-top: 5px !important;
}
a.btn.btn-primary {
margin: 10px !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Montserrat", sans-serif;
color: #00386b;
margin-top: 0;
font-weight: 400;
}
body {
font-family: "Montserrat", sans-serif;
font-weight: 400;
font-size: 15px;
line-height: 1.8;
color: #5e5873;
}
a {
color: #00386b;
}
table.theme-style {
overflow-x: auto;
border-bottom-width: 0.5px;
/* margin-top: 20px !important; */
border-collapse: collapse;
width: 100%;
}
table.theme-style td {
font-size: 15px;
font-weight: 500;
}
table.theme-style td,
table.theme-style th {
border: 1px solid #fff;
text-align: left;
padding: 6px;
}
th.answer {
width: 30%;
}
table.theme-style thead td {
font-weight: 500;
font-size: 16px;
}
table.theme-style tr:nth-child(even) {
background-color: #e5f7ff;
}
table.theme-style thead {
background-color: #18a0de;
color: #fff;
font-weight: 500;
}
/* New Table */
table.theme-style-table td,
table.theme-style-table th {
border: 1px solid grey;
text-align: left;
}
/*LOGO*/
.logo h1 {
margin: 0;
}
.logo h1 a {
color: #000000;
font-size: 30px;
font-weight: 700;
/*text-transform: uppercase;*/
font-family: "Montserrat", sans-serif;
}
.navigation {
padding: 0;
padding: 1em 0;
/*background: rgba(0,0,0,1);*/
border-top: 1px solid rgba(0, 0, 0, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
margin-bottom: 0;
margin-top: 0;
}
.navigation li {
list-style: none;
display: inline-block;
margin-left: 5px;
margin-right: 5px;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
}
.navigation li a {
color: rgba(0, 0, 0, 1);
}
/*HERO*/
.hero {
position: relative;
z-index: 0;
}
.hero .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
width: 100%;
background: #002052;
z-index: -1;
opacity: 0.4;
}
.hero .text {
color: rgba(255, 255, 255, 0.9);
margin: 0 auto 0;
}
.hero .text h2 {
color: #fff;
font-size: 22px;
margin-bottom: 37px;
font-weight: 600;
line-height: 1.4;
}
.hero .text h1 {
color: #fff;
font-size: 37px;
margin-bottom: 12px;
font-weight: 700;
line-height: 1.4;
}
.hero .text h2 span {
font-weight: 600;
color: #00386b;
}
/*INTRO*/
.intro {
position: relative;
z-index: 0;
}
.intro .text {
color: #5e5873;
}
.intro .text h2 {
font-size: 26px;
margin-bottom: 0;
font-weight: bold;
line-height: 1.2;
}
.intro .text h2 span {
font-weight: 600;
color: #00386b;
}
/*SERVICES*/
.services {
}
.text-services {
padding: 10px 10px 0;
text-align: center;
}
.text-services h3 {
font-size: 18px;
font-weight: 400;
}
.services-list {
margin: 0 0 20px 0;
width: 100%;
}
.services-list img {
float: left;
}
.services-list h3 {
margin-top: 0;
margin-bottom: 0;
}
.services-list p {
margin: 0;
}
/*PROPETIES*/
/* .properties {} */
.text-properties {
padding: 10px 0;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.08);
border-top: none;
}
.text-properties h3 {
font-size: 18px;
font-weight: 400;
margin-bottom: 0;
}
.text-properties .meta {
margin-top: 0;
}
.text-properties .price {
color: #000;
font-size: 18px;
}
/*COUNTER*/
.counter {
width: 100%;
position: relative;
z-index: 0;
}
.counter .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
width: 100%;
background: #002052;
z-index: -1;
opacity: 0.3;
}
.counter-text {
text-align: center;
}
.counter-text .num {
display: block;
color: #ffffff;
font-size: 34px;
font-weight: 700;
}
.counter-text .name {
display: block;
color: rgba(255, 255, 255, 0.9);
font-size: 13px;
}
/*HEADING SECTION*/
.heading-section {
}
.heading-section h2 {
color: #000000;
font-size: 28px;
margin-top: 0;
line-height: 1.4;
font-weight: 400;
}
.heading-section .subheading {
margin-bottom: 20px !important;
display: inline-block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: rgba(0, 0, 0, 0.4);
position: relative;
}
.heading-section .subheading::after {
position: absolute;
left: 0;
right: 0;
bottom: -10px;
content: "";
width: 100%;
height: 2px;
background: #00386b;
margin: 0 auto;
}
.heading-section-white {
color: rgba(255, 255, 255, 0.8);
}
.heading-section-white h2 {
line-height: 1;
padding-bottom: 0;
}
.heading-section-white h2 {
color: #ffffff;
}
.heading-section-white .subheading {
margin-bottom: 0;
display: inline-block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: rgba(255, 255, 255, 0.4);
}
ul.social {
padding: 0;
}
ul.social li {
display: inline-block;
margin-right: 10px;
}
/*FOOTER*/
.footer {
border-top: 1px solid rgba(0, 0, 0, 0.05);
color: rgba(0, 0, 0, 0.5);
background-color: #00386b;
}
.footer .heading {
font-size: 16px;
font-weight: 500;
text-align: center;
}
.footer ul {
margin: 0;
padding: 0;
}
.footer ul li {
list-style: none;
margin-bottom: 10px;
}
.footer a,
.footer ul li h3 {
color: #fff !important;
}
@media screen and (max-width: 500px) {
}
‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
You are Registered!
header_replace -->
Hi Without EMail ,
We’re so glad that you can join us for the 2026 Community Oncology Conference, being held on April 28-29, 2026, at the Walt Disney World Dolphin Hotel in Orlando, Florida.
If you attend the COPA Board Meeting scheduled for Monday, April 27, 2026, COA will cover your hotel as outlined below.
Hotel – The 2026 Community Oncology Conference is being held at the Walt Disney World Dolphin Hotel in Orlando, Florida. As a COPA Board Member, COA will reserve and cover your hotel room, tax, and resort fee for the nights of Sunday, April 26, Monday, April 27, and Tuesday, April 28. To have COA cover your hotel, you must attend the COPA Board Meeting scheduled for Monday, April 27, 2026. Once your reservation is made, you will receive a confirmation email from the hotel.
Extra costs, such as additional nights and/or upgrades to suites, tower suites, etc., will be at your expense. If you have chosen to extend your stay, the additional night(s) will be at your expense, and the hotel will collect payment.
Submit Hotel Request Here
Travel - You are responsible for scheduling your own airfare and ground transportation to and from the Conference. COA does not schedule or cover these expenses.
The closest airport to the hotel is Orlando International Airport (MCO), located approximately 21 miles away.
Ground Transportation – The Walt Disney World Dolphin Hotel does provide airport transportation (fees apply). If you would like a private transfer to or from the airport, you may submit your request here. If you prefer, you may travel via taxi or Uber.
There is a hotel parking fee of $46-$56 + tax/day for preferred parking and $38 + tax/day for standard parking.
Name Badges – Name badges may be picked up at the COPA Board Meeting, located in Asia 5. If you are not planning to attend the COPA Board Meeting, you may pick up your badge beginning at 11:00 a.m. on Monday, April 27. Name badges are required during Conference hours and receptions. Your name badge grants you full access to all sessions and COA events, except for those designated as “Closed Sessions”.
You can find important information on the Conference website, including many FAQs. Please review this information before contacting the event planners with any questions. If you do not find the answer you need under the FAQs, you may reach out to the event planners at events@COAcancer.org.
Thank you,
COA Event Coordinators