
    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_17d7a87ee9a20d27d1f58ce9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914551;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_a3d045c5e9086baca13378e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_9031fe5dedc11f76d3dd54d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_33d6659870af9eaf518ef528.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_93a8c1e65060448e11d8f4e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_ff23aeb62adf31c9a5b0a4c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_2442944095aff9fd2a1eeb2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_44df61b8a9e0fb42ede48fac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_f95d81f20a6a4b8ea393a015.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.028800px;}
.ls8{letter-spacing:-0.021600px;}
.lsb{letter-spacing:-0.014400px;}
.ls23{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.010800px;}
.lsa{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.021600px;}
.ls21{letter-spacing:0.028800px;}
.ls22{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.043200px;}
.ls4{letter-spacing:0.057600px;}
.ls51{letter-spacing:0.154512px;}
.ls50{letter-spacing:0.165168px;}
.ls46{letter-spacing:0.166320px;}
.ls2b{letter-spacing:0.166920px;}
.ls57{letter-spacing:0.181152px;}
.ls4a{letter-spacing:0.191808px;}
.ls3a{letter-spacing:0.207792px;}
.ls58{letter-spacing:0.223776px;}
.ls5a{letter-spacing:0.228120px;}
.ls29{letter-spacing:0.228720px;}
.ls39{letter-spacing:0.229104px;}
.ls2a{letter-spacing:0.230160px;}
.ls34{letter-spacing:0.239760px;}
.ls61{letter-spacing:0.276000px;}
.ls1d{letter-spacing:0.278640px;}
.ls35{letter-spacing:0.287712px;}
.ls2d{letter-spacing:0.290520px;}
.ls68{letter-spacing:0.291600px;}
.ls13{letter-spacing:0.294624px;}
.ls44{letter-spacing:0.298368px;}
.ls64{letter-spacing:0.304560px;}
.ls33{letter-spacing:0.309024px;}
.lse{letter-spacing:0.324000px;}
.ls2f{letter-spacing:0.325008px;}
.ls4e{letter-spacing:0.325560px;}
.ls53{letter-spacing:0.326160px;}
.ls43{letter-spacing:0.330336px;}
.ls6f{letter-spacing:0.330480px;}
.ls49{letter-spacing:0.335664px;}
.ls3f{letter-spacing:0.340992px;}
.ls3d{letter-spacing:0.346320px;}
.ls11{letter-spacing:0.349200px;}
.ls3b{letter-spacing:0.351648px;}
.ls3c{letter-spacing:0.356976px;}
.ls38{letter-spacing:0.367632px;}
.ls6d{letter-spacing:0.377400px;}
.ls40{letter-spacing:0.388944px;}
.ls31{letter-spacing:0.394272px;}
.ls59{letter-spacing:0.399000px;}
.ls32{letter-spacing:0.399600px;}
.ls16{letter-spacing:0.401760px;}
.ls3e{letter-spacing:0.404928px;}
.ls6{letter-spacing:0.419184px;}
.ls36{letter-spacing:0.431568px;}
.ls4b{letter-spacing:0.436896px;}
.ls5f{letter-spacing:0.442224px;}
.ls69{letter-spacing:0.447552px;}
.ls4f{letter-spacing:0.452880px;}
.ls2e{letter-spacing:0.458208px;}
.ls37{letter-spacing:0.474192px;}
.ls62{letter-spacing:0.477000px;}
.ls63{letter-spacing:0.479520px;}
.ls5e{letter-spacing:0.495504px;}
.ls7{letter-spacing:0.495936px;}
.ls67{letter-spacing:0.498960px;}
.ls30{letter-spacing:0.500832px;}
.ls71{letter-spacing:0.531360px;}
.ls2c{letter-spacing:0.564768px;}
.ls17{letter-spacing:0.570240px;}
.ls65{letter-spacing:0.576720px;}
.ls74{letter-spacing:0.583200px;}
.ls14{letter-spacing:0.596160px;}
.ls1c{letter-spacing:0.602640px;}
.ls52{letter-spacing:0.612720px;}
.ls18{letter-spacing:0.622080px;}
.ls76{letter-spacing:0.628560px;}
.ls42{letter-spacing:0.628704px;}
.ls6e{letter-spacing:0.641520px;}
.ls70{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.654480px;}
.ls66{letter-spacing:0.667440px;}
.ls19{letter-spacing:0.673920px;}
.ls79{letter-spacing:0.680400px;}
.ls73{letter-spacing:0.745200px;}
.ls75{letter-spacing:0.751680px;}
.ls15{letter-spacing:0.777600px;}
.ls1a{letter-spacing:0.829440px;}
.ls12{letter-spacing:0.855360px;}
.ls72{letter-spacing:0.952560px;}
.ls10{letter-spacing:1.638600px;}
.ls60{letter-spacing:2.051400px;}
.ls54{letter-spacing:2.090520px;}
.ls5d{letter-spacing:2.459520px;}
.ls56{letter-spacing:2.464920px;}
.ls41{letter-spacing:2.616120px;}
.ls4c{letter-spacing:2.944320px;}
.ls55{letter-spacing:4.124520px;}
.ls5c{letter-spacing:4.401720px;}
.ls48{letter-spacing:5.233920px;}
.ls26{letter-spacing:7.156080px;}
.ls45{letter-spacing:8.646720px;}
.ls47{letter-spacing:9.010320px;}
.ls4d{letter-spacing:9.493320px;}
.ls25{letter-spacing:12.454800px;}
.ls24{letter-spacing:12.455220px;}
.ls28{letter-spacing:17.650800px;}
.ls6b{letter-spacing:27.984000px;}
.ls77{letter-spacing:32.261400px;}
.ls1e{letter-spacing:32.261640px;}
.ls78{letter-spacing:34.942800px;}
.ls6a{letter-spacing:38.906760px;}
.ls6c{letter-spacing:44.496000px;}
.ls20{letter-spacing:54.867120px;}
.lsd{letter-spacing:66.276360px;}
.ls5b{letter-spacing:76.656360px;}
.lsf{letter-spacing:98.825400px;}
.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;}
}
.wse7{word-spacing:-18.694800px;}
.wse2{word-spacing:-1.017360px;}
.ws1c{word-spacing:-0.920160px;}
.ws19{word-spacing:-0.894240px;}
.ws13{word-spacing:-0.842400px;}
.wse5{word-spacing:-0.816480px;}
.wse3{word-spacing:-0.810000px;}
.ws18{word-spacing:-0.738720px;}
.wsc6{word-spacing:-0.732240px;}
.ws1a{word-spacing:-0.719280px;}
.wse0{word-spacing:-0.712800px;}
.wsde{word-spacing:-0.706320px;}
.wse6{word-spacing:-0.693360px;}
.ws17{word-spacing:-0.686880px;}
.ws8a{word-spacing:-0.681984px;}
.ws1b{word-spacing:-0.667440px;}
.wsae{word-spacing:-0.666000px;}
.ws12{word-spacing:-0.660960px;}
.wse4{word-spacing:-0.648000px;}
.wsc5{word-spacing:-0.641520px;}
.ws16{word-spacing:-0.635040px;}
.ws83{word-spacing:-0.618048px;}
.wse1{word-spacing:-0.596160px;}
.wsc7{word-spacing:-0.563760px;}
.ws2{word-spacing:-0.554976px;}
.ws76{word-spacing:-0.554112px;}
.wsb9{word-spacing:-0.548784px;}
.wsc3{word-spacing:-0.544320px;}
.ws7d{word-spacing:-0.527472px;}
.ws74{word-spacing:-0.511488px;}
.ws9d{word-spacing:-0.506160px;}
.wsc9{word-spacing:-0.500832px;}
.wsbe{word-spacing:-0.495504px;}
.ws9c{word-spacing:-0.490176px;}
.ws7c{word-spacing:-0.484848px;}
.ws1{word-spacing:-0.478224px;}
.ws15{word-spacing:-0.466560px;}
.ws86{word-spacing:-0.458208px;}
.ws78{word-spacing:-0.452880px;}
.ws77{word-spacing:-0.447552px;}
.ws89{word-spacing:-0.442224px;}
.ws8c{word-spacing:-0.420912px;}
.ws84{word-spacing:-0.410256px;}
.ws81{word-spacing:-0.404928px;}
.ws85{word-spacing:-0.399600px;}
.wsdf{word-spacing:-0.395280px;}
.ws88{word-spacing:-0.394272px;}
.ws11{word-spacing:-0.389664px;}
.ws93{word-spacing:-0.388944px;}
.ws14{word-spacing:-0.388800px;}
.ws8b{word-spacing:-0.383616px;}
.ws75{word-spacing:-0.378288px;}
.wsc4{word-spacing:-0.369360px;}
.ws79{word-spacing:-0.362304px;}
.wsc8{word-spacing:-0.356400px;}
.ws90{word-spacing:-0.351648px;}
.ws1d{word-spacing:-0.343440px;}
.ws7b{word-spacing:-0.340992px;}
.ws7a{word-spacing:-0.293040px;}
.ws87{word-spacing:-0.282384px;}
.wsb2{word-spacing:-0.277056px;}
.wsb4{word-spacing:-0.261072px;}
.ws96{word-spacing:-0.245088px;}
.wsaf{word-spacing:-0.234432px;}
.wsab{word-spacing:-0.218448px;}
.wsad{word-spacing:-0.207792px;}
.ws0{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.129600px;}
.ws50{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.100800px;}
.ws6{word-spacing:-0.093600px;}
.ws8{word-spacing:-0.086400px;}
.ws3{word-spacing:-0.079200px;}
.ws5{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.064800px;}
.ws9{word-spacing:-0.057600px;}
.ws91{word-spacing:-0.053280px;}
.ws4{word-spacing:-0.050400px;}
.ws7{word-spacing:-0.043200px;}
.ws35{word-spacing:-0.036000px;}
.wsb{word-spacing:0.000000px;}
.ws92{word-spacing:7.805520px;}
.ws8f{word-spacing:7.917408px;}
.wsa4{word-spacing:8.130528px;}
.ws99{word-spacing:8.178480px;}
.ws9b{word-spacing:8.498160px;}
.ws98{word-spacing:8.599392px;}
.wsb6{word-spacing:8.615376px;}
.wsa6{word-spacing:8.764560px;}
.wsa5{word-spacing:8.988336px;}
.wsc2{word-spacing:9.254736px;}
.ws9e{word-spacing:9.398592px;}
.wsa1{word-spacing:9.457200px;}
.wsa2{word-spacing:9.558432px;}
.wsa8{word-spacing:9.664992px;}
.ws9f{word-spacing:10.426896px;}
.ws63{word-spacing:10.548000px;}
.wsac{word-spacing:10.783872px;}
.ws24{word-spacing:10.807200px;}
.ws6c{word-spacing:10.886400px;}
.wsbd{word-spacing:11.050272px;}
.ws1f{word-spacing:11.066400px;}
.wsdc{word-spacing:11.152800px;}
.ws6a{word-spacing:11.217600px;}
.wscd{word-spacing:11.253600px;}
.wsce{word-spacing:11.305800px;}
.ws7f{word-spacing:11.492496px;}
.ws2d{word-spacing:11.512800px;}
.ws80{word-spacing:11.513808px;}
.ws34{word-spacing:11.541600px;}
.ws57{word-spacing:11.613600px;}
.ws25{word-spacing:11.642400px;}
.ws10{word-spacing:11.728800px;}
.ws49{word-spacing:11.743200px;}
.wsa9{word-spacing:11.758176px;}
.wsaa{word-spacing:11.758896px;}
.ws66{word-spacing:11.815200px;}
.wsd6{word-spacing:11.840400px;}
.ws82{word-spacing:11.849472px;}
.wsd7{word-spacing:11.872800px;}
.wsd5{word-spacing:11.887200px;}
.wscb{word-spacing:11.901600px;}
.wsd8{word-spacing:11.944800px;}
.ws8d{word-spacing:12.014640px;}
.ws20{word-spacing:12.146400px;}
.ws58{word-spacing:12.384000px;}
.ws26{word-spacing:12.535200px;}
.ws95{word-spacing:12.648672px;}
.ws71{word-spacing:12.736800px;}
.ws39{word-spacing:12.960000px;}
.ws56{word-spacing:13.132800px;}
.ws55{word-spacing:13.137000px;}
.ws54{word-spacing:13.140000px;}
.ws73{word-spacing:13.161600px;}
.ws28{word-spacing:13.168800px;}
.ws6b{word-spacing:13.370400px;}
.ws6d{word-spacing:13.428000px;}
.ws44{word-spacing:13.514400px;}
.ws23{word-spacing:13.629600px;}
.wse{word-spacing:13.816800px;}
.wsb8{word-spacing:13.826160px;}
.wscf{word-spacing:14.004000px;}
.wsb7{word-spacing:14.023296px;}
.ws43{word-spacing:14.227200px;}
.ws2a{word-spacing:14.472000px;}
.ws5b{word-spacing:14.536800px;}
.ws5a{word-spacing:14.555400px;}
.wsb0{word-spacing:14.604048px;}
.wsdb{word-spacing:14.659200px;}
.ws65{word-spacing:14.702400px;}
.wsda{word-spacing:14.738400px;}
.ws40{word-spacing:14.868000px;}
.ws51{word-spacing:15.314400px;}
.ws61{word-spacing:15.400800px;}
.wsbf{word-spacing:15.419232px;}
.wsa7{word-spacing:15.621696px;}
.ws46{word-spacing:15.652800px;}
.ws2e{word-spacing:16.106400px;}
.ws2f{word-spacing:16.279200px;}
.wsbc{word-spacing:16.436880px;}
.ws59{word-spacing:16.437600px;}
.ws72{word-spacing:16.920000px;}
.ws7e{word-spacing:17.108208px;}
.wsd{word-spacing:17.143200px;}
.ws67{word-spacing:17.186400px;}
.ws3c{word-spacing:17.409600px;}
.wsdd{word-spacing:17.445600px;}
.ws3b{word-spacing:17.460000px;}
.ws62{word-spacing:17.575200px;}
.wsb3{word-spacing:17.598384px;}
.ws8e{word-spacing:17.662320px;}
.ws69{word-spacing:17.892000px;}
.wscc{word-spacing:17.906400px;}
.ws3f{word-spacing:18.338400px;}
.ws3e{word-spacing:18.344400px;}
.ws3d{word-spacing:18.396000px;}
.wsd4{word-spacing:19.051200px;}
.ws48{word-spacing:19.180800px;}
.wsd3{word-spacing:19.281600px;}
.wsd1{word-spacing:19.284000px;}
.wsd2{word-spacing:19.288800px;}
.ws68{word-spacing:19.483200px;}
.ws36{word-spacing:19.655100px;}
.ws38{word-spacing:19.692000px;}
.ws37{word-spacing:19.735200px;}
.ws97{word-spacing:19.825488px;}
.wsa0{word-spacing:19.894752px;}
.ws41{word-spacing:19.965600px;}
.wsbb{word-spacing:20.326320px;}
.ws42{word-spacing:20.779200px;}
.ws5c{word-spacing:20.872800px;}
.ws45{word-spacing:20.901600px;}
.ws47{word-spacing:20.923200px;}
.ws9a{word-spacing:20.976336px;}
.ws52{word-spacing:21.031200px;}
.ws64{word-spacing:21.492000px;}
.wsca{word-spacing:22.053600px;}
.ws53{word-spacing:22.219200px;}
.ws33{word-spacing:22.363200px;}
.ws30{word-spacing:22.370400px;}
.ws32{word-spacing:22.406400px;}
.wsd9{word-spacing:23.911200px;}
.ws3a{word-spacing:24.084000px;}
.ws2c{word-spacing:24.120000px;}
.ws4c{word-spacing:24.732000px;}
.wsd0{word-spacing:24.818400px;}
.ws27{word-spacing:24.861600px;}
.ws70{word-spacing:25.086600px;}
.ws6f{word-spacing:25.116600px;}
.ws6e{word-spacing:25.149600px;}
.ws29{word-spacing:25.401600px;}
.wsb5{word-spacing:25.611696px;}
.wsa3{word-spacing:29.756880px;}
.wsf{word-spacing:30.276000px;}
.ws5f{word-spacing:30.340800px;}
.ws60{word-spacing:30.384000px;}
.ws5e{word-spacing:30.391200px;}
.wsc1{word-spacing:30.662640px;}
.wsc0{word-spacing:30.870432px;}
.ws94{word-spacing:30.886416px;}
.ws4d{word-spacing:31.284900px;}
.ws4e{word-spacing:31.312800px;}
.ws4f{word-spacing:31.320000px;}
.ws22{word-spacing:31.600800px;}
.ws21{word-spacing:31.673400px;}
.ws31{word-spacing:32.486400px;}
.ws4b{word-spacing:37.555200px;}
.wsba{word-spacing:38.761200px;}
.ws4a{word-spacing:40.917600px;}
.ws5d{word-spacing:41.364000px;}
.wsb1{word-spacing:44.616672px;}
.ws2b{word-spacing:47.772000px;}
._12{margin-left:-1865.430000px;}
._10{margin-left:-494.077092px;}
._13{margin-left:-104.464080px;}
._11{margin-left:-89.540640px;}
._5{margin-left:-15.587412px;}
._c{margin-left:-13.162380px;}
._9{margin-left:-11.879352px;}
._b{margin-left:-10.204656px;}
._8{margin-left:-9.174264px;}
._6{margin-left:-6.607200px;}
._7{margin-left:-5.519112px;}
._a{margin-left:-4.460532px;}
._0{margin-left:-1.224288px;}
._1{width:1.159200px;}
._3{width:2.855700px;}
._2{width:3.931200px;}
._4{width:5.422500px;}
._d{width:7.027500px;}
._e{width:8.776800px;}
._f{width:10.778400px;}
.fc4{color:rgb(54,95,145);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:53.280000px;}
.fs8{font-size:56.160000px;}
.fs3{font-size:59.040000px;}
.fs4{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:95.040000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:155.520000px;}
.y1d{bottom:-3.419970px;}
.y0{bottom:0.000000px;}
.y10b{bottom:6.119985px;}
.y160{bottom:6.480000px;}
.y1d4{bottom:7.200000px;}
.y1ca{bottom:15.480000px;}
.y1cb{bottom:15.840000px;}
.y1d7{bottom:16.199985px;}
.y1c4{bottom:16.200000px;}
.y1c{bottom:16.380030px;}
.y1c7{bottom:19.080000px;}
.y108{bottom:21.239970px;}
.y126{bottom:21.239985px;}
.ydf{bottom:21.240000px;}
.ye3{bottom:21.600000px;}
.y1d0{bottom:22.680000px;}
.y1cd{bottom:23.040000px;}
.y1ce{bottom:23.400000px;}
.y10a{bottom:25.199985px;}
.y15f{bottom:25.200015px;}
.y18c{bottom:27.000000px;}
.y193{bottom:27.360000px;}
.y1d3{bottom:29.160000px;}
.yf0{bottom:33.120000px;}
.yee{bottom:33.120015px;}
.y1a0{bottom:34.920000px;}
.y110{bottom:39.960000px;}
.y125{bottom:40.319970px;}
.ye2{bottom:40.320000px;}
.y1c6{bottom:41.040000px;}
.y1c8{bottom:41.400000px;}
.y15e{bottom:44.279985px;}
.y1d2{bottom:51.120000px;}
.y1d5{bottom:51.480000px;}
.y242{bottom:52.740030px;}
.y1b{bottom:54.900015px;}
.y165{bottom:55.080000px;}
.yf3{bottom:55.440000px;}
.y128{bottom:55.800000px;}
.yb4{bottom:56.700030px;}
.y88{bottom:58.500030px;}
.yfb{bottom:59.040000px;}
.ye1{bottom:59.400000px;}
.yae{bottom:59.580030px;}
.y1f7{bottom:61.020030px;}
.y1{bottom:61.500000px;}
.y19e{bottom:61.920000px;}
.yce{bottom:62.820030px;}
.y15d{bottom:63.359985px;}
.y1db{bottom:65.340015px;}
.y194{bottom:67.680000px;}
.y191{bottom:68.400000px;}
.y52{bottom:68.580030px;}
.y241{bottom:69.300030px;}
.y1c2{bottom:70.020030px;}
.y164{bottom:74.160000px;}
.y173{bottom:74.520000px;}
.y9d{bottom:74.700030px;}
.ye9{bottom:78.120000px;}
.y6d{bottom:78.660030px;}
.y19d{bottom:81.000000px;}
.y15c{bottom:82.079985px;}
.y240{bottom:85.500030px;}
.y37{bottom:89.460000px;}
.y87{bottom:91.620000px;}
.y139{bottom:93.240000px;}
.y123{bottom:93.959970px;}
.ycd{bottom:95.580000px;}
.y20d{bottom:95.940000px;}
.y10f{bottom:96.840000px;}
.yfa{bottom:97.200000px;}
.y1f6{bottom:99.180000px;}
.y15b{bottom:101.159985px;}
.y23f{bottom:102.060000px;}
.y190{bottom:102.240000px;}
.y1c1{bottom:102.780000px;}
.y1a{bottom:103.140000px;}
.y9c{bottom:107.460000px;}
.yed{bottom:109.920015px;}
.y109{bottom:110.280030px;}
.y6c{bottom:111.420000px;}
.y143{bottom:111.720030px;}
.y138{bottom:111.960000px;}
.ye8{bottom:112.320000px;}
.y1da{bottom:113.580000px;}
.y1a5{bottom:113.940000px;}
.y10e{bottom:115.920000px;}
.y51{bottom:116.460000px;}
.y23e{bottom:118.260000px;}
.y174{bottom:119.640030px;}
.y15a{bottom:119.879985px;}
.y1d6{bottom:120.720030px;}
.y18f{bottom:121.320000px;}
.yb3{bottom:122.580000px;}
.y156{bottom:122.880015px;}
.y86{bottom:124.380000px;}
.y122{bottom:124.680030px;}
.y249{bottom:126.540000px;}
.ycc{bottom:128.700000px;}
.ye7{bottom:131.040000px;}
.y172{bottom:131.400000px;}
.y20c{bottom:134.100000px;}
.y23d{bottom:134.820000px;}
.y10d{bottom:135.000000px;}
.y1c0{bottom:135.900000px;}
.y36{bottom:137.340000px;}
.y159{bottom:138.959985px;}
.y9b{bottom:140.580000px;}
.y6b{bottom:144.540000px;}
.y154{bottom:146.160000px;}
.y107{bottom:148.800030px;}
.ye6{bottom:150.120000px;}
.y19{bottom:151.020000px;}
.y17e{bottom:153.720000px;}
.y11e{bottom:154.080000px;}
.y16d{bottom:154.200000px;}
.y1d1{bottom:154.560000px;}
.y141{bottom:154.620000px;}
.yb2{bottom:155.340000px;}
.yec{bottom:156.360000px;}
.y85{bottom:157.500000px;}
.y158{bottom:158.039985px;}
.y185{bottom:159.660000px;}
.ycb{bottom:161.460000px;}
.y115{bottom:162.720000px;}
.y100{bottom:163.080000px;}
.y50{bottom:164.700000px;}
.y153{bottom:164.880000px;}
.y142{bottom:165.360000px;}
.y23c{bottom:167.580000px;}
.y137{bottom:168.840000px;}
.y1bf{bottom:169.020000px;}
.y171{bottom:169.200000px;}
.y20b{bottom:172.260000px;}
.y9a{bottom:173.340000px;}
.y157{bottom:176.759985px;}
.y6a{bottom:177.300000px;}
.y124{bottom:178.320000px;}
.y106{bottom:183.360000px;}
.y23b{bottom:184.140000px;}
.y35{bottom:185.220000px;}
.y136{bottom:187.920000px;}
.y170{bottom:188.280000px;}
.yb1{bottom:188.460000px;}
.y140{bottom:188.820000px;}
.y1f5{bottom:189.900000px;}
.y84{bottom:190.260000px;}
.yeb{bottom:190.920000px;}
.y1a4{bottom:193.080000px;}
.yca{bottom:194.580000px;}
.y18{bottom:198.900000px;}
.y152{bottom:199.080000px;}
.y23a{bottom:200.340000px;}
.y1be{bottom:201.780000px;}
.y99{bottom:206.460000px;}
.y135{bottom:207.000000px;}
.y1d9{bottom:209.340000px;}
.y69{bottom:210.420000px;}
.y4f{bottom:212.580000px;}
.y239{bottom:216.900000px;}
.y151{bottom:217.800000px;}
.yb0{bottom:221.220000px;}
.y83{bottom:223.380000px;}
.y1cf{bottom:223.680000px;}
.y134{bottom:225.720000px;}
.yea{bottom:225.840000px;}
.y16f{bottom:226.080000px;}
.y104{bottom:226.260000px;}
.yc9{bottom:227.340000px;}
.y121{bottom:231.960000px;}
.y17{bottom:232.020000px;}
.y34{bottom:233.100000px;}
.y1a3{bottom:233.760000px;}
.y1bd{bottom:234.900000px;}
.y105{bottom:237.000000px;}
.y182{bottom:238.800000px;}
.y98{bottom:239.220000px;}
.y68{bottom:243.180000px;}
.y133{bottom:244.800000px;}
.y16e{bottom:245.160000px;}
.y20a{bottom:248.580000px;}
.y238{bottom:249.660000px;}
.yaf{bottom:254.340000px;}
.y82{bottom:256.500000px;}
.y1d8{bottom:257.220000px;}
.y103{bottom:260.100000px;}
.ye5{bottom:260.400000px;}
.y4e{bottom:260.460000px;}
.y132{bottom:263.880000px;}
.y1cc{bottom:264.360000px;}
.y16{bottom:264.780000px;}
.y237{bottom:265.860000px;}
.y120{bottom:266.520000px;}
.y13d{bottom:267.960000px;}
.y97{bottom:272.340000px;}
.y1a2{bottom:274.080000px;}
.y67{bottom:276.300000px;}
.y1f4{bottom:280.260000px;}
.y33{bottom:281.340000px;}
.y236{bottom:282.420000px;}
.y131{bottom:282.600000px;}
.y1bc{bottom:282.780000px;}
.y209{bottom:286.740000px;}
.yad{bottom:287.460000px;}
.y81{bottom:289.260000px;}
.yc8{bottom:293.220000px;}
.y15{bottom:297.900000px;}
.y235{bottom:298.620000px;}
.y11f{bottom:301.440000px;}
.y130{bottom:301.680000px;}
.y96{bottom:305.100000px;}
.y1c9{bottom:305.400000px;}
.y184{bottom:307.560000px;}
.y4d{bottom:308.340000px;}
.y66{bottom:309.420000px;}
.y155{bottom:312.960000px;}
.y1a1{bottom:314.400000px;}
.y234{bottom:315.180000px;}
.y1bb{bottom:315.540000px;}
.yac{bottom:320.220000px;}
.y12f{bottom:320.760000px;}
.y80{bottom:322.380000px;}
.y208{bottom:324.900000px;}
.y1f3{bottom:325.620000px;}
.yc7{bottom:327.060000px;}
.y32{bottom:329.220000px;}
.y14{bottom:330.660000px;}
.y233{bottom:331.380000px;}
.y11d{bottom:336.000000px;}
.y13f{bottom:336.720000px;}
.y95{bottom:338.220000px;}
.y1c5{bottom:338.880000px;}
.y150{bottom:347.880000px;}
.y232{bottom:347.940000px;}
.y1ba{bottom:348.660000px;}
.yab{bottom:353.340000px;}
.y19f{bottom:355.080000px;}
.y7f{bottom:355.140000px;}
.y4c{bottom:356.220000px;}
.y65{bottom:357.300000px;}
.y183{bottom:361.200000px;}
.yc6{bottom:361.260000px;}
.y207{bottom:363.060000px;}
.y13{bottom:363.780000px;}
.y231{bottom:364.140000px;}
.y1f2{bottom:370.620000px;}
.y94{bottom:371.340000px;}
.yff{bottom:372.360000px;}
.y31{bottom:377.100000px;}
.y230{bottom:380.700000px;}
.y1b9{bottom:381.780000px;}
.yaa{bottom:386.100000px;}
.y7e{bottom:388.260000px;}
.y13e{bottom:390.360000px;}
.yc5{bottom:394.020000px;}
.y12{bottom:396.540000px;}
.y22f{bottom:396.900000px;}
.y1c3{bottom:397.920000px;}
.y206{bottom:401.220000px;}
.y19c{bottom:403.320000px;}
.y93{bottom:404.100000px;}
.y4b{bottom:404.460000px;}
.y64{bottom:406.260000px;}
.y22e{bottom:413.460000px;}
.y1b8{bottom:414.540000px;}
.y181{bottom:414.840000px;}
.y1f1{bottom:415.980000px;}
.ya9{bottom:419.220000px;}
.y7d{bottom:421.020000px;}
.ye4{bottom:423.840000px;}
.y30{bottom:424.980000px;}
.yba{bottom:425.700000px;}
.yc4{bottom:428.220000px;}
.y11{bottom:429.660000px;}
.y16c{bottom:431.400000px;}
.y92{bottom:437.220000px;}
.y63{bottom:439.020000px;}
.y205{bottom:439.380000px;}
.y102{bottom:441.480000px;}
.y13c{bottom:444.000000px;}
.y22d{bottom:446.220000px;}
.y245{bottom:447.300000px;}
.yb9{bottom:447.660000px;}
.y180{bottom:449.760000px;}
.ya8{bottom:451.980000px;}
.y4a{bottom:452.340000px;}
.y1f0{bottom:453.780000px;}
.y7c{bottom:454.140000px;}
.ye0{bottom:458.400000px;}
.y244{bottom:460.620000px;}
.y10{bottom:462.420000px;}
.y16b{bottom:466.320000px;}
.yb8{bottom:469.620000px;}
.y91{bottom:469.980000px;}
.y62{bottom:472.140000px;}
.y2f{bottom:472.860000px;}
.yc3{bottom:476.100000px;}
.y204{bottom:477.540000px;}
.y13b{bottom:478.920000px;}
.y22c{bottom:478.980000px;}
.y1b7{bottom:479.340000px;}
.y17f{bottom:484.320000px;}
.ya7{bottom:485.100000px;}
.y7b{bottom:486.900000px;}
.yb7{bottom:491.580000px;}
.y1ef{bottom:491.940000px;}
.y19a{bottom:492.660000px;}
.y101{bottom:495.120000px;}
.y22b{bottom:495.180000px;}
.y19b{bottom:497.640000px;}
.y49{bottom:500.220000px;}
.y90{bottom:503.100000px;}
.y11c{bottom:503.400000px;}
.y61{bottom:504.900000px;}
.yf{bottom:507.780000px;}
.yc2{bottom:508.860000px;}
.y22a{bottom:511.740000px;}
.yb6{bottom:513.540000px;}
.y1ee{bottom:514.980000px;}
.y203{bottom:515.700000px;}
.ya6{bottom:517.860000px;}
.y17d{bottom:519.240000px;}
.y7a{bottom:520.020000px;}
.ydd{bottom:520.380000px;}
.y2e{bottom:521.100000px;}
.y199{bottom:525.420000px;}
.y1b6{bottom:525.780000px;}
.y229{bottom:527.940000px;}
.yde{bottom:531.120000px;}
.y13a{bottom:532.560000px;}
.ye{bottom:535.140000px;}
.yb5{bottom:535.500000px;}
.y8f{bottom:535.860000px;}
.y11b{bottom:537.960000px;}
.y60{bottom:538.020000px;}
.y1ed{bottom:538.380000px;}
.yc1{bottom:541.980000px;}
.y228{bottom:544.500000px;}
.y48{bottom:548.100000px;}
.yfe{bottom:548.760000px;}
.ya5{bottom:550.980000px;}
.y79{bottom:553.140000px;}
.y2d{bottom:553.860000px;}
.y1b5{bottom:558.540000px;}
.y227{bottom:560.700000px;}
.y12e{bottom:567.120000px;}
.y14e{bottom:568.260000px;}
.y8e{bottom:568.980000px;}
.ydc{bottom:569.340000px;}
.y5f{bottom:570.780000px;}
.y248{bottom:574.380000px;}
.yc0{bottom:575.100000px;}
.y1ec{bottom:576.540000px;}
.y226{bottom:577.260000px;}
.yd{bottom:577.980000px;}
.y14f{bottom:579.000000px;}
.yfd{bottom:583.320000px;}
.ya4{bottom:584.100000px;}
.y78{bottom:585.900000px;}
.y2c{bottom:586.980000px;}
.y1b4{bottom:591.660000px;}
.y202{bottom:592.020000px;}
.y225{bottom:593.460000px;}
.y47{bottom:596.340000px;}
.y1eb{bottom:599.580000px;}
.y119{bottom:599.940000px;}
.y8d{bottom:601.740000px;}
.ydb{bottom:602.100000px;}
.y5e{bottom:603.900000px;}
.y198{bottom:604.560000px;}
.ybf{bottom:607.860000px;}
.y224{bottom:610.020000px;}
.y11a{bottom:610.680000px;}
.y16a{bottom:614.640000px;}
.ya3{bottom:616.860000px;}
.y14d{bottom:617.220000px;}
.yfc{bottom:617.880000px;}
.y247{bottom:617.940000px;}
.y77{bottom:619.020000px;}
.y2b{bottom:619.740000px;}
.yc{bottom:620.460000px;}
.y1b3{bottom:624.420000px;}
.y223{bottom:626.220000px;}
.y201{bottom:630.180000px;}
.y8c{bottom:634.860000px;}
.yda{bottom:635.220000px;}
.y46{bottom:635.580000px;}
.y5d{bottom:636.660000px;}
.y1ea{bottom:637.740000px;}
.ybe{bottom:640.980000px;}
.y222{bottom:642.780000px;}
.y197{bottom:645.240000px;}
.y118{bottom:648.900000px;}
.ya2{bottom:649.980000px;}
.y76{bottom:651.780000px;}
.yf9{bottom:652.800000px;}
.y2a{bottom:652.860000px;}
.y1b2{bottom:657.540000px;}
.y221{bottom:659.340000px;}
.y1e9{bottom:660.780000px;}
.yb{bottom:662.940000px;}
.y8b{bottom:667.620000px;}
.yd9{bottom:668.340000px;}
.y5c{bottom:669.780000px;}
.y45{bottom:673.740000px;}
.y220{bottom:675.540000px;}
.ya1{bottom:682.740000px;}
.y75{bottom:684.900000px;}
.y196{bottom:685.560000px;}
.y29{bottom:685.620000px;}
.y17c{bottom:686.280000px;}
.y1b1{bottom:690.660000px;}
.y21f{bottom:692.100000px;}
.y14a{bottom:696.360000px;}
.y1e8{bottom:698.940000px;}
.y8a{bottom:700.740000px;}
.yd8{bottom:701.100000px;}
.y5b{bottom:702.900000px;}
.ya{bottom:705.420000px;}
.y200{bottom:706.500000px;}
.ybd{bottom:706.860000px;}
.y21e{bottom:708.300000px;}
.y44{bottom:711.900000px;}
.ya0{bottom:715.860000px;}
.y74{bottom:717.660000px;}
.y28{bottom:718.740000px;}
.y17b{bottom:721.200000px;}
.y1e7{bottom:722.340000px;}
.y1b0{bottom:723.420000px;}
.y21d{bottom:724.860000px;}
.y195{bottom:726.240000px;}
.y114{bottom:728.040000px;}
.y167{bottom:732.000000px;}
.y89{bottom:733.860000px;}
.yd7{bottom:734.220000px;}
.y5a{bottom:735.660000px;}
.ybc{bottom:739.620000px;}
.y21c{bottom:741.060000px;}
.y43{bottom:742.500000px;}
.y1ff{bottom:744.660000px;}
.y9{bottom:747.900000px;}
.y9f{bottom:748.620000px;}
.y73{bottom:750.780000px;}
.y1af{bottom:756.540000px;}
.y21b{bottom:757.620000px;}
.y1e6{bottom:760.500000px;}
.yf8{bottom:763.320000px;}
.y14c{bottom:765.480000px;}
.y18e{bottom:766.560000px;}
.y27{bottom:766.620000px;}
.yd6{bottom:766.980000px;}
.ybb{bottom:772.740000px;}
.y42{bottom:773.100000px;}
.y21a{bottom:773.820000px;}
.y9e{bottom:781.740000px;}
.y179{bottom:782.820000px;}
.y72{bottom:783.540000px;}
.y59{bottom:783.900000px;}
.y1ae{bottom:789.300000px;}
.y8{bottom:790.020000px;}
.y219{bottom:790.380000px;}
.y17a{bottom:793.920000px;}
.y117{bottom:796.800000px;}
.yf7{bottom:797.880000px;}
.yd5{bottom:800.100000px;}
.y169{bottom:800.760000px;}
.y41{bottom:803.700000px;}
.y1e5{bottom:806.580000px;}
.y192{bottom:806.880000px;}
.y26{bottom:814.500000px;}
.y71{bottom:816.660000px;}
.y14b{bottom:819.120000px;}
.y1fe{bottom:820.980000px;}
.y1ad{bottom:822.420000px;}
.y218{bottom:823.140000px;}
.y1e4{bottom:829.980000px;}
.y178{bottom:831.780000px;}
.y7{bottom:832.500000px;}
.yd4{bottom:832.860000px;}
.y40{bottom:834.300000px;}
.y217{bottom:839.340000px;}
.y18d{bottom:847.560000px;}
.y25{bottom:847.620000px;}
.y70{bottom:849.420000px;}
.y116{bottom:850.440000px;}
.y168{bottom:854.400000px;}
.y1ac{bottom:855.180000px;}
.y216{bottom:855.900000px;}
.y1fd{bottom:859.140000px;}
.yf5{bottom:859.500000px;}
.y3f{bottom:864.900000px;}
.y58{bottom:865.620000px;}
.yd3{bottom:865.980000px;}
.y1e3{bottom:868.140000px;}
.yf6{bottom:870.600000px;}
.y215{bottom:872.100000px;}
.y149{bottom:872.760000px;}
.y6{bottom:874.980000px;}
.y24{bottom:880.380000px;}
.y6f{bottom:882.540000px;}
.y1ab{bottom:888.300000px;}
.y214{bottom:888.660000px;}
.y1e2{bottom:891.180000px;}
.y3e{bottom:895.860000px;}
.y18b{bottom:896.220000px;}
.y1fc{bottom:897.300000px;}
.y57{bottom:898.380000px;}
.yd2{bottom:898.740000px;}
.y12d{bottom:901.200000px;}
.y113{bottom:904.080000px;}
.y213{bottom:904.860000px;}
.y148{bottom:907.320000px;}
.y166{bottom:908.040000px;}
.yf4{bottom:908.820000px;}
.y175{bottom:910.920000px;}
.y23{bottom:913.500000px;}
.y1e1{bottom:914.220000px;}
.y5{bottom:917.460000px;}
.y1aa{bottom:921.060000px;}
.y212{bottom:921.420000px;}
.y3d{bottom:926.460000px;}
.y6e{bottom:930.780000px;}
.y56{bottom:931.500000px;}
.yd1{bottom:931.860000px;}
.y1fb{bottom:935.460000px;}
.y12c{bottom:935.760000px;}
.y4{bottom:936.180000px;}
.y211{bottom:937.620000px;}
.y112{bottom:939.000000px;}
.y147{bottom:942.240000px;}
.y18a{bottom:942.660000px;}
.y163{bottom:942.960000px;}
.y22{bottom:946.620000px;}
.y1e0{bottom:952.380000px;}
.y1a9{bottom:954.180000px;}
.y3c{bottom:957.060000px;}
.y1fa{bottom:958.500000px;}
.y12a{bottom:959.580000px;}
.y55{bottom:964.260000px;}
.y12b{bottom:970.320000px;}
.y210{bottom:970.380000px;}
.yd0{bottom:972.180000px;}
.y189{bottom:972.900000px;}
.y111{bottom:973.560000px;}
.y1df{bottom:975.780000px;}
.y146{bottom:976.800000px;}
.y21{bottom:979.380000px;}
.y177{bottom:980.040000px;}
.y1a8{bottom:986.940000px;}
.y3b{bottom:987.660000px;}
.yf2{bottom:987.960000px;}
.ycf{bottom:997.020000px;}
.y54{bottom:997.380000px;}
.y1f9{bottom:997.740000px;}
.y3{bottom:998.100000px;}
.y1de{bottom:998.820000px;}
.y188{bottom:1003.140000px;}
.y10c{bottom:1008.480000px;}
.y129{bottom:1008.540000px;}
.y20{bottom:1012.500000px;}
.y3a{bottom:1018.260000px;}
.y20f{bottom:1019.700000px;}
.y1a7{bottom:1020.060000px;}
.y1dd{bottom:1024.380000px;}
.y53{bottom:1030.500000px;}
.y187{bottom:1033.380000px;}
.y176{bottom:1033.680000px;}
.y20e{bottom:1037.700000px;}
.y1f8{bottom:1038.060000px;}
.y246{bottom:1039.860000px;}
.y1f{bottom:1045.260000px;}
.y39{bottom:1048.860000px;}
.y162{bottom:1049.520000px;}
.y1a6{bottom:1053.180000px;}
.yf1{bottom:1056.720000px;}
.y2{bottom:1061.460000px;}
.y38{bottom:1072.620000px;}
.y186{bottom:1078.020000px;}
.y1e{bottom:1078.380000px;}
.y1dc{bottom:1079.820000px;}
.y243{bottom:1081.980000px;}
.y161{bottom:1084.080000px;}
.y145{bottom:1087.320000px;}
.y127{bottom:1087.680000px;}
.yef{bottom:1110.360000px;}
.y144{bottom:1121.880000px;}
.h37{height:32.760000px;}
.h35{height:33.119985px;}
.h3a{height:33.120000px;}
.ha{height:33.840000px;}
.h14{height:34.199985px;}
.he{height:34.200000px;}
.h19{height:37.800000px;}
.h30{height:39.599985px;}
.h2c{height:39.600030px;}
.h31{height:39.959970px;}
.h34{height:39.960000px;}
.h2e{height:39.960015px;}
.h38{height:40.320000px;}
.h5{height:40.359375px;}
.h3c{height:40.365000px;}
.hb{height:43.940391px;}
.h10{height:45.719970px;}
.hf{height:45.720000px;}
.h33{height:47.520015px;}
.h8{height:51.679688px;}
.h23{height:52.560015px;}
.h1c{height:52.919955px;}
.h20{height:52.919985px;}
.h16{height:52.920000px;}
.h18{height:52.920015px;}
.h11{height:52.920045px;}
.h6{height:53.441016px;}
.h36{height:58.320000px;}
.h4{height:59.378906px;}
.h3b{height:63.344531px;}
.h7{height:66.639375px;}
.h12{height:68.039985px;}
.h17{height:68.040000px;}
.h1d{height:68.040030px;}
.h21{height:68.399970px;}
.h39{height:68.400000px;}
.h24{height:68.400015px;}
.h9{height:68.879531px;}
.h2a{height:71.639970px;}
.hc{height:72.000000px;}
.h2f{height:80.279985px;}
.h32{height:93.599985px;}
.h2{height:100.968750px;}
.h27{height:105.840000px;}
.h1f{height:106.560000px;}
.h3{height:109.046250px;}
.h13{height:109.800015px;}
.h2d{height:133.920000px;}
.h28{height:147.599985px;}
.h1a{height:147.600030px;}
.hd{height:162.720000px;}
.h2b{height:166.320000px;}
.h1e{height:166.680000px;}
.h1b{height:175.320000px;}
.h15{height:175.680000px;}
.h26{height:189.360000px;}
.h25{height:230.400000px;}
.h29{height:276.480000px;}
.h22{height:333.360000px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w14{width:51.120030px;}
.w11{width:61.560015px;}
.w12{width:72.000000px;}
.w13{width:72.359985px;}
.w6{width:111.960000px;}
.w8{width:113.039985px;}
.wa{width:113.040030px;}
.w7{width:113.399985px;}
.w9{width:113.760000px;}
.wb{width:115.559985px;}
.wf{width:116.639970px;}
.wc{width:116.639985px;}
.wd{width:116.640015px;}
.we{width:117.000000px;}
.w4{width:156.600000px;}
.w5{width:161.640000px;}
.w2{width:316.440000px;}
.w3{width:318.960000px;}
.w10{width:435.600000px;}
.w15{width:695.880000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x19{left:4.680060px;}
.x13{left:7.559925px;}
.x17{left:10.181550px;}
.x2b{left:13.966800px;}
.x29{left:15.492810px;}
.x31{left:17.180310px;}
.x39{left:20.923350px;}
.x27{left:24.665700px;}
.x1{left:27.000000px;}
.x37{left:31.348350px;}
.x25{left:32.844450px;}
.x21{left:34.919850px;}
.x22{left:35.993250px;}
.x16{left:37.408950px;}
.x23{left:38.555100px;}
.x2d{left:39.994950px;}
.x1d{left:48.193200px;}
.x2a{left:56.745150px;}
.x32{left:58.185000px;}
.x18{left:63.004950px;}
.x34{left:77.400000px;}
.x1c{left:87.331950px;}
.x20{left:91.263900px;}
.x1b{left:95.341050px;}
.x4{left:100.439925px;}
.x15{left:101.794350px;}
.x1f{left:104.681550px;}
.x1e{left:110.113200px;}
.x6{left:115.582380px;}
.xf{left:116.939940px;}
.x2{left:118.692255px;}
.x12{left:119.880000px;}
.x5{left:125.190000px;}
.x11{left:127.440000px;}
.xc{left:142.761150px;}
.x33{left:154.440000px;}
.x8{left:179.297250px;}
.xa{left:185.172750px;}
.xb{left:233.090700px;}
.x2c{left:236.160000px;}
.x3{left:275.497950px;}
.x9{left:317.507400px;}
.x24{left:346.680000px;}
.x2e{left:353.520000px;}
.x7{left:385.556700px;}
.x3b{left:419.760150px;}
.x14{left:437.040000px;}
.x26{left:460.440000px;}
.x2f{left:470.880000px;}
.x35{left:514.080000px;}
.x28{left:574.920000px;}
.x36{left:576.360000px;}
.xd{left:581.564850px;}
.x30{left:588.600000px;}
.x1a{left:594.360000px;}
.x3a{left:642.239850px;}
.x38{left:649.080000px;}
.x3c{left:672.014700px;}
.x3d{left:680.940000px;}
.x10{left:721.514250px;}
.xe{left:729.877050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.025600pt;}
.ls8{letter-spacing:-0.019200pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls23{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.009600pt;}
.lsa{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.019200pt;}
.ls21{letter-spacing:0.025600pt;}
.ls22{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.038400pt;}
.ls4{letter-spacing:0.051200pt;}
.ls51{letter-spacing:0.137344pt;}
.ls50{letter-spacing:0.146816pt;}
.ls46{letter-spacing:0.147840pt;}
.ls2b{letter-spacing:0.148373pt;}
.ls57{letter-spacing:0.161024pt;}
.ls4a{letter-spacing:0.170496pt;}
.ls3a{letter-spacing:0.184704pt;}
.ls58{letter-spacing:0.198912pt;}
.ls5a{letter-spacing:0.202773pt;}
.ls29{letter-spacing:0.203307pt;}
.ls39{letter-spacing:0.203648pt;}
.ls2a{letter-spacing:0.204587pt;}
.ls34{letter-spacing:0.213120pt;}
.ls61{letter-spacing:0.245333pt;}
.ls1d{letter-spacing:0.247680pt;}
.ls35{letter-spacing:0.255744pt;}
.ls2d{letter-spacing:0.258240pt;}
.ls68{letter-spacing:0.259200pt;}
.ls13{letter-spacing:0.261888pt;}
.ls44{letter-spacing:0.265216pt;}
.ls64{letter-spacing:0.270720pt;}
.ls33{letter-spacing:0.274688pt;}
.lse{letter-spacing:0.288000pt;}
.ls2f{letter-spacing:0.288896pt;}
.ls4e{letter-spacing:0.289387pt;}
.ls53{letter-spacing:0.289920pt;}
.ls43{letter-spacing:0.293632pt;}
.ls6f{letter-spacing:0.293760pt;}
.ls49{letter-spacing:0.298368pt;}
.ls3f{letter-spacing:0.303104pt;}
.ls3d{letter-spacing:0.307840pt;}
.ls11{letter-spacing:0.310400pt;}
.ls3b{letter-spacing:0.312576pt;}
.ls3c{letter-spacing:0.317312pt;}
.ls38{letter-spacing:0.326784pt;}
.ls6d{letter-spacing:0.335467pt;}
.ls40{letter-spacing:0.345728pt;}
.ls31{letter-spacing:0.350464pt;}
.ls59{letter-spacing:0.354667pt;}
.ls32{letter-spacing:0.355200pt;}
.ls16{letter-spacing:0.357120pt;}
.ls3e{letter-spacing:0.359936pt;}
.ls6{letter-spacing:0.372608pt;}
.ls36{letter-spacing:0.383616pt;}
.ls4b{letter-spacing:0.388352pt;}
.ls5f{letter-spacing:0.393088pt;}
.ls69{letter-spacing:0.397824pt;}
.ls4f{letter-spacing:0.402560pt;}
.ls2e{letter-spacing:0.407296pt;}
.ls37{letter-spacing:0.421504pt;}
.ls62{letter-spacing:0.424000pt;}
.ls63{letter-spacing:0.426240pt;}
.ls5e{letter-spacing:0.440448pt;}
.ls7{letter-spacing:0.440832pt;}
.ls67{letter-spacing:0.443520pt;}
.ls30{letter-spacing:0.445184pt;}
.ls71{letter-spacing:0.472320pt;}
.ls2c{letter-spacing:0.502016pt;}
.ls17{letter-spacing:0.506880pt;}
.ls65{letter-spacing:0.512640pt;}
.ls74{letter-spacing:0.518400pt;}
.ls14{letter-spacing:0.529920pt;}
.ls1c{letter-spacing:0.535680pt;}
.ls52{letter-spacing:0.544640pt;}
.ls18{letter-spacing:0.552960pt;}
.ls76{letter-spacing:0.558720pt;}
.ls42{letter-spacing:0.558848pt;}
.ls6e{letter-spacing:0.570240pt;}
.ls70{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.581760pt;}
.ls66{letter-spacing:0.593280pt;}
.ls19{letter-spacing:0.599040pt;}
.ls79{letter-spacing:0.604800pt;}
.ls73{letter-spacing:0.662400pt;}
.ls75{letter-spacing:0.668160pt;}
.ls15{letter-spacing:0.691200pt;}
.ls1a{letter-spacing:0.737280pt;}
.ls12{letter-spacing:0.760320pt;}
.ls72{letter-spacing:0.846720pt;}
.ls10{letter-spacing:1.456533pt;}
.ls60{letter-spacing:1.823467pt;}
.ls54{letter-spacing:1.858240pt;}
.ls5d{letter-spacing:2.186240pt;}
.ls56{letter-spacing:2.191040pt;}
.ls41{letter-spacing:2.325440pt;}
.ls4c{letter-spacing:2.617173pt;}
.ls55{letter-spacing:3.666240pt;}
.ls5c{letter-spacing:3.912640pt;}
.ls48{letter-spacing:4.652373pt;}
.ls26{letter-spacing:6.360960pt;}
.ls45{letter-spacing:7.685973pt;}
.ls47{letter-spacing:8.009173pt;}
.ls4d{letter-spacing:8.438507pt;}
.ls25{letter-spacing:11.070933pt;}
.ls24{letter-spacing:11.071307pt;}
.ls28{letter-spacing:15.689600pt;}
.ls6b{letter-spacing:24.874667pt;}
.ls77{letter-spacing:28.676800pt;}
.ls1e{letter-spacing:28.677013pt;}
.ls78{letter-spacing:31.060267pt;}
.ls6a{letter-spacing:34.583787pt;}
.ls6c{letter-spacing:39.552000pt;}
.ls20{letter-spacing:48.770773pt;}
.lsd{letter-spacing:58.912320pt;}
.ls5b{letter-spacing:68.138987pt;}
.lsf{letter-spacing:87.844800pt;}
.wse7{word-spacing:-16.617600pt;}
.wse2{word-spacing:-0.904320pt;}
.ws1c{word-spacing:-0.817920pt;}
.ws19{word-spacing:-0.794880pt;}
.ws13{word-spacing:-0.748800pt;}
.wse5{word-spacing:-0.725760pt;}
.wse3{word-spacing:-0.720000pt;}
.ws18{word-spacing:-0.656640pt;}
.wsc6{word-spacing:-0.650880pt;}
.ws1a{word-spacing:-0.639360pt;}
.wse0{word-spacing:-0.633600pt;}
.wsde{word-spacing:-0.627840pt;}
.wse6{word-spacing:-0.616320pt;}
.ws17{word-spacing:-0.610560pt;}
.ws8a{word-spacing:-0.606208pt;}
.ws1b{word-spacing:-0.593280pt;}
.wsae{word-spacing:-0.592000pt;}
.ws12{word-spacing:-0.587520pt;}
.wse4{word-spacing:-0.576000pt;}
.wsc5{word-spacing:-0.570240pt;}
.ws16{word-spacing:-0.564480pt;}
.ws83{word-spacing:-0.549376pt;}
.wse1{word-spacing:-0.529920pt;}
.wsc7{word-spacing:-0.501120pt;}
.ws2{word-spacing:-0.493312pt;}
.ws76{word-spacing:-0.492544pt;}
.wsb9{word-spacing:-0.487808pt;}
.wsc3{word-spacing:-0.483840pt;}
.ws7d{word-spacing:-0.468864pt;}
.ws74{word-spacing:-0.454656pt;}
.ws9d{word-spacing:-0.449920pt;}
.wsc9{word-spacing:-0.445184pt;}
.wsbe{word-spacing:-0.440448pt;}
.ws9c{word-spacing:-0.435712pt;}
.ws7c{word-spacing:-0.430976pt;}
.ws1{word-spacing:-0.425088pt;}
.ws15{word-spacing:-0.414720pt;}
.ws86{word-spacing:-0.407296pt;}
.ws78{word-spacing:-0.402560pt;}
.ws77{word-spacing:-0.397824pt;}
.ws89{word-spacing:-0.393088pt;}
.ws8c{word-spacing:-0.374144pt;}
.ws84{word-spacing:-0.364672pt;}
.ws81{word-spacing:-0.359936pt;}
.ws85{word-spacing:-0.355200pt;}
.wsdf{word-spacing:-0.351360pt;}
.ws88{word-spacing:-0.350464pt;}
.ws11{word-spacing:-0.346368pt;}
.ws93{word-spacing:-0.345728pt;}
.ws14{word-spacing:-0.345600pt;}
.ws8b{word-spacing:-0.340992pt;}
.ws75{word-spacing:-0.336256pt;}
.wsc4{word-spacing:-0.328320pt;}
.ws79{word-spacing:-0.322048pt;}
.wsc8{word-spacing:-0.316800pt;}
.ws90{word-spacing:-0.312576pt;}
.ws1d{word-spacing:-0.305280pt;}
.ws7b{word-spacing:-0.303104pt;}
.ws7a{word-spacing:-0.260480pt;}
.ws87{word-spacing:-0.251008pt;}
.wsb2{word-spacing:-0.246272pt;}
.wsb4{word-spacing:-0.232064pt;}
.ws96{word-spacing:-0.217856pt;}
.wsaf{word-spacing:-0.208384pt;}
.wsab{word-spacing:-0.194176pt;}
.wsad{word-spacing:-0.184704pt;}
.ws0{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.115200pt;}
.ws50{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.089600pt;}
.ws6{word-spacing:-0.083200pt;}
.ws8{word-spacing:-0.076800pt;}
.ws3{word-spacing:-0.070400pt;}
.ws5{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.057600pt;}
.ws9{word-spacing:-0.051200pt;}
.ws91{word-spacing:-0.047360pt;}
.ws4{word-spacing:-0.044800pt;}
.ws7{word-spacing:-0.038400pt;}
.ws35{word-spacing:-0.032000pt;}
.wsb{word-spacing:0.000000pt;}
.ws92{word-spacing:6.938240pt;}
.ws8f{word-spacing:7.037696pt;}
.wsa4{word-spacing:7.227136pt;}
.ws99{word-spacing:7.269760pt;}
.ws9b{word-spacing:7.553920pt;}
.ws98{word-spacing:7.643904pt;}
.wsb6{word-spacing:7.658112pt;}
.wsa6{word-spacing:7.790720pt;}
.wsa5{word-spacing:7.989632pt;}
.wsc2{word-spacing:8.226432pt;}
.ws9e{word-spacing:8.354304pt;}
.wsa1{word-spacing:8.406400pt;}
.wsa2{word-spacing:8.496384pt;}
.wsa8{word-spacing:8.591104pt;}
.ws9f{word-spacing:9.268352pt;}
.ws63{word-spacing:9.376000pt;}
.wsac{word-spacing:9.585664pt;}
.ws24{word-spacing:9.606400pt;}
.ws6c{word-spacing:9.676800pt;}
.wsbd{word-spacing:9.822464pt;}
.ws1f{word-spacing:9.836800pt;}
.wsdc{word-spacing:9.913600pt;}
.ws6a{word-spacing:9.971200pt;}
.wscd{word-spacing:10.003200pt;}
.wsce{word-spacing:10.049600pt;}
.ws7f{word-spacing:10.215552pt;}
.ws2d{word-spacing:10.233600pt;}
.ws80{word-spacing:10.234496pt;}
.ws34{word-spacing:10.259200pt;}
.ws57{word-spacing:10.323200pt;}
.ws25{word-spacing:10.348800pt;}
.ws10{word-spacing:10.425600pt;}
.ws49{word-spacing:10.438400pt;}
.wsa9{word-spacing:10.451712pt;}
.wsaa{word-spacing:10.452352pt;}
.ws66{word-spacing:10.502400pt;}
.wsd6{word-spacing:10.524800pt;}
.ws82{word-spacing:10.532864pt;}
.wsd7{word-spacing:10.553600pt;}
.wsd5{word-spacing:10.566400pt;}
.wscb{word-spacing:10.579200pt;}
.wsd8{word-spacing:10.617600pt;}
.ws8d{word-spacing:10.679680pt;}
.ws20{word-spacing:10.796800pt;}
.ws58{word-spacing:11.008000pt;}
.ws26{word-spacing:11.142400pt;}
.ws95{word-spacing:11.243264pt;}
.ws71{word-spacing:11.321600pt;}
.ws39{word-spacing:11.520000pt;}
.ws56{word-spacing:11.673600pt;}
.ws55{word-spacing:11.677333pt;}
.ws54{word-spacing:11.680000pt;}
.ws73{word-spacing:11.699200pt;}
.ws28{word-spacing:11.705600pt;}
.ws6b{word-spacing:11.884800pt;}
.ws6d{word-spacing:11.936000pt;}
.ws44{word-spacing:12.012800pt;}
.ws23{word-spacing:12.115200pt;}
.wse{word-spacing:12.281600pt;}
.wsb8{word-spacing:12.289920pt;}
.wscf{word-spacing:12.448000pt;}
.wsb7{word-spacing:12.465152pt;}
.ws43{word-spacing:12.646400pt;}
.ws2a{word-spacing:12.864000pt;}
.ws5b{word-spacing:12.921600pt;}
.ws5a{word-spacing:12.938133pt;}
.wsb0{word-spacing:12.981376pt;}
.wsdb{word-spacing:13.030400pt;}
.ws65{word-spacing:13.068800pt;}
.wsda{word-spacing:13.100800pt;}
.ws40{word-spacing:13.216000pt;}
.ws51{word-spacing:13.612800pt;}
.ws61{word-spacing:13.689600pt;}
.wsbf{word-spacing:13.705984pt;}
.wsa7{word-spacing:13.885952pt;}
.ws46{word-spacing:13.913600pt;}
.ws2e{word-spacing:14.316800pt;}
.ws2f{word-spacing:14.470400pt;}
.wsbc{word-spacing:14.610560pt;}
.ws59{word-spacing:14.611200pt;}
.ws72{word-spacing:15.040000pt;}
.ws7e{word-spacing:15.207296pt;}
.wsd{word-spacing:15.238400pt;}
.ws67{word-spacing:15.276800pt;}
.ws3c{word-spacing:15.475200pt;}
.wsdd{word-spacing:15.507200pt;}
.ws3b{word-spacing:15.520000pt;}
.ws62{word-spacing:15.622400pt;}
.wsb3{word-spacing:15.643008pt;}
.ws8e{word-spacing:15.699840pt;}
.ws69{word-spacing:15.904000pt;}
.wscc{word-spacing:15.916800pt;}
.ws3f{word-spacing:16.300800pt;}
.ws3e{word-spacing:16.306133pt;}
.ws3d{word-spacing:16.352000pt;}
.wsd4{word-spacing:16.934400pt;}
.ws48{word-spacing:17.049600pt;}
.wsd3{word-spacing:17.139200pt;}
.wsd1{word-spacing:17.141333pt;}
.wsd2{word-spacing:17.145600pt;}
.ws68{word-spacing:17.318400pt;}
.ws36{word-spacing:17.471200pt;}
.ws38{word-spacing:17.504000pt;}
.ws37{word-spacing:17.542400pt;}
.ws97{word-spacing:17.622656pt;}
.wsa0{word-spacing:17.684224pt;}
.ws41{word-spacing:17.747200pt;}
.wsbb{word-spacing:18.067840pt;}
.ws42{word-spacing:18.470400pt;}
.ws5c{word-spacing:18.553600pt;}
.ws45{word-spacing:18.579200pt;}
.ws47{word-spacing:18.598400pt;}
.ws9a{word-spacing:18.645632pt;}
.ws52{word-spacing:18.694400pt;}
.ws64{word-spacing:19.104000pt;}
.wsca{word-spacing:19.603200pt;}
.ws53{word-spacing:19.750400pt;}
.ws33{word-spacing:19.878400pt;}
.ws30{word-spacing:19.884800pt;}
.ws32{word-spacing:19.916800pt;}
.wsd9{word-spacing:21.254400pt;}
.ws3a{word-spacing:21.408000pt;}
.ws2c{word-spacing:21.440000pt;}
.ws4c{word-spacing:21.984000pt;}
.wsd0{word-spacing:22.060800pt;}
.ws27{word-spacing:22.099200pt;}
.ws70{word-spacing:22.299200pt;}
.ws6f{word-spacing:22.325867pt;}
.ws6e{word-spacing:22.355200pt;}
.ws29{word-spacing:22.579200pt;}
.wsb5{word-spacing:22.765952pt;}
.wsa3{word-spacing:26.450560pt;}
.wsf{word-spacing:26.912000pt;}
.ws5f{word-spacing:26.969600pt;}
.ws60{word-spacing:27.008000pt;}
.ws5e{word-spacing:27.014400pt;}
.wsc1{word-spacing:27.255680pt;}
.wsc0{word-spacing:27.440384pt;}
.ws94{word-spacing:27.454592pt;}
.ws4d{word-spacing:27.808800pt;}
.ws4e{word-spacing:27.833600pt;}
.ws4f{word-spacing:27.840000pt;}
.ws22{word-spacing:28.089600pt;}
.ws21{word-spacing:28.154133pt;}
.ws31{word-spacing:28.876800pt;}
.ws4b{word-spacing:33.382400pt;}
.wsba{word-spacing:34.454400pt;}
.ws4a{word-spacing:36.371200pt;}
.ws5d{word-spacing:36.768000pt;}
.wsb1{word-spacing:39.659264pt;}
.ws2b{word-spacing:42.464000pt;}
._12{margin-left:-1658.160000pt;}
._10{margin-left:-439.179637pt;}
._13{margin-left:-92.856960pt;}
._11{margin-left:-79.591680pt;}
._5{margin-left:-13.855477pt;}
._c{margin-left:-11.699893pt;}
._9{margin-left:-10.559424pt;}
._b{margin-left:-9.070805pt;}
._8{margin-left:-8.154901pt;}
._6{margin-left:-5.873067pt;}
._7{margin-left:-4.905877pt;}
._a{margin-left:-3.964917pt;}
._0{margin-left:-1.088256pt;}
._1{width:1.030400pt;}
._3{width:2.538400pt;}
._2{width:3.494400pt;}
._4{width:4.820000pt;}
._d{width:6.246667pt;}
._e{width:7.801600pt;}
._f{width:9.580800pt;}
.fs7{font-size:47.360000pt;}
.fs8{font-size:49.920000pt;}
.fs3{font-size:52.480000pt;}
.fs4{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:84.480000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:138.240000pt;}
.y1d{bottom:-3.039973pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:5.439987pt;}
.y160{bottom:5.760000pt;}
.y1d4{bottom:6.400000pt;}
.y1ca{bottom:13.760000pt;}
.y1cb{bottom:14.080000pt;}
.y1d7{bottom:14.399987pt;}
.y1c4{bottom:14.400000pt;}
.y1c{bottom:14.560027pt;}
.y1c7{bottom:16.960000pt;}
.y108{bottom:18.879973pt;}
.y126{bottom:18.879987pt;}
.ydf{bottom:18.880000pt;}
.ye3{bottom:19.200000pt;}
.y1d0{bottom:20.160000pt;}
.y1cd{bottom:20.480000pt;}
.y1ce{bottom:20.800000pt;}
.y10a{bottom:22.399987pt;}
.y15f{bottom:22.400013pt;}
.y18c{bottom:24.000000pt;}
.y193{bottom:24.320000pt;}
.y1d3{bottom:25.920000pt;}
.yf0{bottom:29.440000pt;}
.yee{bottom:29.440013pt;}
.y1a0{bottom:31.040000pt;}
.y110{bottom:35.520000pt;}
.y125{bottom:35.839973pt;}
.ye2{bottom:35.840000pt;}
.y1c6{bottom:36.480000pt;}
.y1c8{bottom:36.800000pt;}
.y15e{bottom:39.359987pt;}
.y1d2{bottom:45.440000pt;}
.y1d5{bottom:45.760000pt;}
.y242{bottom:46.880027pt;}
.y1b{bottom:48.800013pt;}
.y165{bottom:48.960000pt;}
.yf3{bottom:49.280000pt;}
.y128{bottom:49.600000pt;}
.yb4{bottom:50.400027pt;}
.y88{bottom:52.000027pt;}
.yfb{bottom:52.480000pt;}
.ye1{bottom:52.800000pt;}
.yae{bottom:52.960027pt;}
.y1f7{bottom:54.240027pt;}
.y1{bottom:54.666667pt;}
.y19e{bottom:55.040000pt;}
.yce{bottom:55.840027pt;}
.y15d{bottom:56.319987pt;}
.y1db{bottom:58.080013pt;}
.y194{bottom:60.160000pt;}
.y191{bottom:60.800000pt;}
.y52{bottom:60.960027pt;}
.y241{bottom:61.600027pt;}
.y1c2{bottom:62.240027pt;}
.y164{bottom:65.920000pt;}
.y173{bottom:66.240000pt;}
.y9d{bottom:66.400027pt;}
.ye9{bottom:69.440000pt;}
.y6d{bottom:69.920027pt;}
.y19d{bottom:72.000000pt;}
.y15c{bottom:72.959987pt;}
.y240{bottom:76.000027pt;}
.y37{bottom:79.520000pt;}
.y87{bottom:81.440000pt;}
.y139{bottom:82.880000pt;}
.y123{bottom:83.519973pt;}
.ycd{bottom:84.960000pt;}
.y20d{bottom:85.280000pt;}
.y10f{bottom:86.080000pt;}
.yfa{bottom:86.400000pt;}
.y1f6{bottom:88.160000pt;}
.y15b{bottom:89.919987pt;}
.y23f{bottom:90.720000pt;}
.y190{bottom:90.880000pt;}
.y1c1{bottom:91.360000pt;}
.y1a{bottom:91.680000pt;}
.y9c{bottom:95.520000pt;}
.yed{bottom:97.706680pt;}
.y109{bottom:98.026693pt;}
.y6c{bottom:99.040000pt;}
.y143{bottom:99.306693pt;}
.y138{bottom:99.520000pt;}
.ye8{bottom:99.840000pt;}
.y1da{bottom:100.960000pt;}
.y1a5{bottom:101.280000pt;}
.y10e{bottom:103.040000pt;}
.y51{bottom:103.520000pt;}
.y23e{bottom:105.120000pt;}
.y174{bottom:106.346693pt;}
.y15a{bottom:106.559987pt;}
.y1d6{bottom:107.306693pt;}
.y18f{bottom:107.840000pt;}
.yb3{bottom:108.960000pt;}
.y156{bottom:109.226680pt;}
.y86{bottom:110.560000pt;}
.y122{bottom:110.826693pt;}
.y249{bottom:112.480000pt;}
.ycc{bottom:114.400000pt;}
.ye7{bottom:116.480000pt;}
.y172{bottom:116.800000pt;}
.y20c{bottom:119.200000pt;}
.y23d{bottom:119.840000pt;}
.y10d{bottom:120.000000pt;}
.y1c0{bottom:120.800000pt;}
.y36{bottom:122.080000pt;}
.y159{bottom:123.519987pt;}
.y9b{bottom:124.960000pt;}
.y6b{bottom:128.480000pt;}
.y154{bottom:129.920000pt;}
.y107{bottom:132.266693pt;}
.ye6{bottom:133.440000pt;}
.y19{bottom:134.240000pt;}
.y17e{bottom:136.640000pt;}
.y11e{bottom:136.960000pt;}
.y16d{bottom:137.066667pt;}
.y1d1{bottom:137.386667pt;}
.y141{bottom:137.440000pt;}
.yb2{bottom:138.080000pt;}
.yec{bottom:138.986667pt;}
.y85{bottom:140.000000pt;}
.y158{bottom:140.479987pt;}
.y185{bottom:141.920000pt;}
.ycb{bottom:143.520000pt;}
.y115{bottom:144.640000pt;}
.y100{bottom:144.960000pt;}
.y50{bottom:146.400000pt;}
.y153{bottom:146.560000pt;}
.y142{bottom:146.986667pt;}
.y23c{bottom:148.960000pt;}
.y137{bottom:150.080000pt;}
.y1bf{bottom:150.240000pt;}
.y171{bottom:150.400000pt;}
.y20b{bottom:153.120000pt;}
.y9a{bottom:154.080000pt;}
.y157{bottom:157.119987pt;}
.y6a{bottom:157.600000pt;}
.y124{bottom:158.506667pt;}
.y106{bottom:162.986667pt;}
.y23b{bottom:163.680000pt;}
.y35{bottom:164.640000pt;}
.y136{bottom:167.040000pt;}
.y170{bottom:167.360000pt;}
.yb1{bottom:167.520000pt;}
.y140{bottom:167.840000pt;}
.y1f5{bottom:168.800000pt;}
.y84{bottom:169.120000pt;}
.yeb{bottom:169.706667pt;}
.y1a4{bottom:171.626667pt;}
.yca{bottom:172.960000pt;}
.y18{bottom:176.800000pt;}
.y152{bottom:176.960000pt;}
.y23a{bottom:178.080000pt;}
.y1be{bottom:179.360000pt;}
.y99{bottom:183.520000pt;}
.y135{bottom:184.000000pt;}
.y1d9{bottom:186.080000pt;}
.y69{bottom:187.040000pt;}
.y4f{bottom:188.960000pt;}
.y239{bottom:192.800000pt;}
.y151{bottom:193.600000pt;}
.yb0{bottom:196.640000pt;}
.y83{bottom:198.560000pt;}
.y1cf{bottom:198.826667pt;}
.y134{bottom:200.640000pt;}
.yea{bottom:200.746667pt;}
.y16f{bottom:200.960000pt;}
.y104{bottom:201.120000pt;}
.yc9{bottom:202.080000pt;}
.y121{bottom:206.186667pt;}
.y17{bottom:206.240000pt;}
.y34{bottom:207.200000pt;}
.y1a3{bottom:207.786667pt;}
.y1bd{bottom:208.800000pt;}
.y105{bottom:210.666667pt;}
.y182{bottom:212.266667pt;}
.y98{bottom:212.640000pt;}
.y68{bottom:216.160000pt;}
.y133{bottom:217.600000pt;}
.y16e{bottom:217.920000pt;}
.y20a{bottom:220.960000pt;}
.y238{bottom:221.920000pt;}
.yaf{bottom:226.080000pt;}
.y82{bottom:228.000000pt;}
.y1d8{bottom:228.640000pt;}
.y103{bottom:231.200000pt;}
.ye5{bottom:231.466667pt;}
.y4e{bottom:231.520000pt;}
.y132{bottom:234.560000pt;}
.y1cc{bottom:234.986667pt;}
.y16{bottom:235.360000pt;}
.y237{bottom:236.320000pt;}
.y120{bottom:236.906667pt;}
.y13d{bottom:238.186667pt;}
.y97{bottom:242.080000pt;}
.y1a2{bottom:243.626667pt;}
.y67{bottom:245.600000pt;}
.y1f4{bottom:249.120000pt;}
.y33{bottom:250.080000pt;}
.y236{bottom:251.040000pt;}
.y131{bottom:251.200000pt;}
.y1bc{bottom:251.360000pt;}
.y209{bottom:254.880000pt;}
.yad{bottom:255.520000pt;}
.y81{bottom:257.120000pt;}
.yc8{bottom:260.640000pt;}
.y15{bottom:264.800000pt;}
.y235{bottom:265.440000pt;}
.y11f{bottom:267.946667pt;}
.y130{bottom:268.160000pt;}
.y96{bottom:271.200000pt;}
.y1c9{bottom:271.466667pt;}
.y184{bottom:273.386667pt;}
.y4d{bottom:274.080000pt;}
.y66{bottom:275.040000pt;}
.y155{bottom:278.186667pt;}
.y1a1{bottom:279.466667pt;}
.y234{bottom:280.160000pt;}
.y1bb{bottom:280.480000pt;}
.yac{bottom:284.640000pt;}
.y12f{bottom:285.120000pt;}
.y80{bottom:286.560000pt;}
.y208{bottom:288.800000pt;}
.y1f3{bottom:289.440000pt;}
.yc7{bottom:290.720000pt;}
.y32{bottom:292.640000pt;}
.y14{bottom:293.920000pt;}
.y233{bottom:294.560000pt;}
.y11d{bottom:298.666667pt;}
.y13f{bottom:299.306667pt;}
.y95{bottom:300.640000pt;}
.y1c5{bottom:301.226667pt;}
.y150{bottom:309.226667pt;}
.y232{bottom:309.280000pt;}
.y1ba{bottom:309.920000pt;}
.yab{bottom:314.080000pt;}
.y19f{bottom:315.626667pt;}
.y7f{bottom:315.680000pt;}
.y4c{bottom:316.640000pt;}
.y65{bottom:317.600000pt;}
.y183{bottom:321.066667pt;}
.yc6{bottom:321.120000pt;}
.y207{bottom:322.720000pt;}
.y13{bottom:323.360000pt;}
.y231{bottom:323.680000pt;}
.y1f2{bottom:329.440000pt;}
.y94{bottom:330.080000pt;}
.yff{bottom:330.986667pt;}
.y31{bottom:335.200000pt;}
.y230{bottom:338.400000pt;}
.y1b9{bottom:339.360000pt;}
.yaa{bottom:343.200000pt;}
.y7e{bottom:345.120000pt;}
.y13e{bottom:346.986667pt;}
.yc5{bottom:350.240000pt;}
.y12{bottom:352.480000pt;}
.y22f{bottom:352.800000pt;}
.y1c3{bottom:353.706667pt;}
.y206{bottom:356.640000pt;}
.y19c{bottom:358.506667pt;}
.y93{bottom:359.200000pt;}
.y4b{bottom:359.520000pt;}
.y64{bottom:361.120000pt;}
.y22e{bottom:367.520000pt;}
.y1b8{bottom:368.480000pt;}
.y181{bottom:368.746667pt;}
.y1f1{bottom:369.760000pt;}
.ya9{bottom:372.640000pt;}
.y7d{bottom:374.240000pt;}
.ye4{bottom:376.746667pt;}
.y30{bottom:377.760000pt;}
.yba{bottom:378.400000pt;}
.yc4{bottom:380.640000pt;}
.y11{bottom:381.920000pt;}
.y16c{bottom:383.466667pt;}
.y92{bottom:388.640000pt;}
.y63{bottom:390.240000pt;}
.y205{bottom:390.560000pt;}
.y102{bottom:392.426667pt;}
.y13c{bottom:394.666667pt;}
.y22d{bottom:396.640000pt;}
.y245{bottom:397.600000pt;}
.yb9{bottom:397.920000pt;}
.y180{bottom:399.786667pt;}
.ya8{bottom:401.760000pt;}
.y4a{bottom:402.080000pt;}
.y1f0{bottom:403.360000pt;}
.y7c{bottom:403.680000pt;}
.ye0{bottom:407.466667pt;}
.y244{bottom:409.440000pt;}
.y10{bottom:411.040000pt;}
.y16b{bottom:414.506667pt;}
.yb8{bottom:417.440000pt;}
.y91{bottom:417.760000pt;}
.y62{bottom:419.680000pt;}
.y2f{bottom:420.320000pt;}
.yc3{bottom:423.200000pt;}
.y204{bottom:424.480000pt;}
.y13b{bottom:425.706667pt;}
.y22c{bottom:425.760000pt;}
.y1b7{bottom:426.080000pt;}
.y17f{bottom:430.506667pt;}
.ya7{bottom:431.200000pt;}
.y7b{bottom:432.800000pt;}
.yb7{bottom:436.960000pt;}
.y1ef{bottom:437.280000pt;}
.y19a{bottom:437.920000pt;}
.y101{bottom:440.106667pt;}
.y22b{bottom:440.160000pt;}
.y19b{bottom:442.346667pt;}
.y49{bottom:444.640000pt;}
.y90{bottom:447.200000pt;}
.y11c{bottom:447.466667pt;}
.y61{bottom:448.800000pt;}
.yf{bottom:451.360000pt;}
.yc2{bottom:452.320000pt;}
.y22a{bottom:454.880000pt;}
.yb6{bottom:456.480000pt;}
.y1ee{bottom:457.760000pt;}
.y203{bottom:458.400000pt;}
.ya6{bottom:460.320000pt;}
.y17d{bottom:461.546667pt;}
.y7a{bottom:462.240000pt;}
.ydd{bottom:462.560000pt;}
.y2e{bottom:463.200000pt;}
.y199{bottom:467.040000pt;}
.y1b6{bottom:467.360000pt;}
.y229{bottom:469.280000pt;}
.yde{bottom:472.106667pt;}
.y13a{bottom:473.386667pt;}
.ye{bottom:475.680000pt;}
.yb5{bottom:476.000000pt;}
.y8f{bottom:476.320000pt;}
.y11b{bottom:478.186667pt;}
.y60{bottom:478.240000pt;}
.y1ed{bottom:478.560000pt;}
.yc1{bottom:481.760000pt;}
.y228{bottom:484.000000pt;}
.y48{bottom:487.200000pt;}
.yfe{bottom:487.786667pt;}
.ya5{bottom:489.760000pt;}
.y79{bottom:491.680000pt;}
.y2d{bottom:492.320000pt;}
.y1b5{bottom:496.480000pt;}
.y227{bottom:498.400000pt;}
.y12e{bottom:504.106667pt;}
.y14e{bottom:505.120000pt;}
.y8e{bottom:505.760000pt;}
.ydc{bottom:506.080000pt;}
.y5f{bottom:507.360000pt;}
.y248{bottom:510.560000pt;}
.yc0{bottom:511.200000pt;}
.y1ec{bottom:512.480000pt;}
.y226{bottom:513.120000pt;}
.yd{bottom:513.760000pt;}
.y14f{bottom:514.666667pt;}
.yfd{bottom:518.506667pt;}
.ya4{bottom:519.200000pt;}
.y78{bottom:520.800000pt;}
.y2c{bottom:521.760000pt;}
.y1b4{bottom:525.920000pt;}
.y202{bottom:526.240000pt;}
.y225{bottom:527.520000pt;}
.y47{bottom:530.080000pt;}
.y1eb{bottom:532.960000pt;}
.y119{bottom:533.280000pt;}
.y8d{bottom:534.880000pt;}
.ydb{bottom:535.200000pt;}
.y5e{bottom:536.800000pt;}
.y198{bottom:537.386667pt;}
.ybf{bottom:540.320000pt;}
.y224{bottom:542.240000pt;}
.y11a{bottom:542.826667pt;}
.y16a{bottom:546.346667pt;}
.ya3{bottom:548.320000pt;}
.y14d{bottom:548.640000pt;}
.yfc{bottom:549.226667pt;}
.y247{bottom:549.280000pt;}
.y77{bottom:550.240000pt;}
.y2b{bottom:550.880000pt;}
.yc{bottom:551.520000pt;}
.y1b3{bottom:555.040000pt;}
.y223{bottom:556.640000pt;}
.y201{bottom:560.160000pt;}
.y8c{bottom:564.320000pt;}
.yda{bottom:564.640000pt;}
.y46{bottom:564.960000pt;}
.y5d{bottom:565.920000pt;}
.y1ea{bottom:566.880000pt;}
.ybe{bottom:569.760000pt;}
.y222{bottom:571.360000pt;}
.y197{bottom:573.546667pt;}
.y118{bottom:576.800000pt;}
.ya2{bottom:577.760000pt;}
.y76{bottom:579.360000pt;}
.yf9{bottom:580.266667pt;}
.y2a{bottom:580.320000pt;}
.y1b2{bottom:584.480000pt;}
.y221{bottom:586.080000pt;}
.y1e9{bottom:587.360000pt;}
.yb{bottom:589.280000pt;}
.y8b{bottom:593.440000pt;}
.yd9{bottom:594.080000pt;}
.y5c{bottom:595.360000pt;}
.y45{bottom:598.880000pt;}
.y220{bottom:600.480000pt;}
.ya1{bottom:606.880000pt;}
.y75{bottom:608.800000pt;}
.y196{bottom:609.386667pt;}
.y29{bottom:609.440000pt;}
.y17c{bottom:610.026667pt;}
.y1b1{bottom:613.920000pt;}
.y21f{bottom:615.200000pt;}
.y14a{bottom:618.986667pt;}
.y1e8{bottom:621.280000pt;}
.y8a{bottom:622.880000pt;}
.yd8{bottom:623.200000pt;}
.y5b{bottom:624.800000pt;}
.ya{bottom:627.040000pt;}
.y200{bottom:628.000000pt;}
.ybd{bottom:628.320000pt;}
.y21e{bottom:629.600000pt;}
.y44{bottom:632.800000pt;}
.ya0{bottom:636.320000pt;}
.y74{bottom:637.920000pt;}
.y28{bottom:638.880000pt;}
.y17b{bottom:641.066667pt;}
.y1e7{bottom:642.080000pt;}
.y1b0{bottom:643.040000pt;}
.y21d{bottom:644.320000pt;}
.y195{bottom:645.546667pt;}
.y114{bottom:647.146667pt;}
.y167{bottom:650.666667pt;}
.y89{bottom:652.320000pt;}
.yd7{bottom:652.640000pt;}
.y5a{bottom:653.920000pt;}
.ybc{bottom:657.440000pt;}
.y21c{bottom:658.720000pt;}
.y43{bottom:660.000000pt;}
.y1ff{bottom:661.920000pt;}
.y9{bottom:664.800000pt;}
.y9f{bottom:665.440000pt;}
.y73{bottom:667.360000pt;}
.y1af{bottom:672.480000pt;}
.y21b{bottom:673.440000pt;}
.y1e6{bottom:676.000000pt;}
.yf8{bottom:678.506667pt;}
.y14c{bottom:680.426667pt;}
.y18e{bottom:681.386667pt;}
.y27{bottom:681.440000pt;}
.yd6{bottom:681.760000pt;}
.ybb{bottom:686.880000pt;}
.y42{bottom:687.200000pt;}
.y21a{bottom:687.840000pt;}
.y9e{bottom:694.880000pt;}
.y179{bottom:695.840000pt;}
.y72{bottom:696.480000pt;}
.y59{bottom:696.800000pt;}
.y1ae{bottom:701.600000pt;}
.y8{bottom:702.240000pt;}
.y219{bottom:702.560000pt;}
.y17a{bottom:705.706667pt;}
.y117{bottom:708.266667pt;}
.yf7{bottom:709.226667pt;}
.yd5{bottom:711.200000pt;}
.y169{bottom:711.786667pt;}
.y41{bottom:714.400000pt;}
.y1e5{bottom:716.960000pt;}
.y192{bottom:717.226667pt;}
.y26{bottom:724.000000pt;}
.y71{bottom:725.920000pt;}
.y14b{bottom:728.106667pt;}
.y1fe{bottom:729.760000pt;}
.y1ad{bottom:731.040000pt;}
.y218{bottom:731.680000pt;}
.y1e4{bottom:737.760000pt;}
.y178{bottom:739.360000pt;}
.y7{bottom:740.000000pt;}
.yd4{bottom:740.320000pt;}
.y40{bottom:741.600000pt;}
.y217{bottom:746.080000pt;}
.y18d{bottom:753.386667pt;}
.y25{bottom:753.440000pt;}
.y70{bottom:755.040000pt;}
.y116{bottom:755.946667pt;}
.y168{bottom:759.466667pt;}
.y1ac{bottom:760.160000pt;}
.y216{bottom:760.800000pt;}
.y1fd{bottom:763.680000pt;}
.yf5{bottom:764.000000pt;}
.y3f{bottom:768.800000pt;}
.y58{bottom:769.440000pt;}
.yd3{bottom:769.760000pt;}
.y1e3{bottom:771.680000pt;}
.yf6{bottom:773.866667pt;}
.y215{bottom:775.200000pt;}
.y149{bottom:775.786667pt;}
.y6{bottom:777.760000pt;}
.y24{bottom:782.560000pt;}
.y6f{bottom:784.480000pt;}
.y1ab{bottom:789.600000pt;}
.y214{bottom:789.920000pt;}
.y1e2{bottom:792.160000pt;}
.y3e{bottom:796.320000pt;}
.y18b{bottom:796.640000pt;}
.y1fc{bottom:797.600000pt;}
.y57{bottom:798.560000pt;}
.yd2{bottom:798.880000pt;}
.y12d{bottom:801.066667pt;}
.y113{bottom:803.626667pt;}
.y213{bottom:804.320000pt;}
.y148{bottom:806.506667pt;}
.y166{bottom:807.146667pt;}
.yf4{bottom:807.840000pt;}
.y175{bottom:809.706667pt;}
.y23{bottom:812.000000pt;}
.y1e1{bottom:812.640000pt;}
.y5{bottom:815.520000pt;}
.y1aa{bottom:818.720000pt;}
.y212{bottom:819.040000pt;}
.y3d{bottom:823.520000pt;}
.y6e{bottom:827.360000pt;}
.y56{bottom:828.000000pt;}
.yd1{bottom:828.320000pt;}
.y1fb{bottom:831.520000pt;}
.y12c{bottom:831.786667pt;}
.y4{bottom:832.160000pt;}
.y211{bottom:833.440000pt;}
.y112{bottom:834.666667pt;}
.y147{bottom:837.546667pt;}
.y18a{bottom:837.920000pt;}
.y163{bottom:838.186667pt;}
.y22{bottom:841.440000pt;}
.y1e0{bottom:846.560000pt;}
.y1a9{bottom:848.160000pt;}
.y3c{bottom:850.720000pt;}
.y1fa{bottom:852.000000pt;}
.y12a{bottom:852.960000pt;}
.y55{bottom:857.120000pt;}
.y12b{bottom:862.506667pt;}
.y210{bottom:862.560000pt;}
.yd0{bottom:864.160000pt;}
.y189{bottom:864.800000pt;}
.y111{bottom:865.386667pt;}
.y1df{bottom:867.360000pt;}
.y146{bottom:868.266667pt;}
.y21{bottom:870.560000pt;}
.y177{bottom:871.146667pt;}
.y1a8{bottom:877.280000pt;}
.y3b{bottom:877.920000pt;}
.yf2{bottom:878.186667pt;}
.ycf{bottom:886.240000pt;}
.y54{bottom:886.560000pt;}
.y1f9{bottom:886.880000pt;}
.y3{bottom:887.200000pt;}
.y1de{bottom:887.840000pt;}
.y188{bottom:891.680000pt;}
.y10c{bottom:896.426667pt;}
.y129{bottom:896.480000pt;}
.y20{bottom:900.000000pt;}
.y3a{bottom:905.120000pt;}
.y20f{bottom:906.400000pt;}
.y1a7{bottom:906.720000pt;}
.y1dd{bottom:910.560000pt;}
.y53{bottom:916.000000pt;}
.y187{bottom:918.560000pt;}
.y176{bottom:918.826667pt;}
.y20e{bottom:922.400000pt;}
.y1f8{bottom:922.720000pt;}
.y246{bottom:924.320000pt;}
.y1f{bottom:929.120000pt;}
.y39{bottom:932.320000pt;}
.y162{bottom:932.906667pt;}
.y1a6{bottom:936.160000pt;}
.yf1{bottom:939.306667pt;}
.y2{bottom:943.520000pt;}
.y38{bottom:953.440000pt;}
.y186{bottom:958.240000pt;}
.y1e{bottom:958.560000pt;}
.y1dc{bottom:959.840000pt;}
.y243{bottom:961.760000pt;}
.y161{bottom:963.626667pt;}
.y145{bottom:966.506667pt;}
.y127{bottom:966.826667pt;}
.yef{bottom:986.986667pt;}
.y144{bottom:997.226667pt;}
.h37{height:29.120000pt;}
.h35{height:29.439987pt;}
.h3a{height:29.440000pt;}
.ha{height:30.080000pt;}
.h14{height:30.399987pt;}
.he{height:30.400000pt;}
.h19{height:33.600000pt;}
.h30{height:35.199987pt;}
.h2c{height:35.200027pt;}
.h31{height:35.519973pt;}
.h34{height:35.520000pt;}
.h2e{height:35.520013pt;}
.h38{height:35.840000pt;}
.h5{height:35.875000pt;}
.h3c{height:35.880000pt;}
.hb{height:39.058125pt;}
.h10{height:40.639973pt;}
.hf{height:40.640000pt;}
.h33{height:42.240013pt;}
.h8{height:45.937500pt;}
.h23{height:46.720013pt;}
.h1c{height:47.039960pt;}
.h20{height:47.039987pt;}
.h16{height:47.040000pt;}
.h18{height:47.040013pt;}
.h11{height:47.040040pt;}
.h6{height:47.503125pt;}
.h36{height:51.840000pt;}
.h4{height:52.781250pt;}
.h3b{height:56.306250pt;}
.h7{height:59.235000pt;}
.h12{height:60.479987pt;}
.h17{height:60.480000pt;}
.h1d{height:60.480027pt;}
.h21{height:60.799973pt;}
.h39{height:60.800000pt;}
.h24{height:60.800013pt;}
.h9{height:61.226250pt;}
.h2a{height:63.679973pt;}
.hc{height:64.000000pt;}
.h2f{height:71.359987pt;}
.h32{height:83.199987pt;}
.h2{height:89.750000pt;}
.h27{height:94.080000pt;}
.h1f{height:94.720000pt;}
.h3{height:96.930000pt;}
.h13{height:97.600013pt;}
.h2d{height:119.040000pt;}
.h28{height:131.199987pt;}
.h1a{height:131.200027pt;}
.hd{height:144.640000pt;}
.h2b{height:147.840000pt;}
.h1e{height:148.160000pt;}
.h1b{height:155.840000pt;}
.h15{height:156.160000pt;}
.h26{height:168.320000pt;}
.h25{height:204.800000pt;}
.h29{height:245.760000pt;}
.h22{height:296.320000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w14{width:45.440027pt;}
.w11{width:54.720013pt;}
.w12{width:64.000000pt;}
.w13{width:64.319987pt;}
.w6{width:99.520000pt;}
.w8{width:100.479987pt;}
.wa{width:100.480027pt;}
.w7{width:100.799987pt;}
.w9{width:101.120000pt;}
.wb{width:102.719987pt;}
.wf{width:103.679973pt;}
.wc{width:103.679987pt;}
.wd{width:103.680013pt;}
.we{width:104.000000pt;}
.w4{width:139.200000pt;}
.w5{width:143.680000pt;}
.w2{width:281.280000pt;}
.w3{width:283.520000pt;}
.w10{width:387.200000pt;}
.w15{width:618.560000pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x19{left:4.160053pt;}
.x13{left:6.719933pt;}
.x17{left:9.050267pt;}
.x2b{left:12.414933pt;}
.x29{left:13.771387pt;}
.x31{left:15.271387pt;}
.x39{left:18.598533pt;}
.x27{left:21.925067pt;}
.x1{left:24.000000pt;}
.x37{left:27.865200pt;}
.x25{left:29.195067pt;}
.x21{left:31.039867pt;}
.x22{left:31.994000pt;}
.x16{left:33.252400pt;}
.x23{left:34.271200pt;}
.x2d{left:35.551067pt;}
.x1d{left:42.838400pt;}
.x2a{left:50.440133pt;}
.x32{left:51.720000pt;}
.x18{left:56.004400pt;}
.x34{left:68.800000pt;}
.x1c{left:77.628400pt;}
.x20{left:81.123467pt;}
.x1b{left:84.747600pt;}
.x4{left:89.279933pt;}
.x15{left:90.483867pt;}
.x1f{left:93.050267pt;}
.x1e{left:97.878400pt;}
.x6{left:102.739893pt;}
.xf{left:103.946613pt;}
.x2{left:105.504227pt;}
.x12{left:106.560000pt;}
.x5{left:111.280000pt;}
.x11{left:113.280000pt;}
.xc{left:126.898800pt;}
.x33{left:137.280000pt;}
.x8{left:159.375333pt;}
.xa{left:164.598000pt;}
.xb{left:207.191733pt;}
.x2c{left:209.920000pt;}
.x3{left:244.887067pt;}
.x9{left:282.228800pt;}
.x24{left:308.160000pt;}
.x2e{left:314.240000pt;}
.x7{left:342.717067pt;}
.x3b{left:373.120133pt;}
.x14{left:388.480000pt;}
.x26{left:409.280000pt;}
.x2f{left:418.560000pt;}
.x35{left:456.960000pt;}
.x28{left:511.040000pt;}
.x36{left:512.320000pt;}
.xd{left:516.946533pt;}
.x30{left:523.200000pt;}
.x1a{left:528.320000pt;}
.x3a{left:570.879867pt;}
.x38{left:576.960000pt;}
.x3c{left:597.346400pt;}
.x3d{left:605.280000pt;}
.x10{left:641.346000pt;}
.xe{left:648.779600pt;}
}




    .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; }
  