
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c20bc8080dbb44d4e8aa7724.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6e4f692f3896879f1d7358e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b650db29038d89241d81749e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f3a8dd03e35b09b773380c71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f79e970ca53c11bbc8c15763.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7ed810c348e3ad765738b02d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1583b92ea1e8de2b9d071e12.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.048828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_efa43be744974ad34ec42153.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bb7bd15bff43671785207a89.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_48f82c40764e45c4b704c43a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_463f9042c4c10b1fd84f5051.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8e6b26626aae0fd4484741e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5cdabc95b8fd9c7440b787e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.020020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7edf9ec45d89594bdf85b4f3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2191c04c3e00dd18b12108dd.woff2')format("woff");}.fff{font-family:fff;line-height:0.844238;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.224073,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.224073,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.224073,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.182743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182743,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212020,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245302,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245937,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.278927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278927,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-41.587933px;}
.v2{vertical-align:-35.940000px;}
.v5{vertical-align:-4.306026px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.306026px;}
.v6{vertical-align:27.725289px;}
.v1{vertical-align:35.940000px;}
.v3{vertical-align:59.027993px;}
.ls22{letter-spacing:-2.298427px;}
.ls51{letter-spacing:-2.267313px;}
.ls43{letter-spacing:-2.211353px;}
.ls20{letter-spacing:-2.072968px;}
.ls3b{letter-spacing:-2.072449px;}
.ls49{letter-spacing:-2.039112px;}
.ls50{letter-spacing:-1.940770px;}
.ls21{letter-spacing:-1.916400px;}
.ls48{letter-spacing:-1.794640px;}
.ls10{letter-spacing:-1.787535px;}
.lsd{letter-spacing:-1.749903px;}
.ls3c{letter-spacing:-1.744635px;}
.ls3f{letter-spacing:-1.666849px;}
.lsf{letter-spacing:-1.630734px;}
.ls57{letter-spacing:-1.624500px;}
.ls4{letter-spacing:-1.536000px;}
.ls54{letter-spacing:-1.521810px;}
.ls53{letter-spacing:-1.367781px;}
.ls18{letter-spacing:-1.344000px;}
.ls4a{letter-spacing:-1.305698px;}
.ls28{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-1.194000px;}
.ls2a{letter-spacing:-1.164000px;}
.ls35{letter-spacing:-1.056000px;}
.ls31{letter-spacing:-1.014000px;}
.ls4c{letter-spacing:-0.927879px;}
.ls3a{letter-spacing:-0.872317px;}
.ls41{letter-spacing:-0.833424px;}
.ls47{letter-spacing:-0.788975px;}
.ls17{letter-spacing:-0.786000px;}
.ls4b{letter-spacing:-0.733413px;}
.ls46{letter-spacing:-0.694520px;}
.lse{letter-spacing:-0.615916px;}
.ls6{letter-spacing:-0.595800px;}
.ls1f{letter-spacing:-0.570000px;}
.ls1c{letter-spacing:-0.191400px;}
.ls19{letter-spacing:-0.151800px;}
.ls1d{letter-spacing:-0.041280px;}
.ls59{letter-spacing:-0.014109px;}
.ls5{letter-spacing:-0.010500px;}
.ls7{letter-spacing:-0.008400px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.027781px;}
.ls39{letter-spacing:0.033337px;}
.ls38{letter-spacing:0.061118px;}
.ls11{letter-spacing:0.080007px;}
.ls25{letter-spacing:0.100204px;}
.ls12{letter-spacing:0.142634px;}
.ls55{letter-spacing:0.237830px;}
.ls15{letter-spacing:0.256773px;}
.ls4d{letter-spacing:0.333370px;}
.ls52{letter-spacing:0.511378px;}
.ls24{letter-spacing:0.552374px;}
.ls4e{letter-spacing:0.588953px;}
.ls56{letter-spacing:0.620777px;}
.ls4f{letter-spacing:0.666739px;}
.ls23{letter-spacing:0.707690px;}
.ls3d{letter-spacing:0.761194px;}
.ls40{letter-spacing:0.833424px;}
.lsc{letter-spacing:0.834000px;}
.ls1a{letter-spacing:0.882000px;}
.ls44{letter-spacing:0.900098px;}
.ls5c{letter-spacing:0.914550px;}
.ls29{letter-spacing:0.960000px;}
.ls2b{letter-spacing:0.966000px;}
.ls5d{letter-spacing:1.056000px;}
.ls34{letter-spacing:1.068000px;}
.ls33{letter-spacing:1.074000px;}
.ls2e{letter-spacing:1.116000px;}
.ls45{letter-spacing:1.139013px;}
.ls58{letter-spacing:1.156902px;}
.ls3e{letter-spacing:1.166794px;}
.ls36{letter-spacing:1.218000px;}
.ls32{letter-spacing:1.224000px;}
.ls42{letter-spacing:1.250137px;}
.lsa{letter-spacing:1.836000px;}
.ls2d{letter-spacing:1.842000px;}
.lsb{letter-spacing:1.986000px;}
.ls27{letter-spacing:1.992000px;}
.ls1e{letter-spacing:3.078000px;}
.ls16{letter-spacing:3.228000px;}
.ls30{letter-spacing:23.669100px;}
.ls3{letter-spacing:29.721000px;}
.ls5a{letter-spacing:49.590000px;}
.ls5b{letter-spacing:49.642500px;}
.ls14{letter-spacing:58.313977px;}
.ls13{letter-spacing:58.345291px;}
.ls2{letter-spacing:59.541000px;}
.ls9{letter-spacing:74.872500px;}
.ls8{letter-spacing:74.925000px;}
.ls2f{letter-spacing:97.147500px;}
.ls26{letter-spacing:97.267500px;}
.ls2c{letter-spacing:97.297500px;}
.ls1{letter-spacing:119.572500px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-44.341500px;}
.ws6e{word-spacing:-36.529200px;}
.ws6f{word-spacing:-32.923800px;}
.ws3{word-spacing:-30.655800px;}
.ws6{word-spacing:-30.647400px;}
.ws4{word-spacing:-30.645300px;}
.ws5{word-spacing:-30.060000px;}
.ws36{word-spacing:-27.253800px;}
.ws38{word-spacing:-23.684850px;}
.ws24{word-spacing:-22.272900px;}
.ws31{word-spacing:-20.820900px;}
.ws10{word-spacing:-20.728350px;}
.ws1a{word-spacing:-20.604900px;}
.ws53{word-spacing:-1.209750px;}
.ws40{word-spacing:-1.089750px;}
.ws30{word-spacing:-0.896250px;}
.ws5c{word-spacing:-0.895200px;}
.ws51{word-spacing:-0.836400px;}
.ws3e{word-spacing:-0.656400px;}
.wsd{word-spacing:-0.578700px;}
.ws14{word-spacing:-0.478500px;}
.ws64{word-spacing:-0.108150px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.154500px;}
.ws32{word-spacing:1.121550px;}
.ws19{word-spacing:1.675350px;}
.wsf{word-spacing:2.460750px;}
.ws1b{word-spacing:3.002400px;}
.ws1d{word-spacing:3.076200px;}
.ws3f{word-spacing:3.280800px;}
.ws52{word-spacing:3.400800px;}
.ws25{word-spacing:6.010050px;}
.ws28{word-spacing:6.435300px;}
.ws1c{word-spacing:6.575850px;}
.ws26{word-spacing:6.953400px;}
.ws23{word-spacing:7.433250px;}
.ws21{word-spacing:8.976000px;}
.ws1e{word-spacing:9.600000px;}
.ws1f{word-spacing:9.706500px;}
.ws2e{word-spacing:10.426350px;}
.ws27{word-spacing:11.945850px;}
.ws2{word-spacing:12.331950px;}
.ws20{word-spacing:12.554400px;}
.wsc{word-spacing:16.228800px;}
.ws2b{word-spacing:16.769850px;}
.ws13{word-spacing:16.856250px;}
.ws6c{word-spacing:17.406600px;}
.ws12{word-spacing:17.836800px;}
.ws29{word-spacing:18.040050px;}
.ws2f{word-spacing:18.327000px;}
.ws2c{word-spacing:19.485990px;}
.ws17{word-spacing:19.494000px;}
.ws2a{word-spacing:19.906350px;}
.ws68{word-spacing:19.956600px;}
.ws2d{word-spacing:19.978500px;}
.ws44{word-spacing:20.115900px;}
.ws56{word-spacing:20.272200px;}
.ws65{word-spacing:20.511300px;}
.ws60{word-spacing:20.536350px;}
.ws67{word-spacing:20.781300px;}
.ws6d{word-spacing:21.593700px;}
.ws43{word-spacing:22.001700px;}
.ws55{word-spacing:22.121700px;}
.ws66{word-spacing:23.292300px;}
.ws69{word-spacing:24.410550px;}
.ws6b{word-spacing:24.480300px;}
.ws54{word-spacing:24.671400px;}
.ws41{word-spacing:24.701400px;}
.ws42{word-spacing:25.735050px;}
.ws6a{word-spacing:25.861800px;}
.ws58{word-spacing:26.082300px;}
.ws46{word-spacing:26.412300px;}
.ws45{word-spacing:27.652050px;}
.ws16{word-spacing:27.705450px;}
.ws57{word-spacing:27.742050px;}
.ws15{word-spacing:27.830250px;}
.ws22{word-spacing:28.092600px;}
.ws47{word-spacing:29.763000px;}
.ws59{word-spacing:29.967450px;}
.wsa{word-spacing:30.343500px;}
.ws18{word-spacing:30.463050px;}
.ws11{word-spacing:30.636000px;}
.ws8{word-spacing:30.793500px;}
.ws9{word-spacing:33.213000px;}
.ws61{word-spacing:33.714000px;}
.wsb{word-spacing:36.036000px;}
.ws37{word-spacing:36.970650px;}
.ws4c{word-spacing:37.463250px;}
.ws7{word-spacing:38.019000px;}
.ws62{word-spacing:38.980800px;}
.ws5d{word-spacing:39.812400px;}
.ws5e{word-spacing:43.484250px;}
.ws33{word-spacing:46.348050px;}
.ws4a{word-spacing:46.498050px;}
.ws35{word-spacing:47.505300px;}
.ws4b{word-spacing:48.655050px;}
.ws34{word-spacing:48.835050px;}
.ws63{word-spacing:57.945750px;}
.ws49{word-spacing:72.012300px;}
.ws4e{word-spacing:73.358100px;}
.ws3b{word-spacing:74.043300px;}
.ws48{word-spacing:74.684250px;}
.ws3a{word-spacing:75.195750px;}
.ws4d{word-spacing:77.810850px;}
.ws39{word-spacing:77.859000px;}
.ws5f{word-spacing:100.562850px;}
.ws5a{word-spacing:174.445800px;}
.ws5b{word-spacing:178.255050px;}
.ws3c{word-spacing:288.490050px;}
.ws4f{word-spacing:288.640050px;}
.ws3d{word-spacing:291.968400px;}
.ws50{word-spacing:292.004700px;}
._2f{margin-left:-1310.515239px;}
._29{margin-left:-793.200374px;}
._27{margin-left:-19.841667px;}
._2e{margin-left:-12.906150px;}
._2d{margin-left:-11.248058px;}
._a{margin-left:-8.758800px;}
._8{margin-left:-6.866400px;}
._4{margin-left:-4.968000px;}
._1{margin-left:-3.600000px;}
._5{margin-left:-2.592000px;}
._3{margin-left:-1.368000px;}
._0{width:1.368000px;}
._2{width:3.312000px;}
._7{width:5.286000px;}
._1d{width:6.820963px;}
._6{width:7.854000px;}
._31{width:11.990365px;}
._2a{width:16.640706px;}
._30{width:20.573171px;}
._10{width:22.295550px;}
._b{width:24.237000px;}
._1b{width:25.982850px;}
._9{width:28.725000px;}
._1c{width:33.094500px;}
._e{width:38.111250px;}
._f{width:39.424050px;}
._13{width:40.866150px;}
._12{width:41.878050px;}
._19{width:50.810400px;}
._1a{width:51.926100px;}
._11{width:53.826000px;}
._c{width:55.170000px;}
._d{width:57.465000px;}
._25{width:59.420100px;}
._1e{width:66.233700px;}
._1f{width:67.361100px;}
._23{width:68.614800px;}
._21{width:100.106400px;}
._20{width:102.753300px;}
._26{width:116.226600px;}
._16{width:125.913838px;}
._24{width:126.934500px;}
._17{width:130.966628px;}
._15{width:141.340372px;}
._18{width:146.027094px;}
._22{width:183.388949px;}
._2c{width:301.572550px;}
._2b{width:312.145203px;}
._32{width:601.893392px;}
._28{width:774.694734px;}
._14{width:803.651775px;}
.fca{color:rgb(70,120,134);}
.fc9{color:transparent;}
.fc6{color:rgb(233,113,50);}
.fcb{color:rgb(14,40,65);}
.fc7{color:rgb(211,97,53);}
.fc4{color:rgb(45,38,42);}
.fc3{color:rgb(2,2,11);}
.fc8{color:rgb(236,228,183);}
.fc2{color:rgb(106,41,20);}
.fc1{color:rgb(127,176,105);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:54.000000px;}
.fs12{font-size:54.150000px;}
.fs23{font-size:58.339705px;}
.fs24{font-size:58.478609px;}
.fs21{font-size:62.506827px;}
.fs20{font-size:62.645731px;}
.fs28{font-size:64.846370px;}
.fs22{font-size:66.812853px;}
.fsb{font-size:70.717411px;}
.fsc{font-size:70.874213px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:72.150000px;}
.fs14{font-size:75.309500px;}
.fsf{font-size:75.578253px;}
.fs11{font-size:78.899851px;}
.fs7{font-size:81.150000px;}
.fs30{font-size:81.829636px;}
.fs2d{font-size:81.930411px;}
.fse{font-size:84.148178px;}
.fs26{font-size:87.950778px;}
.fs27{font-size:88.104807px;}
.fs19{font-size:94.272165px;}
.fs1a{font-size:94.428764px;}
.fs9{font-size:94.500000px;}
.fsa{font-size:94.650000px;}
.fs2f{font-size:97.046723px;}
.fs25{font-size:97.192541px;}
.fs29{font-size:97.346570px;}
.fs1e{font-size:98.216566px;}
.fs1d{font-size:98.379988px;}
.fs18{font-size:98.970114px;}
.fs10{font-size:99.098457px;}
.fs16{font-size:99.126712px;}
.fs1c{font-size:103.282645px;}
.fs1b{font-size:108.150000px;}
.fsd{font-size:110.564758px;}
.fs2e{font-size:112.163035px;}
.fs2c{font-size:112.263810px;}
.fs17{font-size:113.220557px;}
.fs1f{font-size:118.310630px;}
.fs8{font-size:121.650000px;}
.fs6{font-size:121.800000px;}
.fs33{font-size:130.650000px;}
.fs3{font-size:144.150000px;}
.fs4{font-size:144.300000px;}
.fs2b{font-size:145.519697px;}
.fs15{font-size:166.650000px;}
.fs31{font-size:166.800000px;}
.fs2{font-size:216.300000px;}
.fs2a{font-size:265.800000px;}
.fs5{font-size:265.950000px;}
.fs32{font-size:288.450000px;}
.y0{bottom:0.000000px;}
.y42{bottom:14.674054px;}
.y3{bottom:15.525000px;}
.y22{bottom:15.794597px;}
.yf8{bottom:17.027963px;}
.yf5{bottom:17.027969px;}
.yf2{bottom:18.539597px;}
.yec{bottom:20.051234px;}
.yb0{bottom:22.394488px;}
.yef{bottom:23.099701px;}
.y98{bottom:23.436268px;}
.ye9{bottom:23.855510px;}
.ye6{bottom:23.855513px;}
.y96{bottom:24.512774px;}
.y5a{bottom:32.412285px;}
.y2{bottom:36.900000px;}
.yf7{bottom:40.533829px;}
.yf4{bottom:40.533834px;}
.yf1{bottom:42.045462px;}
.y97{bottom:42.223042px;}
.y95{bottom:43.264822px;}
.yeb{bottom:43.557100px;}
.yee{bottom:46.605565px;}
.ye8{bottom:47.361375px;}
.ye5{bottom:47.361378px;}
.y21{bottom:48.801284px;}
.y1{bottom:58.312500px;}
.yae{bottom:58.926255px;}
.y41{bottom:60.587952px;}
.y3e{bottom:60.587957px;}
.y59{bottom:60.717425px;}
.y8c{bottom:65.131828px;}
.yf6{bottom:66.307140px;}
.yf3{bottom:66.307146px;}
.yf0{bottom:67.818774px;}
.yea{bottom:69.330412px;}
.yed{bottom:72.378878px;}
.ye7{bottom:73.134687px;}
.ye4{bottom:73.134690px;}
.y94{bottom:75.629468px;}
.ye0{bottom:78.089016px;}
.ya9{bottom:81.880151px;}
.y8a{bottom:81.927036px;}
.y40{bottom:82.938122px;}
.y3d{bottom:82.938125px;}
.y20{bottom:82.983980px;}
.y8e{bottom:83.748291px;}
.ydb{bottom:85.058845px;}
.y30{bottom:85.335998px;}
.y1f{bottom:85.336001px;}
.y7e{bottom:86.608545px;}
.ybe{bottom:92.802226px;}
.yaf{bottom:93.374462px;}
.y58{bottom:98.457607px;}
.y8b{bottom:99.519509px;}
.yc0{bottom:100.076710px;}
.ya8{bottom:100.666925px;}
.y77{bottom:102.583020px;}
.y7{bottom:103.312500px;}
.y3f{bottom:105.288290px;}
.y3c{bottom:105.288294px;}
.y3b{bottom:106.320870px;}
.y2f{bottom:108.895402px;}
.y6e{bottom:109.462500px;}
.yda{bottom:110.512201px;}
.y7d{bottom:116.106194px;}
.yad{bottom:120.495480px;}
.ybf{bottom:124.374845px;}
.y32{bottom:125.737500px;}
.yb6{bottom:127.787943px;}
.y6f{bottom:128.856441px;}
.y76{bottom:132.080669px;}
.y2e{bottom:132.454806px;}
.ya7{bottom:137.198693px;}
.y5c{bottom:140.934893px;}
.y31{bottom:142.650000px;}
.yff{bottom:144.825000px;}
.y7c{bottom:145.562997px;}
.y6{bottom:147.225000px;}
.yac{bottom:147.615108px;}
.y1a{bottom:151.875000px;}
.ya6{bottom:155.991023px;}
.y6d{bottom:157.920000px;}
.y87{bottom:159.300000px;}
.y75{bottom:161.537473px;}
.y65{bottom:166.575000px;}
.y19{bottom:167.430000px;}
.y5b{bottom:169.233770px;}
.yd5{bottom:169.542422px;}
.y9d{bottom:172.687291px;}
.y7b{bottom:175.055746px;}
.yc8{bottom:177.628964px;}
.y1c{bottom:185.527360px;}
.y89{bottom:186.654802px;}
.y10{bottom:190.680000px;}
.y74{bottom:191.038392px;}
.y4d{bottom:194.685835px;}
.ye3{bottom:196.706504px;}
.yd4{bottom:200.779581px;}
.y2d{bottom:200.815489px;}
.yc7{bottom:204.245242px;}
.y7a{bottom:204.553400px;}
.y57{bottom:204.624979px;}
.ybb{bottom:206.065936px;}
.y6c{bottom:206.355000px;}
.y86{bottom:207.750000px;}
.y1b{bottom:209.094604px;}
.y9b{bottom:209.191278px;}
.y88{bottom:210.753032px;}
.yab{bottom:212.344400px;}
.y64{bottom:215.025000px;}
.y18{bottom:215.880000px;}
.y23{bottom:216.150662px;}
.y4c{bottom:217.043831px;}
.y73{bottom:220.536048px;}
.yba{bottom:224.845765px;}
.yd3{bottom:226.271443px;}
.y79{bottom:234.051056px;}
.ya3{bottom:238.430582px;}
.y4b{bottom:239.433142px;}
.y56{bottom:241.315738px;}
.y9c{bottom:241.555924px;}
.yf{bottom:244.755000px;}
.y72{bottom:250.033702px;}
.yd2{bottom:250.561877px;}
.y1e{bottom:253.892751px;}
.yd0{bottom:254.027538px;}
.y6b{bottom:255.945000px;}
.y85{bottom:256.155000px;}
.yfe{bottom:256.350000px;}
.ya2{bottom:257.210411px;}
.yb9{bottom:259.293972px;}
.y46{bottom:260.601215px;}
.y4a{bottom:260.601220px;}
.yaa{bottom:261.377533px;}
.ycd{bottom:262.114081px;}
.y63{bottom:263.475000px;}
.y78{bottom:263.516026px;}
.y17{bottom:265.425000px;}
.yd1{bottom:274.867714px;}
.y1d{bottom:277.459995px;}
.yc2{bottom:278.333375px;}
.y45{bottom:282.959212px;}
.y49{bottom:282.959218px;}
.ycc{bottom:287.605944px;}
.ye2{bottom:291.724730px;}
.yb5{bottom:292.672618px;}
.ya5{bottom:294.756179px;}
.ye{bottom:298.845000px;}
.yc1{bottom:302.623809px;}
.y6a{bottom:304.350000px;}
.y44{bottom:305.301552px;}
.y48{bottom:305.301557px;}
.y84{bottom:305.730000px;}
.y2c{bottom:312.818697px;}
.y62{bottom:313.050000px;}
.ya4{bottom:313.536007px;}
.ycf{bottom:325.774425px;}
.y43{bottom:327.659550px;}
.y47{bottom:327.659554px;}
.y103{bottom:329.550000px;}
.y16{bottom:329.655000px;}
.y2b{bottom:336.370261px;}
.y93{bottom:337.566410px;}
.y71{bottom:338.477653px;}
.ydd{bottom:345.443977px;}
.yc4{bottom:352.421508px;}
.y69{bottom:352.800000px;}
.yd{bottom:352.905000px;}
.y83{bottom:354.195000px;}
.y61{bottom:361.470000px;}
.yb8{bottom:363.652592px;}
.ydc{bottom:366.284153px;}
.yfd{bottom:366.750000px;}
.yd9{bottom:368.625399px;}
.y70{bottom:370.426635px;}
.y4e{bottom:371.185625px;}
.y92{bottom:371.986836px;}
.y102{bottom:375.750000px;}
.y2a{bottom:376.480047px;}
.y26{bottom:381.184093px;}
.yb7{bottom:382.432421px;}
.yc3{bottom:382.488044px;}
.yce{bottom:383.643264px;}
.y3a{bottom:385.530000px;}
.y15{bottom:393.855000px;}
.yd8{bottom:394.086456px;}
.y5{bottom:399.345000px;}
.y29{bottom:400.031611px;}
.y68{bottom:401.250000px;}
.y82{bottom:402.645000px;}
.yc6{bottom:403.328219px;}
.y25{bottom:404.735657px;}
.yc{bottom:406.995000px;}
.y60{bottom:409.905000px;}
.y91{bottom:412.685725px;}
.yd7{bottom:419.532110px;}
.yfc{bottom:421.950000px;}
.y101{bottom:423.075000px;}
.yc5{bottom:427.618653px;}
.y24{bottom:428.334261px;}
.y39{bottom:428.370000px;}
.yb3{bottom:434.590895px;}
.y53{bottom:434.705511px;}
.ycb{bottom:438.061845px;}
.y28{bottom:440.094358px;}
.yd6{bottom:446.148388px;}
.y67{bottom:449.700000px;}
.y81{bottom:451.095000px;}
.yb2{bottom:452.342834px;}
.y14{bottom:456.945000px;}
.y52{bottom:458.269085px;}
.y5f{bottom:458.370000px;}
.yb4{bottom:459.635297px;}
.yb{bottom:461.070000px;}
.yfb{bottom:462.495000px;}
.yca{bottom:463.507499px;}
.y27{bottom:463.692962px;}
.y4{bottom:464.670000px;}
.ya1{bottom:469.039102px;}
.yb1{bottom:470.080883px;}
.y38{bottom:472.275000px;}
.y51{bottom:480.627081px;}
.yc9{bottom:485.502895px;}
.y66{bottom:499.275000px;}
.y80{bottom:499.500000px;}
.y50{bottom:502.969424px;}
.ya0{bottom:505.570870px;}
.y5e{bottom:506.820000px;}
.ydf{bottom:513.305199px;}
.y37{bottom:515.100000px;}
.ya{bottom:515.130000px;}
.yfa{bottom:517.695000px;}
.y9a{bottom:518.072235px;}
.y13{bottom:521.175000px;}
.y100{bottom:524.595000px;}
.y4f{bottom:525.327420px;}
.yde{bottom:537.595633px;}
.y9f{bottom:542.074857px;}
.y99{bottom:548.353320px;}
.y7f{bottom:549.075000px;}
.y5d{bottom:556.380000px;}
.y36{bottom:557.880000px;}
.yf9{bottom:558.255000px;}
.y54{bottom:564.156432px;}
.y9{bottom:569.220000px;}
.y9e{bottom:569.230600px;}
.y12{bottom:570.750000px;}
.y90{bottom:578.606624px;}
.y55{bottom:587.025000px;}
.y8f{bottom:597.386453px;}
.y35{bottom:601.845000px;}
.y11{bottom:619.155000px;}
.y34{bottom:644.655000px;}
.y8{bottom:670.050000px;}
.ye1{bottom:671.250000px;}
.ybd{bottom:690.720000px;}
.ybc{bottom:700.425000px;}
.y8d{bottom:706.500000px;}
.y33{bottom:711.525000px;}
.h2e{height:43.754779px;}
.h2f{height:43.858957px;}
.h2c{height:46.880120px;}
.h2b{height:46.984298px;}
.h30{height:48.164983px;}
.h2d{height:50.109640px;}
.h1{height:52.628906px;}
.h2{height:52.738550px;}
.hc{height:53.038059px;}
.hd{height:53.155660px;}
.h14{height:53.709961px;}
.h13{height:55.445581px;}
.h19{height:56.482125px;}
.h10{height:56.683690px;}
.h12{height:59.174888px;}
.h3d{height:61.372227px;}
.h3b{height:61.447808px;}
.hf{height:63.111133px;}
.h33{height:65.963083px;}
.h34{height:66.078605px;}
.h1e{height:70.704124px;}
.h1f{height:70.821573px;}
.h32{height:72.894406px;}
.h36{height:73.009928px;}
.h26{height:73.662424px;}
.h25{height:73.784991px;}
.h1d{height:74.227585px;}
.h11{height:74.323843px;}
.h35{height:76.360067px;}
.h23{height:77.461984px;}
.h9{height:81.718506px;}
.ha{height:81.848218px;}
.he{height:82.923568px;}
.h3c{height:84.122276px;}
.h3a{height:84.197858px;}
.h1c{height:84.915418px;}
.h29{height:88.732973px;}
.h27{height:91.409985px;}
.h21{height:93.522290px;}
.h20{height:93.786328px;}
.h17{height:94.141626px;}
.h16{height:96.760986px;}
.h15{height:96.914575px;}
.h8{height:105.493359px;}
.h7{height:106.312266px;}
.h39{height:109.139772px;}
.h42{height:112.979077px;}
.h41{height:113.298047px;}
.h4{height:124.653149px;}
.h5{height:124.782861px;}
.h24{height:136.489976px;}
.h3f{height:144.109937px;}
.h3{height:144.164795px;}
.h3e{height:144.239648px;}
.h1a{height:144.516797px;}
.h37{height:177.156738px;}
.h6{height:177.256714px;}
.h40{height:192.253052px;}
.h38{height:243.372644px;}
.h1b{height:265.434107px;}
.h28{height:283.817974px;}
.h22{height:491.491434px;}
.hb{height:496.119490px;}
.h18{height:588.306548px;}
.h31{height:600.714594px;}
.h2a{height:618.817586px;}
.h0{height:810.000000px;}
.w6{width:521.195472px;}
.w5{width:553.390400px;}
.w3{width:557.951667px;}
.w2{width:645.544236px;}
.w4{width:720.295331px;}
.w7{width:1240.956647px;}
.w8{width:1259.494445px;}
.w9{width:1271.250000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x9e{left:-9.073826px;}
.x9d{left:-4.650653px;}
.x0{left:0.000000px;}
.x8e{left:12.492027px;}
.x8d{left:16.737469px;}
.x8c{left:20.101164px;}
.x57{left:25.627670px;}
.x90{left:26.730584px;}
.x9{left:29.944106px;}
.x4e{left:31.460839px;}
.x73{left:35.031955px;}
.xe{left:36.787696px;}
.x56{left:37.860054px;}
.x4{left:45.562479px;}
.x1{left:46.912479px;}
.x91{left:50.113172px;}
.x7c{left:55.499979px;}
.x50{left:58.372297px;}
.x74{left:59.939679px;}
.x92{left:63.535303px;}
.x1e{left:64.949979px;}
.x4f{left:66.915769px;}
.x7d{left:68.005555px;}
.x35{left:70.204162px;}
.x31{left:72.203703px;}
.x97{left:75.899979px;}
.xf{left:78.730577px;}
.x20{left:80.474979px;}
.x58{left:83.450392px;}
.x23{left:87.067074px;}
.x22{left:90.147546px;}
.x2b{left:93.420523px;}
.x6{left:99.074979px;}
.x76{left:104.848547px;}
.x2c{left:107.282677px;}
.x51{left:108.766995px;}
.x5{left:109.874979px;}
.x2{left:114.749979px;}
.x72{left:122.157879px;}
.xa7{left:124.912479px;}
.x10{left:130.339127px;}
.x59{left:133.027325px;}
.x7{left:139.612479px;}
.x33{left:141.244927px;}
.x3d{left:143.662479px;}
.x5a{left:152.272035px;}
.x13{left:158.680091px;}
.x14{left:163.622266px;}
.x99{left:181.254085px;}
.x30{left:192.842946px;}
.x47{left:198.171735px;}
.x46{left:200.117718px;}
.x49{left:201.220464px;}
.x34{left:204.748967px;}
.x15{left:207.087162px;}
.x40{left:209.442231px;}
.x32{left:216.593416px;}
.x3f{left:218.280254px;}
.x48{left:219.820860px;}
.x2f{left:222.030500px;}
.x1c{left:225.893669px;}
.x2e{left:230.301580px;}
.x1d{left:234.780836px;}
.xc{left:237.544954px;}
.x11{left:241.953550px;}
.x2d{left:245.288103px;}
.x4a{left:247.632281px;}
.xd{left:255.511727px;}
.xa{left:258.013430px;}
.x1f{left:260.954979px;}
.x55{left:263.215332px;}
.xb{left:266.673170px;}
.x3{left:281.999979px;}
.x93{left:290.731757px;}
.x38{left:299.854902px;}
.x94{left:304.382486px;}
.x25{left:310.979319px;}
.x8f{left:313.108504px;}
.x39{left:319.635122px;}
.x4d{left:325.240022px;}
.x24{left:337.009355px;}
.x7f{left:340.788786px;}
.x75{left:341.938728px;}
.x95{left:351.343604px;}
.x27{left:352.411714px;}
.x26{left:357.001664px;}
.x2a{left:363.393628px;}
.x45{left:365.932133px;}
.x7e{left:369.344281px;}
.x28{left:371.710912px;}
.x3a{left:373.263782px;}
.x42{left:380.283774px;}
.x41{left:384.532510px;}
.x9a{left:392.798066px;}
.x36{left:396.466620px;}
.x29{left:400.744421px;}
.x43{left:403.311303px;}
.x9b{left:409.307879px;}
.x44{left:417.744057px;}
.x12{left:422.898373px;}
.x37{left:425.804992px;}
.x53{left:435.913427px;}
.x54{left:438.298572px;}
.xa9{left:467.279979px;}
.x1a{left:469.433540px;}
.x16{left:478.215740px;}
.x1b{left:482.676819px;}
.x17{left:496.847301px;}
.x18{left:499.244037px;}
.x19{left:504.719792px;}
.xa8{left:506.879979px;}
.x88{left:553.949157px;}
.x98{left:565.832629px;}
.x96{left:572.563789px;}
.x87{left:577.005172px;}
.x86{left:581.969072px;}
.x69{left:594.859459px;}
.x6d{left:603.037099px;}
.x6c{left:604.672626px;}
.x6f{left:608.897740px;}
.x6a{left:614.785638px;}
.x68{left:617.893140px;}
.x9c{left:633.024436px;}
.x71{left:646.174143px;}
.x6b{left:648.354844px;}
.x6e{left:656.082714px;}
.x77{left:664.710120px;}
.x78{left:677.412719px;}
.x70{left:684.609043px;}
.x5d{left:702.122815px;}
.x5b{left:705.693717px;}
.x5f{left:710.981924px;}
.x8{left:745.004979px;}
.x4b{left:746.249979px;}
.x82{left:755.875437px;}
.x5c{left:773.636264px;}
.x5e{left:774.999204px;}
.x4c{left:779.999979px;}
.x3e{left:788.143327px;}
.x83{left:794.045225px;}
.x3b{left:803.474979px;}
.x84{left:820.693539px;}
.xa2{left:826.451096px;}
.xa3{left:830.929876px;}
.x3c{left:837.254979px;}
.x21{left:857.861024px;}
.x52{left:868.033472px;}
.x61{left:885.710802px;}
.x60{left:894.597169px;}
.x85{left:898.509222px;}
.x8a{left:980.191526px;}
.x89{left:983.418061px;}
.x9f{left:988.647621px;}
.x63{left:991.951955px;}
.xa1{left:996.230206px;}
.x67{left:999.966042px;}
.x62{left:1003.128061px;}
.x66{left:1004.995290px;}
.xa0{left:1007.674852px;}
.x79{left:1009.670172px;}
.x7b{left:1013.350110px;}
.x7a{left:1014.713049px;}
.x8b{left:1022.645945px;}
.x65{left:1026.979508px;}
.x64{left:1032.703855px;}
.x81{left:1131.943214px;}
.xa5{left:1138.398599px;}
.x80{left:1145.567816px;}
.xa6{left:1158.568273px;}
.xa4{left:1168.678384px;}
@media print{
.v7{vertical-align:-36.967052pt;}
.v2{vertical-align:-31.946667pt;}
.v5{vertical-align:-3.827579pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.827579pt;}
.v6{vertical-align:24.644701pt;}
.v1{vertical-align:31.946667pt;}
.v3{vertical-align:52.469327pt;}
.ls22{letter-spacing:-2.043046pt;}
.ls51{letter-spacing:-2.015389pt;}
.ls43{letter-spacing:-1.965647pt;}
.ls20{letter-spacing:-1.842639pt;}
.ls3b{letter-spacing:-1.842177pt;}
.ls49{letter-spacing:-1.812544pt;}
.ls50{letter-spacing:-1.725129pt;}
.ls21{letter-spacing:-1.703466pt;}
.ls48{letter-spacing:-1.595236pt;}
.ls10{letter-spacing:-1.588920pt;}
.lsd{letter-spacing:-1.555469pt;}
.ls3c{letter-spacing:-1.550787pt;}
.ls3f{letter-spacing:-1.481643pt;}
.lsf{letter-spacing:-1.449541pt;}
.ls57{letter-spacing:-1.444000pt;}
.ls4{letter-spacing:-1.365333pt;}
.ls54{letter-spacing:-1.352720pt;}
.ls53{letter-spacing:-1.215805pt;}
.ls18{letter-spacing:-1.194667pt;}
.ls4a{letter-spacing:-1.160621pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-1.061333pt;}
.ls2a{letter-spacing:-1.034667pt;}
.ls35{letter-spacing:-0.938667pt;}
.ls31{letter-spacing:-0.901333pt;}
.ls4c{letter-spacing:-0.824781pt;}
.ls3a{letter-spacing:-0.775393pt;}
.ls41{letter-spacing:-0.740822pt;}
.ls47{letter-spacing:-0.701311pt;}
.ls17{letter-spacing:-0.698667pt;}
.ls4b{letter-spacing:-0.651923pt;}
.ls46{letter-spacing:-0.617351pt;}
.lse{letter-spacing:-0.547481pt;}
.ls6{letter-spacing:-0.529600pt;}
.ls1f{letter-spacing:-0.506667pt;}
.ls1c{letter-spacing:-0.170133pt;}
.ls19{letter-spacing:-0.134933pt;}
.ls1d{letter-spacing:-0.036693pt;}
.ls59{letter-spacing:-0.012541pt;}
.ls5{letter-spacing:-0.009333pt;}
.ls7{letter-spacing:-0.007467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.024694pt;}
.ls39{letter-spacing:0.029633pt;}
.ls38{letter-spacing:0.054327pt;}
.ls11{letter-spacing:0.071117pt;}
.ls25{letter-spacing:0.089070pt;}
.ls12{letter-spacing:0.126786pt;}
.ls55{letter-spacing:0.211404pt;}
.ls15{letter-spacing:0.228242pt;}
.ls4d{letter-spacing:0.296329pt;}
.ls52{letter-spacing:0.454558pt;}
.ls24{letter-spacing:0.490999pt;}
.ls4e{letter-spacing:0.523514pt;}
.ls56{letter-spacing:0.551801pt;}
.ls4f{letter-spacing:0.592657pt;}
.ls23{letter-spacing:0.629058pt;}
.ls3d{letter-spacing:0.676617pt;}
.ls40{letter-spacing:0.740822pt;}
.lsc{letter-spacing:0.741333pt;}
.ls1a{letter-spacing:0.784000pt;}
.ls44{letter-spacing:0.800087pt;}
.ls5c{letter-spacing:0.812933pt;}
.ls29{letter-spacing:0.853333pt;}
.ls2b{letter-spacing:0.858667pt;}
.ls5d{letter-spacing:0.938667pt;}
.ls34{letter-spacing:0.949333pt;}
.ls33{letter-spacing:0.954667pt;}
.ls2e{letter-spacing:0.992000pt;}
.ls45{letter-spacing:1.012456pt;}
.ls58{letter-spacing:1.028357pt;}
.ls3e{letter-spacing:1.037150pt;}
.ls36{letter-spacing:1.082667pt;}
.ls32{letter-spacing:1.088000pt;}
.ls42{letter-spacing:1.111232pt;}
.lsa{letter-spacing:1.632000pt;}
.ls2d{letter-spacing:1.637333pt;}
.lsb{letter-spacing:1.765333pt;}
.ls27{letter-spacing:1.770667pt;}
.ls1e{letter-spacing:2.736000pt;}
.ls16{letter-spacing:2.869333pt;}
.ls30{letter-spacing:21.039200pt;}
.ls3{letter-spacing:26.418667pt;}
.ls5a{letter-spacing:44.080000pt;}
.ls5b{letter-spacing:44.126667pt;}
.ls14{letter-spacing:51.834647pt;}
.ls13{letter-spacing:51.862481pt;}
.ls2{letter-spacing:52.925333pt;}
.ls9{letter-spacing:66.553333pt;}
.ls8{letter-spacing:66.600000pt;}
.ls2f{letter-spacing:86.353333pt;}
.ls26{letter-spacing:86.460000pt;}
.ls2c{letter-spacing:86.486667pt;}
.ls1{letter-spacing:106.286667pt;}
.ws0{word-spacing:-39.414667pt;}
.ws6e{word-spacing:-32.470400pt;}
.ws6f{word-spacing:-29.265600pt;}
.ws3{word-spacing:-27.249600pt;}
.ws6{word-spacing:-27.242133pt;}
.ws4{word-spacing:-27.240267pt;}
.ws5{word-spacing:-26.720000pt;}
.ws36{word-spacing:-24.225600pt;}
.ws38{word-spacing:-21.053200pt;}
.ws24{word-spacing:-19.798133pt;}
.ws31{word-spacing:-18.507467pt;}
.ws10{word-spacing:-18.425200pt;}
.ws1a{word-spacing:-18.315467pt;}
.ws53{word-spacing:-1.075333pt;}
.ws40{word-spacing:-0.968667pt;}
.ws30{word-spacing:-0.796667pt;}
.ws5c{word-spacing:-0.795733pt;}
.ws51{word-spacing:-0.743467pt;}
.ws3e{word-spacing:-0.583467pt;}
.wsd{word-spacing:-0.514400pt;}
.ws14{word-spacing:-0.425333pt;}
.ws64{word-spacing:-0.096133pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.137333pt;}
.ws32{word-spacing:0.996933pt;}
.ws19{word-spacing:1.489200pt;}
.wsf{word-spacing:2.187333pt;}
.ws1b{word-spacing:2.668800pt;}
.ws1d{word-spacing:2.734400pt;}
.ws3f{word-spacing:2.916267pt;}
.ws52{word-spacing:3.022933pt;}
.ws25{word-spacing:5.342267pt;}
.ws28{word-spacing:5.720267pt;}
.ws1c{word-spacing:5.845200pt;}
.ws26{word-spacing:6.180800pt;}
.ws23{word-spacing:6.607333pt;}
.ws21{word-spacing:7.978667pt;}
.ws1e{word-spacing:8.533333pt;}
.ws1f{word-spacing:8.628000pt;}
.ws2e{word-spacing:9.267867pt;}
.ws27{word-spacing:10.618533pt;}
.ws2{word-spacing:10.961733pt;}
.ws20{word-spacing:11.159467pt;}
.wsc{word-spacing:14.425600pt;}
.ws2b{word-spacing:14.906533pt;}
.ws13{word-spacing:14.983333pt;}
.ws6c{word-spacing:15.472533pt;}
.ws12{word-spacing:15.854933pt;}
.ws29{word-spacing:16.035600pt;}
.ws2f{word-spacing:16.290667pt;}
.ws2c{word-spacing:17.320880pt;}
.ws17{word-spacing:17.328000pt;}
.ws2a{word-spacing:17.694533pt;}
.ws68{word-spacing:17.739200pt;}
.ws2d{word-spacing:17.758667pt;}
.ws44{word-spacing:17.880800pt;}
.ws56{word-spacing:18.019733pt;}
.ws65{word-spacing:18.232267pt;}
.ws60{word-spacing:18.254533pt;}
.ws67{word-spacing:18.472267pt;}
.ws6d{word-spacing:19.194400pt;}
.ws43{word-spacing:19.557067pt;}
.ws55{word-spacing:19.663733pt;}
.ws66{word-spacing:20.704267pt;}
.ws69{word-spacing:21.698267pt;}
.ws6b{word-spacing:21.760267pt;}
.ws54{word-spacing:21.930133pt;}
.ws41{word-spacing:21.956800pt;}
.ws42{word-spacing:22.875600pt;}
.ws6a{word-spacing:22.988267pt;}
.ws58{word-spacing:23.184267pt;}
.ws46{word-spacing:23.477600pt;}
.ws45{word-spacing:24.579600pt;}
.ws16{word-spacing:24.627067pt;}
.ws57{word-spacing:24.659600pt;}
.ws15{word-spacing:24.738000pt;}
.ws22{word-spacing:24.971200pt;}
.ws47{word-spacing:26.456000pt;}
.ws59{word-spacing:26.637733pt;}
.wsa{word-spacing:26.972000pt;}
.ws18{word-spacing:27.078267pt;}
.ws11{word-spacing:27.232000pt;}
.ws8{word-spacing:27.372000pt;}
.ws9{word-spacing:29.522667pt;}
.ws61{word-spacing:29.968000pt;}
.wsb{word-spacing:32.032000pt;}
.ws37{word-spacing:32.862800pt;}
.ws4c{word-spacing:33.300667pt;}
.ws7{word-spacing:33.794667pt;}
.ws62{word-spacing:34.649600pt;}
.ws5d{word-spacing:35.388800pt;}
.ws5e{word-spacing:38.652667pt;}
.ws33{word-spacing:41.198267pt;}
.ws4a{word-spacing:41.331600pt;}
.ws35{word-spacing:42.226933pt;}
.ws4b{word-spacing:43.248933pt;}
.ws34{word-spacing:43.408933pt;}
.ws63{word-spacing:51.507333pt;}
.ws49{word-spacing:64.010933pt;}
.ws4e{word-spacing:65.207200pt;}
.ws3b{word-spacing:65.816267pt;}
.ws48{word-spacing:66.386000pt;}
.ws3a{word-spacing:66.840667pt;}
.ws4d{word-spacing:69.165200pt;}
.ws39{word-spacing:69.208000pt;}
.ws5f{word-spacing:89.389200pt;}
.ws5a{word-spacing:155.062933pt;}
.ws5b{word-spacing:158.448933pt;}
.ws3c{word-spacing:256.435600pt;}
.ws4f{word-spacing:256.568933pt;}
.ws3d{word-spacing:259.527467pt;}
.ws50{word-spacing:259.559733pt;}
._2f{margin-left:-1164.902435pt;}
._29{margin-left:-705.066999pt;}
._27{margin-left:-17.637037pt;}
._2e{margin-left:-11.472133pt;}
._2d{margin-left:-9.998273pt;}
._a{margin-left:-7.785600pt;}
._8{margin-left:-6.103467pt;}
._4{margin-left:-4.416000pt;}
._1{margin-left:-3.200000pt;}
._5{margin-left:-2.304000pt;}
._3{margin-left:-1.216000pt;}
._0{width:1.216000pt;}
._2{width:2.944000pt;}
._7{width:4.698667pt;}
._1d{width:6.063079pt;}
._6{width:6.981333pt;}
._31{width:10.658102pt;}
._2a{width:14.791739pt;}
._30{width:18.287263pt;}
._10{width:19.818267pt;}
._b{width:21.544000pt;}
._1b{width:23.095867pt;}
._9{width:25.533333pt;}
._1c{width:29.417333pt;}
._e{width:33.876667pt;}
._f{width:35.043600pt;}
._13{width:36.325467pt;}
._12{width:37.224933pt;}
._19{width:45.164800pt;}
._1a{width:46.156533pt;}
._11{width:47.845333pt;}
._c{width:49.040000pt;}
._d{width:51.080000pt;}
._25{width:52.817867pt;}
._1e{width:58.874400pt;}
._1f{width:59.876533pt;}
._23{width:60.990933pt;}
._21{width:88.983467pt;}
._20{width:91.336267pt;}
._26{width:103.312533pt;}
._16{width:111.923412pt;}
._24{width:112.830667pt;}
._17{width:116.414781pt;}
._15{width:125.635886pt;}
._18{width:129.801861pt;}
._22{width:163.012399pt;}
._2c{width:268.064488pt;}
._2b{width:277.462402pt;}
._32{width:535.016348pt;}
._28{width:688.617541pt;}
._14{width:714.357133pt;}
.fs13{font-size:48.000000pt;}
.fs12{font-size:48.133333pt;}
.fs23{font-size:51.857516pt;}
.fs24{font-size:51.980986pt;}
.fs21{font-size:55.561624pt;}
.fs20{font-size:55.685094pt;}
.fs28{font-size:57.641218pt;}
.fs22{font-size:59.389202pt;}
.fsb{font-size:62.859921pt;}
.fsc{font-size:62.999300pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:64.133333pt;}
.fs14{font-size:66.941777pt;}
.fsf{font-size:67.180670pt;}
.fs11{font-size:70.133201pt;}
.fs7{font-size:72.133333pt;}
.fs30{font-size:72.737454pt;}
.fs2d{font-size:72.827032pt;}
.fse{font-size:74.798380pt;}
.fs26{font-size:78.178469pt;}
.fs27{font-size:78.315384pt;}
.fs19{font-size:83.797480pt;}
.fs1a{font-size:83.936679pt;}
.fs9{font-size:84.000000pt;}
.fsa{font-size:84.133333pt;}
.fs2f{font-size:86.263754pt;}
.fs25{font-size:86.393370pt;}
.fs29{font-size:86.530285pt;}
.fs1e{font-size:87.303614pt;}
.fs1d{font-size:87.448878pt;}
.fs18{font-size:87.973435pt;}
.fs10{font-size:88.087517pt;}
.fs16{font-size:88.112633pt;}
.fs1c{font-size:91.806795pt;}
.fs1b{font-size:96.133333pt;}
.fsd{font-size:98.279785pt;}
.fs2e{font-size:99.700475pt;}
.fs2c{font-size:99.790054pt;}
.fs17{font-size:100.640496pt;}
.fs1f{font-size:105.165005pt;}
.fs8{font-size:108.133333pt;}
.fs6{font-size:108.266667pt;}
.fs33{font-size:116.133333pt;}
.fs3{font-size:128.133333pt;}
.fs4{font-size:128.266667pt;}
.fs2b{font-size:129.350841pt;}
.fs15{font-size:148.133333pt;}
.fs31{font-size:148.266667pt;}
.fs2{font-size:192.266667pt;}
.fs2a{font-size:236.266667pt;}
.fs5{font-size:236.400000pt;}
.fs32{font-size:256.400000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:13.043604pt;}
.y3{bottom:13.800000pt;}
.y22{bottom:14.039642pt;}
.yf8{bottom:15.135968pt;}
.yf5{bottom:15.135972pt;}
.yf2{bottom:16.479642pt;}
.yec{bottom:17.823319pt;}
.yb0{bottom:19.906211pt;}
.yef{bottom:20.533067pt;}
.y98{bottom:20.832238pt;}
.ye9{bottom:21.204898pt;}
.ye6{bottom:21.204900pt;}
.y96{bottom:21.789133pt;}
.y5a{bottom:28.810920pt;}
.y2{bottom:32.800000pt;}
.yf7{bottom:36.030070pt;}
.yf4{bottom:36.030074pt;}
.yf1{bottom:37.373744pt;}
.y97{bottom:37.531593pt;}
.y95{bottom:38.457620pt;}
.yeb{bottom:38.717422pt;}
.yee{bottom:41.427169pt;}
.ye8{bottom:42.099000pt;}
.ye5{bottom:42.099003pt;}
.y21{bottom:43.378919pt;}
.y1{bottom:51.833333pt;}
.yae{bottom:52.378894pt;}
.y41{bottom:53.855958pt;}
.y3e{bottom:53.855962pt;}
.y59{bottom:53.971044pt;}
.y8c{bottom:57.894958pt;}
.yf6{bottom:58.939680pt;}
.yf3{bottom:58.939685pt;}
.yf0{bottom:60.283355pt;}
.yea{bottom:61.627033pt;}
.yed{bottom:64.336780pt;}
.ye7{bottom:65.008611pt;}
.ye4{bottom:65.008613pt;}
.y94{bottom:67.226194pt;}
.ye0{bottom:69.412458pt;}
.ya9{bottom:72.782356pt;}
.y8a{bottom:72.824032pt;}
.y40{bottom:73.722775pt;}
.y3d{bottom:73.722778pt;}
.y20{bottom:73.763538pt;}
.y8e{bottom:74.442925pt;}
.ydb{bottom:75.607862pt;}
.y30{bottom:75.854220pt;}
.y1f{bottom:75.854223pt;}
.y7e{bottom:76.985373pt;}
.ybe{bottom:82.490868pt;}
.yaf{bottom:82.999522pt;}
.y58{bottom:87.517873pt;}
.y8b{bottom:88.461786pt;}
.yc0{bottom:88.957076pt;}
.ya8{bottom:89.481711pt;}
.y77{bottom:91.184907pt;}
.y7{bottom:91.833333pt;}
.y3f{bottom:93.589591pt;}
.y3c{bottom:93.589595pt;}
.y3b{bottom:94.507440pt;}
.y2f{bottom:96.795913pt;}
.y6e{bottom:97.300000pt;}
.yda{bottom:98.233067pt;}
.y7d{bottom:103.205505pt;}
.yad{bottom:107.107093pt;}
.ybf{bottom:110.555418pt;}
.y32{bottom:111.766667pt;}
.yb6{bottom:113.589282pt;}
.y6f{bottom:114.539058pt;}
.y76{bottom:117.405039pt;}
.y2e{bottom:117.737605pt;}
.ya7{bottom:121.954394pt;}
.y5c{bottom:125.275460pt;}
.y31{bottom:126.800000pt;}
.yff{bottom:128.733333pt;}
.y7c{bottom:129.389330pt;}
.y6{bottom:130.866667pt;}
.yac{bottom:131.213430pt;}
.y1a{bottom:135.000000pt;}
.ya6{bottom:138.658687pt;}
.y6d{bottom:140.373333pt;}
.y87{bottom:141.600000pt;}
.y75{bottom:143.588865pt;}
.y65{bottom:148.066667pt;}
.y19{bottom:148.826667pt;}
.y5b{bottom:150.430018pt;}
.yd5{bottom:150.704375pt;}
.y9d{bottom:153.499814pt;}
.y7b{bottom:155.605108pt;}
.yc8{bottom:157.892413pt;}
.y1c{bottom:164.913209pt;}
.y89{bottom:165.915379pt;}
.y10{bottom:169.493333pt;}
.y74{bottom:169.811904pt;}
.y4d{bottom:173.054075pt;}
.ye3{bottom:174.850225pt;}
.yd4{bottom:178.470738pt;}
.y2d{bottom:178.502657pt;}
.yc7{bottom:181.551326pt;}
.y7a{bottom:181.825244pt;}
.y57{bottom:181.888870pt;}
.ybb{bottom:183.169721pt;}
.y6c{bottom:183.426667pt;}
.y86{bottom:184.666667pt;}
.y1b{bottom:185.861870pt;}
.y9b{bottom:185.947803pt;}
.y88{bottom:187.336028pt;}
.yab{bottom:188.750578pt;}
.y64{bottom:191.133333pt;}
.y18{bottom:191.893333pt;}
.y23{bottom:192.133922pt;}
.y4c{bottom:192.927850pt;}
.y73{bottom:196.032043pt;}
.yba{bottom:199.862903pt;}
.yd3{bottom:201.130172pt;}
.y79{bottom:208.045383pt;}
.ya3{bottom:211.938295pt;}
.y4b{bottom:212.829459pt;}
.y56{bottom:214.502878pt;}
.y9c{bottom:214.716377pt;}
.yf{bottom:217.560000pt;}
.y72{bottom:222.252179pt;}
.yd2{bottom:222.721669pt;}
.y1e{bottom:225.682446pt;}
.yd0{bottom:225.802256pt;}
.y6b{bottom:227.506667pt;}
.y85{bottom:227.693333pt;}
.yfe{bottom:227.866667pt;}
.ya2{bottom:228.631477pt;}
.yb9{bottom:230.483531pt;}
.y46{bottom:231.645525pt;}
.y4a{bottom:231.645529pt;}
.yaa{bottom:232.335585pt;}
.ycd{bottom:232.990294pt;}
.y63{bottom:234.200000pt;}
.y78{bottom:234.236467pt;}
.y17{bottom:235.933333pt;}
.yd1{bottom:244.326857pt;}
.y1d{bottom:246.631107pt;}
.yc2{bottom:247.407444pt;}
.y45{bottom:251.519299pt;}
.y49{bottom:251.519305pt;}
.ycc{bottom:255.649728pt;}
.ye2{bottom:259.310871pt;}
.yb5{bottom:260.153438pt;}
.ya5{bottom:262.005492pt;}
.ye{bottom:265.640000pt;}
.yc1{bottom:268.998941pt;}
.y6a{bottom:270.533333pt;}
.y44{bottom:271.379158pt;}
.y48{bottom:271.379162pt;}
.y84{bottom:271.760000pt;}
.y2c{bottom:278.061064pt;}
.y62{bottom:278.266667pt;}
.ya4{bottom:278.698673pt;}
.ycf{bottom:289.577267pt;}
.y43{bottom:291.252933pt;}
.y47{bottom:291.252937pt;}
.y103{bottom:292.933333pt;}
.y16{bottom:293.026667pt;}
.y2b{bottom:298.995787pt;}
.y93{bottom:300.059031pt;}
.y71{bottom:300.869025pt;}
.ydd{bottom:307.061313pt;}
.yc4{bottom:313.263563pt;}
.y69{bottom:313.600000pt;}
.yd{bottom:313.693333pt;}
.y83{bottom:314.840000pt;}
.y61{bottom:321.306667pt;}
.yb8{bottom:323.246749pt;}
.ydc{bottom:325.585913pt;}
.yfd{bottom:326.000000pt;}
.yd9{bottom:327.667022pt;}
.y70{bottom:329.268120pt;}
.y4e{bottom:329.942778pt;}
.y92{bottom:330.654965pt;}
.y102{bottom:334.000000pt;}
.y2a{bottom:334.648931pt;}
.y26{bottom:338.830305pt;}
.yb7{bottom:339.939930pt;}
.yc3{bottom:339.989372pt;}
.yce{bottom:341.016235pt;}
.y3a{bottom:342.693333pt;}
.y15{bottom:350.093333pt;}
.yd8{bottom:350.299072pt;}
.y5{bottom:354.973333pt;}
.y29{bottom:355.583654pt;}
.y68{bottom:356.666667pt;}
.y82{bottom:357.906667pt;}
.yc6{bottom:358.513973pt;}
.y25{bottom:359.765028pt;}
.yc{bottom:361.773333pt;}
.y60{bottom:364.360000pt;}
.y91{bottom:366.831756pt;}
.yd7{bottom:372.917431pt;}
.yfc{bottom:375.066667pt;}
.y101{bottom:376.066667pt;}
.yc5{bottom:380.105469pt;}
.y24{bottom:380.741565pt;}
.y39{bottom:380.773333pt;}
.yb3{bottom:386.303018pt;}
.y53{bottom:386.404899pt;}
.ycb{bottom:389.388307pt;}
.y28{bottom:391.194984pt;}
.yd6{bottom:396.576345pt;}
.y67{bottom:399.733333pt;}
.y81{bottom:400.973333pt;}
.yb2{bottom:402.082519pt;}
.y14{bottom:406.173333pt;}
.y52{bottom:407.350298pt;}
.y5f{bottom:407.440000pt;}
.yb4{bottom:408.564709pt;}
.yb{bottom:409.840000pt;}
.yfb{bottom:411.106667pt;}
.yca{bottom:412.006666pt;}
.y27{bottom:412.171522pt;}
.y4{bottom:413.040000pt;}
.ya1{bottom:416.923646pt;}
.yb1{bottom:417.849673pt;}
.y38{bottom:419.800000pt;}
.y51{bottom:427.224072pt;}
.yc9{bottom:431.558129pt;}
.y66{bottom:443.800000pt;}
.y80{bottom:444.000000pt;}
.y50{bottom:447.083932pt;}
.ya0{bottom:449.396329pt;}
.y5e{bottom:450.506667pt;}
.ydf{bottom:456.271288pt;}
.y37{bottom:457.866667pt;}
.ya{bottom:457.893333pt;}
.yfa{bottom:460.173333pt;}
.y9a{bottom:460.508653pt;}
.y13{bottom:463.266667pt;}
.y100{bottom:466.306667pt;}
.y4f{bottom:466.957707pt;}
.yde{bottom:477.862784pt;}
.y9f{bottom:481.844317pt;}
.y99{bottom:487.425173pt;}
.y7f{bottom:488.066667pt;}
.y5d{bottom:494.560000pt;}
.y36{bottom:495.893333pt;}
.yf9{bottom:496.226667pt;}
.y54{bottom:501.472384pt;}
.y9{bottom:505.973333pt;}
.y9e{bottom:505.982756pt;}
.y12{bottom:507.333333pt;}
.y90{bottom:514.316999pt;}
.y55{bottom:521.800000pt;}
.y8f{bottom:531.010181pt;}
.y35{bottom:534.973333pt;}
.y11{bottom:550.360000pt;}
.y34{bottom:573.026667pt;}
.y8{bottom:595.600000pt;}
.ye1{bottom:596.666667pt;}
.ybd{bottom:613.973333pt;}
.ybc{bottom:622.600000pt;}
.y8d{bottom:628.000000pt;}
.y33{bottom:632.466667pt;}
.h2e{height:38.893137pt;}
.h2f{height:38.985739pt;}
.h2c{height:41.671218pt;}
.h2b{height:41.763821pt;}
.h30{height:42.813318pt;}
.h2d{height:44.541902pt;}
.h1{height:46.781250pt;}
.h2{height:46.878711pt;}
.hc{height:47.144941pt;}
.hd{height:47.249475pt;}
.h14{height:47.742188pt;}
.h13{height:49.284961pt;}
.h19{height:50.206333pt;}
.h10{height:50.385502pt;}
.h12{height:52.599901pt;}
.h3d{height:54.553090pt;}
.h3b{height:54.620274pt;}
.hf{height:56.098785pt;}
.h33{height:58.633852pt;}
.h34{height:58.736538pt;}
.h1e{height:62.848110pt;}
.h1f{height:62.952509pt;}
.h32{height:64.795027pt;}
.h36{height:64.897713pt;}
.h26{height:65.477710pt;}
.h25{height:65.586658pt;}
.h1d{height:65.980076pt;}
.h11{height:66.065638pt;}
.h35{height:67.875615pt;}
.h23{height:68.855097pt;}
.h9{height:72.638672pt;}
.ha{height:72.753971pt;}
.he{height:73.709838pt;}
.h3c{height:74.775357pt;}
.h3a{height:74.842540pt;}
.h1c{height:75.480372pt;}
.h29{height:78.873753pt;}
.h27{height:81.253320pt;}
.h21{height:83.130924pt;}
.h20{height:83.365625pt;}
.h17{height:83.681445pt;}
.h16{height:86.009766pt;}
.h15{height:86.146289pt;}
.h8{height:93.771875pt;}
.h7{height:94.499792pt;}
.h39{height:97.013131pt;}
.h42{height:100.425846pt;}
.h41{height:100.709375pt;}
.h4{height:110.802799pt;}
.h5{height:110.918099pt;}
.h24{height:121.324423pt;}
.h3f{height:128.097721pt;}
.h3{height:128.146484pt;}
.h3e{height:128.213021pt;}
.h1a{height:128.459375pt;}
.h37{height:157.472656pt;}
.h6{height:157.561523pt;}
.h40{height:170.891602pt;}
.h38{height:216.331239pt;}
.h1b{height:235.941429pt;}
.h28{height:252.282643pt;}
.h22{height:436.881274pt;}
.hb{height:440.995102pt;}
.h18{height:522.939154pt;}
.h31{height:533.968528pt;}
.h2a{height:550.060076pt;}
.h0{height:720.000000pt;}
.w6{width:463.284864pt;}
.w5{width:491.902578pt;}
.w3{width:495.957037pt;}
.w2{width:573.817099pt;}
.w4{width:640.262516pt;}
.w7{width:1103.072576pt;}
.w8{width:1119.550618pt;}
.w9{width:1130.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x9e{left:-8.065623pt;}
.x9d{left:-4.133914pt;}
.x0{left:0.000000pt;}
.x8e{left:11.104024pt;}
.x8d{left:14.877750pt;}
.x8c{left:17.867702pt;}
.x57{left:22.780151pt;}
.x90{left:23.760519pt;}
.x9{left:26.616983pt;}
.x4e{left:27.965191pt;}
.x73{left:31.139516pt;}
.xe{left:32.700174pt;}
.x56{left:33.653382pt;}
.x4{left:40.499981pt;}
.x1{left:41.699981pt;}
.x91{left:44.545042pt;}
.x7c{left:49.333314pt;}
.x50{left:51.886486pt;}
.x74{left:53.279715pt;}
.x92{left:56.475824pt;}
.x1e{left:57.733314pt;}
.x4f{left:59.480683pt;}
.x7d{left:60.449382pt;}
.x35{left:62.403699pt;}
.x31{left:64.181069pt;}
.x97{left:67.466648pt;}
.xf{left:69.982735pt;}
.x20{left:71.533314pt;}
.x58{left:74.178126pt;}
.x23{left:77.392955pt;}
.x22{left:80.131152pt;}
.x2b{left:83.040465pt;}
.x6{left:88.066648pt;}
.x76{left:93.198708pt;}
.x2c{left:95.362380pt;}
.x51{left:96.681773pt;}
.x5{left:97.666648pt;}
.x2{left:101.999981pt;}
.x72{left:108.584781pt;}
.xa7{left:111.033314pt;}
.x10{left:115.857002pt;}
.x59{left:118.246511pt;}
.x7{left:124.099981pt;}
.x33{left:125.551046pt;}
.x3d{left:127.699981pt;}
.x5a{left:135.352920pt;}
.x13{left:141.048970pt;}
.x14{left:145.442014pt;}
.x99{left:161.114742pt;}
.x30{left:171.415952pt;}
.x47{left:176.152653pt;}
.x46{left:177.882416pt;}
.x49{left:178.862634pt;}
.x34{left:181.999082pt;}
.x15{left:184.077477pt;}
.x40{left:186.170872pt;}
.x32{left:192.527481pt;}
.x3f{left:194.026893pt;}
.x48{left:195.396320pt;}
.x2f{left:197.360444pt;}
.x1c{left:200.794372pt;}
.x2e{left:204.712516pt;}
.x1d{left:208.694076pt;}
.xc{left:211.151070pt;}
.x11{left:215.069822pt;}
.x2d{left:218.033869pt;}
.x4a{left:220.117583pt;}
.xd{left:227.121535pt;}
.xa{left:229.345271pt;}
.x1f{left:231.959981pt;}
.x55{left:233.969184pt;}
.xb{left:237.042818pt;}
.x3{left:250.666648pt;}
.x93{left:258.428229pt;}
.x38{left:266.537690pt;}
.x94{left:270.562210pt;}
.x25{left:276.426061pt;}
.x8f{left:278.318670pt;}
.x39{left:284.120108pt;}
.x4d{left:289.102242pt;}
.x24{left:299.563871pt;}
.x7f{left:302.923365pt;}
.x75{left:303.945536pt;}
.x95{left:312.305425pt;}
.x27{left:313.254857pt;}
.x26{left:317.334812pt;}
.x2a{left:323.016558pt;}
.x45{left:325.273007pt;}
.x7e{left:328.306027pt;}
.x28{left:330.409700pt;}
.x3a{left:331.790029pt;}
.x42{left:338.030022pt;}
.x41{left:341.806675pt;}
.x9a{left:349.153836pt;}
.x36{left:352.414773pt;}
.x29{left:356.217263pt;}
.x43{left:358.498936pt;}
.x9b{left:363.829226pt;}
.x44{left:371.328051pt;}
.x12{left:375.909665pt;}
.x37{left:378.493326pt;}
.x53{left:387.478602pt;}
.x54{left:389.598731pt;}
.xa9{left:415.359981pt;}
.x1a{left:417.274258pt;}
.x16{left:425.080657pt;}
.x1b{left:429.046061pt;}
.x17{left:441.642045pt;}
.x18{left:443.772478pt;}
.x19{left:448.639815pt;}
.xa8{left:450.559981pt;}
.x88{left:492.399251pt;}
.x98{left:502.962337pt;}
.x96{left:508.945590pt;}
.x87{left:512.893487pt;}
.x86{left:517.305842pt;}
.x69{left:528.763963pt;}
.x6d{left:536.032976pt;}
.x6c{left:537.486778pt;}
.x6f{left:541.242436pt;}
.x6a{left:546.476123pt;}
.x68{left:549.238347pt;}
.x9c{left:562.688388pt;}
.x71{left:574.377016pt;}
.x6b{left:576.315417pt;}
.x6e{left:583.184635pt;}
.x77{left:590.853440pt;}
.x78{left:602.144639pt;}
.x70{left:608.541372pt;}
.x5d{left:624.109169pt;}
.x5b{left:627.283304pt;}
.x5f{left:631.983933pt;}
.x8{left:662.226648pt;}
.x4b{left:663.333314pt;}
.x82{left:671.889277pt;}
.x5c{left:687.676679pt;}
.x5e{left:688.888181pt;}
.x4c{left:693.333314pt;}
.x3e{left:700.571846pt;}
.x83{left:705.817978pt;}
.x3b{left:714.199981pt;}
.x84{left:729.505368pt;}
.xa2{left:734.623196pt;}
.xa3{left:738.604335pt;}
.x3c{left:744.226648pt;}
.x21{left:762.543132pt;}
.x52{left:771.585308pt;}
.x61{left:787.298491pt;}
.x60{left:795.197484pt;}
.x85{left:798.674864pt;}
.x8a{left:871.281356pt;}
.x89{left:874.149387pt;}
.x9f{left:878.797885pt;}
.x63{left:881.735071pt;}
.xa1{left:885.537961pt;}
.x67{left:888.858704pt;}
.x62{left:891.669387pt;}
.x66{left:893.329147pt;}
.xa0{left:895.710980pt;}
.x79{left:897.484597pt;}
.x7b{left:900.755653pt;}
.x7a{left:901.967155pt;}
.x8b{left:909.018618pt;}
.x65{left:912.870674pt;}
.x64{left:917.958982pt;}
.x81{left:1006.171746pt;}
.xa5{left:1011.909866pt;}
.x80{left:1018.282504pt;}
.xa6{left:1029.838465pt;}
.xa4{left:1038.825230pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  