
    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_67d5bdeea5d7001980365cdc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bb1ddae5883ca7b1bec3d0a8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_db43f8ebdde0e611c704c82d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.915039;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_7781880a59a0b91b4835a27e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_39d833c183a7bd02eaeb5d83.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bb5ebf7ad447b5e6f94b628e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_f56ac3a510f2b50abce046d8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.801000;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_54c593cc24a35ed1fd40c1c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_bd266895d56825e89c8f443d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_57992900b8d8a1c16eefb071.woff')format("woff");}.ffa{font-family:ffa;line-height:0.677734;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_bcb5658d9441a81f88a6c077.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916016;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_2ebb254e9bf113e121053aff.woff')format("woff");}.ffc{font-family:ffc;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;}
.m4{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,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);}
.m3{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274723,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289552,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.345840px;}
.ls75{letter-spacing:-14.400000px;}
.ls1c{letter-spacing:-12.983040px;}
.ls6a{letter-spacing:-7.918560px;}
.ls5b{letter-spacing:-6.486480px;}
.ls16{letter-spacing:-4.835520px;}
.ls8{letter-spacing:-4.633200px;}
.ls14{letter-spacing:-3.576960px;}
.ls4c{letter-spacing:-1.600560px;}
.ls2c{letter-spacing:-1.432080px;}
.ls38{letter-spacing:-1.263600px;}
.ls4a{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-1.179360px;}
.ls29{letter-spacing:-1.095120px;}
.lsb{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-1.010880px;}
.ls47{letter-spacing:-0.988186px;}
.ls7d{letter-spacing:-0.926640px;}
.ls41{letter-spacing:-0.842454px;}
.ls3d{letter-spacing:-0.842400px;}
.ls2f{letter-spacing:-0.758160px;}
.ls3f{letter-spacing:-0.748848px;}
.ls31{letter-spacing:-0.673920px;}
.ls13{letter-spacing:-0.596160px;}
.ls5a{letter-spacing:-0.589680px;}
.ls1d{letter-spacing:-0.529920px;}
.ls30{letter-spacing:-0.505440px;}
.ls2b{letter-spacing:-0.421200px;}
.ls18{letter-spacing:-0.397440px;}
.ls26{letter-spacing:-0.336960px;}
.ls24{letter-spacing:-0.324000px;}
.ls6{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.252720px;}
.ls7{letter-spacing:-0.240480px;}
.lsd{letter-spacing:-0.216000px;}
.ls72{letter-spacing:-0.208966px;}
.ls27{letter-spacing:-0.168480px;}
.ls48{letter-spacing:-0.156029px;}
.ls4{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.119520px;}
.ls59{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.093606px;}
.ls2a{letter-spacing:-0.084240px;}
.lsc{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.052010px;}
.ls2{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.018000px;}
.ls43{letter-spacing:0.052010px;}
.ls15{letter-spacing:0.066240px;}
.ls58{letter-spacing:0.067392px;}
.lsa{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.084240px;}
.ls81{letter-spacing:0.098228px;}
.ls25{letter-spacing:0.108000px;}
.ls68{letter-spacing:0.109512px;}
.ls57{letter-spacing:0.126360px;}
.ls56{letter-spacing:0.134784px;}
.ls3{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.168480px;}
.ls12{letter-spacing:0.191520px;}
.ls6e{letter-spacing:0.193752px;}
.ls7f{letter-spacing:0.196457px;}
.ls67{letter-spacing:0.202176px;}
.ls66{letter-spacing:0.210600px;}
.lsf{letter-spacing:0.216000px;}
.ls69{letter-spacing:0.227448px;}
.ls2e{letter-spacing:0.252720px;}
.ls1a{letter-spacing:0.264960px;}
.ls39{letter-spacing:0.269568px;}
.ls5{letter-spacing:0.288000px;}
.ls65{letter-spacing:0.303264px;}
.ls1b{letter-spacing:0.331200px;}
.ls2d{letter-spacing:0.336960px;}
.lse{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.421200px;}
.ls21{letter-spacing:0.429624px;}
.ls77{letter-spacing:0.438048px;}
.ls1f{letter-spacing:0.497016px;}
.ls32{letter-spacing:0.505440px;}
.ls23{letter-spacing:0.552240px;}
.ls74{letter-spacing:0.589680px;}
.ls36{letter-spacing:0.673920px;}
.ls49{letter-spacing:0.702000px;}
.ls42{letter-spacing:0.916560px;}
.ls78{letter-spacing:1.095120px;}
.ls70{letter-spacing:2.160000px;}
.ls1e{letter-spacing:5.034240px;}
.ls76{letter-spacing:5.762880px;}
.ls44{letter-spacing:5.933520px;}
.ls63{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.352640px;}
.ls64{letter-spacing:7.920000px;}
.ls45{letter-spacing:9.020880px;}
.ls6b{letter-spacing:9.360000px;}
.ls55{letter-spacing:9.687600px;}
.ls7a{letter-spacing:11.962080px;}
.ls0{letter-spacing:13.248000px;}
.ls1{letter-spacing:13.968000px;}
.ls79{letter-spacing:14.826240px;}
.ls34{letter-spacing:19.038240px;}
.ls37{letter-spacing:19.796400px;}
.ls73{letter-spacing:20.470320px;}
.ls7e{letter-spacing:22.660560px;}
.ls7b{letter-spacing:29.147040px;}
.ls33{letter-spacing:29.820960px;}
.ls35{letter-spacing:39.929760px;}
.ls52{letter-spacing:49.364640px;}
.ls6d{letter-spacing:80.954640px;}
.ls71{letter-spacing:83.144880px;}
.ls6c{letter-spacing:85.335120px;}
.ls6f{letter-spacing:89.631360px;}
.ls7c{letter-spacing:121.305600px;}
.ls3b{letter-spacing:146.847378px;}
.ls4e{letter-spacing:148.009680px;}
.ls53{letter-spacing:174.629520px;}
.ls54{letter-spacing:176.061600px;}
.ls51{letter-spacing:209.167920px;}
.ls4f{letter-spacing:238.736160px;}
.ls5d{letter-spacing:368.297280px;}
.ls80{letter-spacing:472.773682px;}
.ls5f{letter-spacing:604.506240px;}
.ls50{letter-spacing:645.531120px;}
.ls60{letter-spacing:770.796000px;}
.ls5c{letter-spacing:843.495120px;}
.ls3a{letter-spacing:849.029760px;}
.ls4d{letter-spacing:875.927520px;}
.ls5e{letter-spacing:878.117760px;}
.ls61{letter-spacing:879.549840px;}
.ls62{letter-spacing:901.115280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(44,47,49),0 0.015em rgb(44,47,49),0.015em 0 rgb(44,47,49),0 -0.015em  rgb(44,47,49);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(44,47,49);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws42{word-spacing:-84.240000px;}
.ws0{word-spacing:-32.688000px;}
.ws14{word-spacing:-28.249200px;}
.ws2a{word-spacing:-24.516000px;}
.ws6c{word-spacing:-24.300000px;}
.ws7f{word-spacing:-22.297847px;}
.ws1a{word-spacing:-21.594240px;}
.ws40{word-spacing:-19.543680px;}
.ws49{word-spacing:-19.290960px;}
.ws43{word-spacing:-19.206720px;}
.ws2b{word-spacing:-19.122480px;}
.ws2f{word-spacing:-19.038240px;}
.ws2d{word-spacing:-18.954000px;}
.ws2e{word-spacing:-18.869760px;}
.ws1{word-spacing:-18.785520px;}
.ws2c{word-spacing:-18.701280px;}
.ws30{word-spacing:-18.617040px;}
.ws71{word-spacing:-18.532800px;}
.ws6d{word-spacing:-18.448560px;}
.ws51{word-spacing:-18.364320px;}
.ws72{word-spacing:-18.280080px;}
.ws4a{word-spacing:-18.195840px;}
.ws48{word-spacing:-18.027360px;}
.ws3f{word-spacing:-17.943120px;}
.ws65{word-spacing:-17.774640px;}
.ws5f{word-spacing:-17.437680px;}
.ws3{word-spacing:-16.493760px;}
.ws2{word-spacing:-16.344000px;}
.ws15{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.705280px;}
.ws19{word-spacing:-14.572800px;}
.ws6f{word-spacing:-12.551760px;}
.ws52{word-spacing:-12.204000px;}
.ws5b{word-spacing:-11.806225px;}
.ws56{word-spacing:-11.598185px;}
.ws75{word-spacing:-11.597591px;}
.ws5e{word-spacing:-11.016000px;}
.ws54{word-spacing:-10.766029px;}
.ws4e{word-spacing:-10.577478px;}
.ws4c{word-spacing:-10.483872px;}
.ws16{word-spacing:-10.134720px;}
.ws4d{word-spacing:-9.735024px;}
.ws5d{word-spacing:-8.104320px;}
.ws79{word-spacing:-5.034240px;}
.ws5c{word-spacing:-5.016960px;}
.ws7a{word-spacing:-3.600000px;}
.ws1b{word-spacing:-3.576960px;}
.ws44{word-spacing:-1.179360px;}
.ws80{word-spacing:-1.095120px;}
.ws27{word-spacing:-0.927360px;}
.ws77{word-spacing:-0.926640px;}
.ws24{word-spacing:-0.861120px;}
.ws6e{word-spacing:-0.673920px;}
.ws20{word-spacing:-0.662400px;}
.ws1d{word-spacing:-0.596160px;}
.ws3d{word-spacing:-0.589680px;}
.ws3a{word-spacing:-0.505440px;}
.ws23{word-spacing:-0.463680px;}
.ws6{word-spacing:-0.432000px;}
.ws35{word-spacing:-0.421200px;}
.ws3c{word-spacing:-0.336960px;}
.ws3e{word-spacing:-0.252720px;}
.ws8{word-spacing:-0.240480px;}
.ws25{word-spacing:-0.198720px;}
.ws32{word-spacing:-0.168480px;}
.ws28{word-spacing:-0.132480px;}
.ws81{word-spacing:-0.098228px;}
.ws37{word-spacing:-0.084240px;}
.wsa{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws50{word-spacing:0.053065px;}
.ws45{word-spacing:0.084240px;}
.ws82{word-spacing:0.098228px;}
.ws5{word-spacing:0.144000px;}
.ws36{word-spacing:0.168480px;}
.ws73{word-spacing:0.216000px;}
.ws3b{word-spacing:0.252720px;}
.ws7{word-spacing:0.288000px;}
.ws41{word-spacing:0.324000px;}
.ws33{word-spacing:0.336960px;}
.ws38{word-spacing:0.421200px;}
.ws31{word-spacing:0.432000px;}
.ws70{word-spacing:0.505440px;}
.ws29{word-spacing:0.529920px;}
.ws1f{word-spacing:0.596160px;}
.ws26{word-spacing:0.662400px;}
.ws76{word-spacing:0.673920px;}
.ws1e{word-spacing:0.728640px;}
.ws47{word-spacing:0.758160px;}
.ws4f{word-spacing:0.842400px;}
.ws46{word-spacing:0.926640px;}
.wse{word-spacing:1.080000px;}
.ws34{word-spacing:1.095120px;}
.ws4b{word-spacing:1.111208px;}
.ws62{word-spacing:1.263600px;}
.ws39{word-spacing:1.432080px;}
.ws60{word-spacing:3.453840px;}
.ws1c{word-spacing:3.576960px;}
.ws9{word-spacing:4.296240px;}
.ws66{word-spacing:5.054400px;}
.ws21{word-spacing:7.485120px;}
.ws22{word-spacing:7.750080px;}
.ws74{word-spacing:7.918560px;}
.ws69{word-spacing:8.929440px;}
.ws67{word-spacing:9.350640px;}
.wsb{word-spacing:10.224000px;}
.wsc{word-spacing:10.296000px;}
.wsd{word-spacing:10.512000px;}
.ws7d{word-spacing:12.130560px;}
.ws7c{word-spacing:12.299040px;}
.wsf{word-spacing:13.320000px;}
.ws18{word-spacing:13.579200px;}
.ws11{word-spacing:13.608000px;}
.ws10{word-spacing:14.184000px;}
.ws7b{word-spacing:14.994720px;}
.ws6a{word-spacing:15.163200px;}
.ws7e{word-spacing:15.840000px;}
.ws83{word-spacing:17.280000px;}
.ws78{word-spacing:25.200000px;}
.ws64{word-spacing:26.451360px;}
.ws12{word-spacing:92.088000px;}
.ws13{word-spacing:92.952000px;}
.ws61{word-spacing:109.512000px;}
.ws68{word-spacing:117.683280px;}
.ws6b{word-spacing:124.590960px;}
.ws59{word-spacing:155.005740px;}
.ws63{word-spacing:173.534400px;}
.ws5a{word-spacing:178.929527px;}
.ws55{word-spacing:203.546366px;}
.ws58{word-spacing:214.884022px;}
.ws57{word-spacing:227.020043px;}
.ws53{word-spacing:369.803360px;}
._1e{margin-left:-18.964800px;}
._11{margin-left:-16.549056px;}
._12{margin-left:-14.679360px;}
._c{margin-left:-12.811320px;}
._b{margin-left:-11.275200px;}
._10{margin-left:-8.856000px;}
._d{margin-left:-7.358400px;}
._f{margin-left:-6.119424px;}
._3{margin-left:-4.896000px;}
._a{margin-left:-3.484800px;}
._1{margin-left:-2.462400px;}
._2{margin-left:-1.108800px;}
._4{width:1.296000px;}
._16{width:2.299752px;}
._6{width:3.319056px;}
._5{width:4.506840px;}
._7{width:5.660928px;}
._e{width:7.036920px;}
._8{width:10.108800px;}
._1f{width:12.933636px;}
._9{width:14.328000px;}
._17{width:120.314819px;}
._1a{width:130.574641px;}
._1b{width:320.899141px;}
._1d{width:323.729205px;}
._1c{width:326.559787px;}
._18{width:355.922409px;}
._23{width:368.297280px;}
._19{width:492.120841px;}
._20{width:586.226160px;}
._21{width:690.178320px;}
._13{width:839.592000px;}
._15{width:844.927200px;}
._14{width:847.728000px;}
._22{width:853.014240px;}
._0{width:1387.463040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(97,159,106);}
.fc4{color:transparent;}
.fc1{color:rgb(81,114,124);}
.fc0{color:rgb(44,47,49);}
.fse{font-size:30.240000px;}
.fsc{font-size:46.803000px;}
.fsa{font-size:48.240000px;}
.fsf{font-size:52.009800px;}
.fs10{font-size:52.241400px;}
.fsb{font-size:53.064600px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs11{font-size:70.517400px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs12{font-size:98.228400px;}
.fs9{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs1{font-size:126.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.yac{bottom:-45.526800px;}
.yab{bottom:-29.607450px;}
.yaa{bottom:-13.688100px;}
.y0{bottom:0.000000px;}
.yf1{bottom:5.580000px;}
.y100{bottom:5.760000px;}
.ye0{bottom:11.241150px;}
.y1b7{bottom:11.371800px;}
.yed{bottom:14.040000px;}
.yf4{bottom:14.220000px;}
.yb0{bottom:16.888500px;}
.y217{bottom:21.228300px;}
.ydf{bottom:26.844000px;}
.y165{bottom:27.360000px;}
.yaf{bottom:30.901350px;}
.yf0{bottom:31.320000px;}
.y119{bottom:42.300000px;}
.yde{bottom:42.446850px;}
.y11f{bottom:42.480000px;}
.yae{bottom:44.914350px;}
.y216{bottom:50.696850px;}
.y5{bottom:53.280000px;}
.y16a{bottom:58.860000px;}
.yad{bottom:100.966050px;}
.ydb{bottom:110.160000px;}
.y1fa{bottom:111.629700px;}
.yda{bottom:114.660000px;}
.y107{bottom:116.815140px;}
.y1f8{bottom:118.756800px;}
.y1f9{bottom:118.800000px;}
.y14d{bottom:122.751180px;}
.yd9{bottom:127.085760px;}
.y92{bottom:127.784340px;}
.y1d{bottom:132.300000px;}
.y16b{bottom:135.720000px;}
.y1d0{bottom:139.493880px;}
.y1fb{bottom:140.112150px;}
.y191{bottom:146.152440px;}
.yd8{bottom:148.680000px;}
.y106{bottom:150.300000px;}
.y1c{bottom:151.200000px;}
.y14c{bottom:152.087760px;}
.y7c{bottom:152.263620px;}
.y102{bottom:163.440000px;}
.y1b5{bottom:164.592900px;}
.y91{bottom:168.640740px;}
.y1cf{bottom:169.020000px;}
.yd7{bottom:170.100000px;}
.y1b{bottom:173.160000px;}
.y14b{bottom:181.613880px;}
.ya9{bottom:182.443950px;}
.y190{bottom:184.671180px;}
.y7b{bottom:190.613880px;}
.y1a{bottom:195.300000px;}
.y1b4{bottom:203.111640px;}
.y14a{bottom:211.140000px;}
.y1b6{bottom:212.497500px;}
.y4c{bottom:214.020000px;}
.y18f{bottom:214.197300px;}
.y103{bottom:214.380000px;}
.yd6{bottom:215.271000px;}
.y1ce{bottom:216.540000px;}
.y13b{bottom:216.720000px;}
.y7a{bottom:220.140000px;}
.y19{bottom:226.260000px;}
.ydd{bottom:234.679350px;}
.y1b3{bottom:241.630380px;}
.y18e{bottom:243.533880px;}
.yd5{bottom:244.797120px;}
.y4b{bottom:248.220000px;}
.y149{bottom:249.660000px;}
.y1cd{bottom:254.875140px;}
.y13a{bottom:254.880000px;}
.y79{bottom:258.660000px;}
.y18{bottom:265.997700px;}
.y1b2{bottom:271.156500px;}
.y18d{bottom:273.060000px;}
.y11e{bottom:274.500000px;}
.y214{bottom:280.181700px;}
.y15a{bottom:280.945980px;}
.ya7{bottom:282.420000px;}
.y4a{bottom:283.654080px;}
.y139{bottom:284.400000px;}
.y148{bottom:288.171180px;}
.yd4{bottom:292.141260px;}
.y120{bottom:292.680000px;}
.y1cc{bottom:293.393880px;}
.y78{bottom:297.171180px;}
.y1b1{bottom:300.493080px;}
.y213{bottom:305.917020px;}
.y1dd{bottom:307.620000px;}
.y17{bottom:309.023280px;}
.yc4{bottom:310.850640px;}
.y18c{bottom:311.580000px;}
.y49{bottom:313.180200px;}
.y1f7{bottom:314.425260px;}
.y11d{bottom:316.800000px;}
.ya6{bottom:317.147580px;}
.y147{bottom:317.507760px;}
.y159{bottom:319.296240px;}
.y1cb{bottom:322.913880px;}
.y138{bottom:322.920000px;}
.y77{bottom:326.507760px;}
.y105{bottom:326.524680px;}
.y1b0{bottom:330.019200px;}
.yd3{bottom:330.660000px;}
.y212{bottom:331.483860px;}
.y1f6{bottom:339.992100px;}
.y1dc{bottom:344.884320px;}
.y118{bottom:345.780000px;}
.y146{bottom:347.033880px;}
.y158{bottom:348.822360px;}
.yc3{bottom:349.200900px;}
.y18b{bottom:350.085060px;}
.y48{bottom:351.698940px;}
.ya5{bottom:351.707040px;}
.y16{bottom:352.048860px;}
.y104{bottom:352.260000px;}
.y1ca{bottom:352.429740px;}
.y76{bottom:356.033880px;}
.y211{bottom:357.219180px;}
.y1af{bottom:359.545320px;}
.y137{bottom:361.375020px;}
.y11a{bottom:363.960000px;}
.y11c{bottom:363.966300px;}
.y1f5{bottom:365.727420px;}
.y61{bottom:366.660000px;}
.y145{bottom:376.560000px;}
.yd2{bottom:378.180000px;}
.y18a{bottom:379.611180px;}
.y47{bottom:381.225060px;}
.y210{bottom:382.786020px;}
.y75{bottom:385.560000px;}
.yc2{bottom:387.719640px;}
.y117{bottom:387.900000px;}
.y11b{bottom:388.080000px;}
.y1ae{bottom:389.071440px;}
.y157{bottom:390.036780px;}
.ya4{bottom:390.057300px;}
.y1c9{bottom:390.782520px;}
.y1f4{bottom:395.064000px;}
.y15{bottom:395.074440px;}
.y101{bottom:398.520000px;}
.y136{bottom:399.893760px;}
.y60{bottom:405.000000px;}
.y20f{bottom:408.521340px;}
.y189{bottom:408.947760px;}
.y46{bottom:410.561640px;}
.y144{bottom:415.080000px;}
.yd1{bottom:416.521260px;}
.y1ad{bottom:418.408020px;}
.ya3{bottom:419.583420px;}
.y74{bottom:424.063620px;}
.y1f3{bottom:424.400580px;}
.y1c8{bottom:429.301260px;}
.y20e{bottom:434.088180px;}
.y5f{bottom:434.520000px;}
.yc1{bottom:435.231000px;}
.y116{bottom:435.255840px;}
.y14{bottom:437.910480px;}
.y135{bottom:438.244020px;}
.y188{bottom:438.473880px;}
.y45{bottom:440.087760px;}
.y1ac{bottom:447.934140px;}
.ya2{bottom:448.920000px;}
.yff{bottom:450.540000px;}
.y143{bottom:453.407760px;}
.y1f2{bottom:453.926700px;}
.yd0{bottom:455.013540px;}
.y115{bottom:459.180000px;}
.y20d{bottom:459.655020px;}
.y73{bottom:462.413880px;}
.y1c7{bottom:467.813880px;}
.y187{bottom:468.000000px;}
.y44{bottom:469.613880px;}
.yc0{bottom:473.581260px;}
.y5e{bottom:475.149780px;}
.y134{bottom:476.762760px;}
.y1ab{bottom:477.460260px;}
.y13{bottom:480.936060px;}
.y90{bottom:481.845060px;}
.y142{bottom:482.933880px;}
.y1f1{bottom:483.452820px;}
.y162{bottom:484.380000px;}
.y20c{bottom:485.390340px;}
.ya1{bottom:487.440000px;}
.y72{bottom:491.940000px;}
.ycf{bottom:493.532280px;}
.y1c6{bottom:497.340000px;}
.y43{bottom:499.140000px;}
.yfe{bottom:502.560000px;}
.y186{bottom:506.520000px;}
.y113{bottom:506.535840px;}
.y1aa{bottom:506.986380px;}
.y20b{bottom:510.957180px;}
.y8f{bottom:511.371180px;}
.ybf{bottom:512.100000px;}
.y141{bottom:512.460000px;}
.y1f0{bottom:512.978940px;}
.y5d{bottom:513.500040px;}
.y133{bottom:515.281500px;}
.y12{bottom:523.961640px;}
.ya0{bottom:528.300000px;}
.y71{bottom:530.460000px;}
.y114{bottom:530.481060px;}
.yce{bottom:532.051020px;}
.y168{bottom:533.340000px;}
.y1c5{bottom:535.860000px;}
.y1a9{bottom:536.512500px;}
.y20a{bottom:536.692500px;}
.y42{bottom:537.444000px;}
.yfd{bottom:537.480000px;}
.y8e{bottom:540.707760px;}
.y1ef{bottom:542.315520px;}
.y5c{bottom:543.026160px;}
.y132{bottom:544.807620px;}
.y185{bottom:544.832820px;}
.y140{bottom:550.980000px;}
.ybe{bottom:559.440000px;}
.y209{bottom:562.259340px;}
.y1a8{bottom:565.849080px;}
.y41{bottom:566.970120px;}
.y11{bottom:566.987220px;}
.y9f{bottom:568.949760px;}
.y8d{bottom:570.233880px;}
.ycd{bottom:570.569760px;}
.y70{bottom:571.320000px;}
.y1ee{bottom:571.841640px;}
.yfc{bottom:572.220000px;}
.y131{bottom:574.144200px;}
.y1c4{bottom:574.196400px;}
.y184{bottom:574.358940px;}
.y1a3{bottom:577.389960px;}
.y112{bottom:577.805400px;}
.y5b{bottom:581.544900px;}
.y208{bottom:587.826180px;}
.y2f{bottom:589.320000px;}
.y13f{bottom:591.840000px;}
.y1a7{bottom:595.375200px;}
.y40{bottom:596.496240px;}
.ybd{bottom:597.960900px;}
.y167{bottom:599.580000px;}
.y8c{bottom:599.760000px;}
.y1ed{bottom:601.367760px;}
.y130{bottom:603.670320px;}
.y183{bottom:603.885060px;}
.yfb{bottom:606.960000px;}
.y9e{bottom:607.468500px;}
.y6f{bottom:607.860000px;}
.ycc{bottom:608.920020px;}
.y10{bottom:610.012800px;}
.y1c3{bottom:612.715140px;}
.y207{bottom:613.561500px;}
.y111{bottom:615.250080px;}
.y1a2{bottom:615.908700px;}
.y5a{bottom:620.063640px;}
.y2e{bottom:622.260000px;}
.y1a6{bottom:624.901320px;}
.y3f{bottom:626.022360px;}
.y13e{bottom:628.380000px;}
.y10f{bottom:628.749540px;}
.y1ec{bottom:630.893880px;}
.y12f{bottom:633.196440px;}
.y182{bottom:633.411180px;}
.ybc{bottom:636.479640px;}
.y6e{bottom:637.704000px;}
.y8b{bottom:638.280000px;}
.ycb{bottom:638.446140px;}
.y206{bottom:639.128340px;}
.yfa{bottom:641.880000px;}
.y9d{bottom:645.818760px;}
.y59{bottom:649.400220px;}
.y1c2{bottom:651.233880px;}
.y110{bottom:652.694760px;}
.yf{bottom:652.848840px;}
.y10e{bottom:652.863240px;}
.y2d{bottom:653.026320px;}
.y1a1{bottom:654.427440px;}
.y3e{bottom:655.548480px;}
.y13d{bottom:658.216440px;}
.y205{bottom:659.114280px;}
.y215{bottom:659.232000px;}
.y1eb{bottom:660.420000px;}
.y12e{bottom:662.722560px;}
.y181{bottom:662.937300px;}
.y166{bottom:665.820000px;}
.y6d{bottom:667.230120px;}
.y9c{bottom:675.344880px;}
.y8a{bottom:676.620000px;}
.yca{bottom:676.964880px;}
.y58{bottom:678.926340px;}
.y1c1{bottom:680.757300px;}
.ya8{bottom:681.559500px;}
.y2c{bottom:683.629200px;}
.y1a0{bottom:683.764020px;}
.ybb{bottom:683.822520px;}
.y3d{bottom:684.885060px;}
.y13c{bottom:687.742560px;}
.y1ea{bottom:692.100000px;}
.y12d{bottom:692.248680px;}
.y180{bottom:692.273880px;}
.yf9{bottom:693.900000px;}
.ye{bottom:695.874420px;}
.y6c{bottom:696.756240px;}
.y10d{bottom:700.016580px;}
.y164{bottom:704.700000px;}
.y156{bottom:706.126320px;}
.y57{bottom:708.452460px;}
.y1c0{bottom:710.093880px;}
.y19f{bottom:713.290140px;}
.y9b{bottom:713.863620px;}
.y2b{bottom:714.049920px;}
.y3c{bottom:714.411180px;}
.yc9{bottom:715.483620px;}
.y89{bottom:717.480000px;}
.y12c{bottom:721.585260px;}
.y17f{bottom:721.800000px;}
.yba{bottom:722.341260px;}
.y1e9{bottom:723.758940px;}
.yeb{bottom:725.554440px;}
.y6b{bottom:726.092820px;}
.yf8{bottom:728.640000px;}
.y163{bottom:732.060000px;}
.y10c{bottom:733.860000px;}
.y155{bottom:735.652440px;}
.y1db{bottom:736.366320px;}
.y224{bottom:736.553160px;}
.y56{bottom:737.978580px;}
.yd{bottom:738.900000px;}
.y1bf{bottom:739.620000px;}
.y19e{bottom:742.816260px;}
.y9a{bottom:743.389740px;}
.y3b{bottom:743.937300px;}
.y2a{bottom:744.470640px;}
.y12b{bottom:751.111380px;}
.y88{bottom:752.220000px;}
.y1e8{bottom:753.285060px;}
.yc8{bottom:753.833880px;}
.y6a{bottom:755.618940px;}
.y10b{bottom:759.081600px;}
.y17e{bottom:760.320000px;}
.yb9{bottom:760.860000px;}
.y223{bottom:762.120000px;}
.yf7{bottom:763.380000px;}
.yea{bottom:763.715160px;}
.y154{bottom:765.178560px;}
.y1da{bottom:765.892440px;}
.y55{bottom:767.504700px;}
.y19d{bottom:772.342380px;}
.y99{bottom:772.726320px;}
.y3a{bottom:773.463420px;}
.y29{bottom:775.073520px;}
.y1be{bottom:778.140000px;}
.y10a{bottom:780.493680px;}
.y12a{bottom:780.637500px;}
.y87{bottom:781.721640px;}
.y1e7{bottom:782.811180px;}
.yc7{bottom:783.360000px;}
.y69{bottom:785.145060px;}
.yc{bottom:786.060000px;}
.y222{bottom:787.860000px;}
.y153{bottom:794.704680px;}
.y1d9{bottom:795.229020px;}
.yf6{bottom:798.300000px;}
.y175{bottom:799.560000px;}
.y17d{bottom:801.180000px;}
.y19c{bottom:801.868500px;}
.y109{bottom:801.905760px;}
.ye9{bottom:802.233900px;}
.y98{bottom:802.252440px;}
.y39{bottom:802.800000px;}
.y28{bottom:805.494240px;}
.y54{bottom:805.854960px;}
.yb8{bottom:808.200000px;}
.y129{bottom:810.163620px;}
.y86{bottom:811.247760px;}
.y1e6{bottom:812.147760px;}
.y221{bottom:813.420000px;}
.y68{bottom:814.671180px;}
.y1bd{bottom:816.667200px;}
.y108{bottom:823.500000px;}
.y152{bottom:824.041260px;}
.y1d8{bottom:824.755140px;}
.yc6{bottom:830.880000px;}
.y19b{bottom:831.205080px;}
.y97{bottom:831.778560px;}
.y38{bottom:832.294080px;}
.yf5{bottom:833.040000px;}
.y27{bottom:835.914960px;}
.y17c{bottom:837.720000px;}
.y220{bottom:839.151000px;}
.y128{bottom:839.500200px;}
.ye8{bottom:840.752640px;}
.y85{bottom:840.773880px;}
.y1e5{bottom:841.673880px;}
.y174{bottom:843.660000px;}
.y67{bottom:844.197300px;}
.y53{bottom:844.373700px;}
.yb{bottom:844.560000px;}
.yb7{bottom:846.709380px;}
.y1bc{bottom:855.185940px;}
.y19a{bottom:860.731200px;}
.y151{bottom:862.560000px;}
.y1d7{bottom:863.273880px;}
.y21f{bottom:864.717840px;}
.y26{bottom:866.517840px;}
.y17b{bottom:867.591180px;}
.yf3{bottom:867.780000px;}
.y160{bottom:868.143960px;}
.y127{bottom:869.026320px;}
.ye7{bottom:870.278760px;}
.y96{bottom:870.297300px;}
.y84{bottom:870.300000px;}
.y37{bottom:870.812820px;}
.y1e4{bottom:871.200000px;}
.yc5{bottom:872.820000px;}
.ydc{bottom:872.826000px;}
.y173{bottom:873.180000px;}
.y66{bottom:873.533880px;}
.y52{bottom:882.892440px;}
.y1bb{bottom:884.522520px;}
.yb6{bottom:885.059640px;}
.y199{bottom:890.257320px;}
.y21e{bottom:890.284680px;}
.y1d6{bottom:892.800000px;}
.ya{bottom:894.960000px;}
.y25{bottom:896.938560px;}
.y17a{bottom:897.117300px;}
.y126{bottom:898.552440px;}
.ye6{bottom:899.804880px;}
.y95{bottom:899.823420px;}
.y36{bottom:900.338940px;}
.y150{bottom:901.080000px;}
.y161{bottom:901.081800px;}
.yf2{bottom:902.700000px;}
.y65{bottom:903.060000px;}
.y83{bottom:908.820000px;}
.y15f{bottom:910.980000px;}
.y172{bottom:911.506320px;}
.y204{bottom:915.246000px;}
.y21d{bottom:916.020000px;}
.y198{bottom:919.783440px;}
.y51{bottom:921.411180px;}
.y1ba{bottom:923.041260px;}
.y179{bottom:926.643420px;}
.y24{bottom:927.359280px;}
.y125{bottom:928.078560px;}
.y94{bottom:929.160000px;}
.y35{bottom:929.865060px;}
.y1d5{bottom:931.143780px;}
.yb5{bottom:932.571000px;}
.ye5{bottom:938.155140px;}
.y1e3{bottom:939.948840px;}
.y203{bottom:940.981320px;}
.y14f{bottom:941.940000px;}
.y64{bottom:943.920000px;}
.y82{bottom:947.145060px;}
.y197{bottom:949.120020px;}
.y171{bottom:950.025060px;}
.y50{bottom:950.747760px;}
.yef{bottom:954.720000px;}
.y178{bottom:955.980000px;}
.y124{bottom:957.604680px;}
.y23{bottom:957.962160px;}
.y9{bottom:959.040000px;}
.y34{bottom:959.201640px;}
.y21c{bottom:959.584680px;}
.y1b9{bottom:961.560000px;}
.y1e2{bottom:965.684160px;}
.y202{bottom:966.548160px;}
.y15e{bottom:967.320000px;}
.y93{bottom:967.680000px;}
.y1d4{bottom:969.662520px;}
.yb4{bottom:971.089740px;}
.y14e{bottom:976.500000px;}
.y81{bottom:976.671180px;}
.ye4{bottom:976.673880px;}
.y1a5{bottom:978.646140px;}
.y170{bottom:979.551180px;}
.y4f{bottom:980.273880px;}
.y21b{bottom:985.320000px;}
.y123{bottom:986.941260px;}
.y196{bottom:987.638760px;}
.y22{bottom:988.382880px;}
.y33{bottom:988.727760px;}
.y1e1{bottom:991.251000px;}
.y201{bottom:993.378600px;}
.y63{bottom:994.860000px;}
.y177{bottom:996.840000px;}
.y1b8{bottom:1000.080000px;}
.y80{bottom:1006.197300px;}
.ye3{bottom:1006.204680px;}
.yee{bottom:1006.740000px;}
.y1d3{bottom:1008.181260px;}
.y16f{bottom:1009.077300px;}
.y21{bottom:1009.265040px;}
.yb3{bottom:1009.440000px;}
.y4e{bottom:1009.800000px;}
.y8{bottom:1010.325960px;}
.y1e0{bottom:1016.817840px;}
.y1a4{bottom:1017.164880px;}
.y32{bottom:1018.253880px;}
.y200{bottom:1018.945440px;}
.y122{bottom:1025.460000px;}
.y195{bottom:1026.157500px;}
.y21a{bottom:1028.885760px;}
.y15d{bottom:1033.545960px;}
.y7f{bottom:1035.723420px;}
.y16e{bottom:1038.413880px;}
.y20{bottom:1038.957120px;}
.yec{bottom:1041.480000px;}
.y1df{bottom:1042.553160px;}
.ye2{bottom:1044.723420px;}
.y1ff{bottom:1045.775880px;}
.y1d2{bottom:1046.700000px;}
.y31{bottom:1047.780000px;}
.yb2{bottom:1047.960000px;}
.y7{bottom:1050.840000px;}
.y219{bottom:1054.621080px;}
.y194{bottom:1055.683620px;}
.y62{bottom:1058.400000px;}
.y4d{bottom:1060.020000px;}
.y7e{bottom:1065.060000px;}
.y16d{bottom:1067.940000px;}
.y1de{bottom:1068.120000px;}
.y1f{bottom:1069.560000px;}
.y1fe{bottom:1071.342720px;}
.ye1{bottom:1074.053880px;}
.y121{bottom:1074.420000px;}
.y15c{bottom:1078.193160px;}
.y218{bottom:1080.187920px;}
.y193{bottom:1085.209740px;}
.y6{bottom:1091.340000px;}
.y1d1{bottom:1094.223420px;}
.yb1{bottom:1096.920000px;}
.y30{bottom:1097.820000px;}
.y1fd{bottom:1098.173160px;}
.y1e{bottom:1102.680000px;}
.y7d{bottom:1103.580000px;}
.y15b{bottom:1103.760000px;}
.y176{bottom:1111.140000px;}
.y16c{bottom:1116.900000px;}
.y192{bottom:1123.560000px;}
.y1fc{bottom:1123.740000px;}
.y4{bottom:1128.981600px;}
.y3{bottom:1150.393680px;}
.y2{bottom:1171.805760px;}
.y1{bottom:1193.400000px;}
.y169{bottom:1195.560000px;}
.h1b{height:20.996719px;}
.h1c{height:33.494766px;}
.h22{height:34.020000px;}
.h25{height:34.200000px;}
.h17{height:34.530924px;}
.h12{height:35.544023px;}
.h1e{height:38.372465px;}
.h31{height:38.543338px;}
.h15{height:39.150689px;}
.h16{height:39.151289px;}
.h27{height:39.840820px;}
.hb{height:43.506914px;}
.h2{height:44.149219px;}
.h3{height:45.992812px;}
.hd{height:48.806719px;}
.h2f{height:49.992188px;}
.h23{height:51.300000px;}
.h37{height:52.027242px;}
.h9{height:53.121094px;}
.h21{height:56.146289px;}
.ha{height:59.378906px;}
.h11{height:62.069414px;}
.h8{height:62.151680px;}
.h34{height:62.176160px;}
.h35{height:62.192720px;}
.h13{height:62.217200px;}
.hf{height:62.255360px;}
.h2d{height:62.411600px;}
.h2a{height:62.909840px;}
.h2e{height:65.520000px;}
.h10{height:69.473320px;}
.h20{height:70.009366px;}
.h32{height:70.028086px;}
.h1f{height:70.052566px;}
.h1a{height:70.064086px;}
.h19{height:70.075780px;}
.h24{height:70.080820px;}
.h33{height:70.091620px;}
.h18{height:70.133926px;}
.h2b{height:70.381500px;}
.h2c{height:70.560000px;}
.h39{height:72.472223px;}
.hc{height:75.746160px;}
.he{height:79.576172px;}
.h4{height:87.486328px;}
.h7{height:88.712227px;}
.h6{height:106.101562px;}
.h5{height:116.481797px;}
.h14{height:182.167500px;}
.h36{height:189.874500px;}
.h26{height:234.360000px;}
.h38{height:250.318500px;}
.h1d{height:250.860000px;}
.h30{height:251.496000px;}
.h28{height:892.980000px;}
.h29{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:137.340000px;}
.w2{width:143.706000px;}
.w9{width:158.220000px;}
.we{width:169.740000px;}
.w5{width:190.440000px;}
.w8{width:191.160000px;}
.wa{width:222.480000px;}
.w3{width:232.129500px;}
.wb{width:265.140000px;}
.w11{width:293.833500px;}
.wf{width:318.240000px;}
.w10{width:354.060000px;}
.w4{width:389.875500px;}
.w6{width:488.340000px;}
.w12{width:511.251000px;}
.w13{width:524.061000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:1262.880000px;}
.wd{width:1263.000000px;}
.x18{left:-101.912250px;}
.x17{left:-54.485850px;}
.x0{left:0.000000px;}
.x2f{left:6.660000px;}
.x2b{left:7.740000px;}
.x54{left:19.381650px;}
.x27{left:32.424150px;}
.x55{left:44.028450px;}
.x26{left:53.212950px;}
.x1{left:97.740000px;}
.x24{left:100.080000px;}
.x12{left:102.780000px;}
.xb{left:104.940000px;}
.x31{left:106.380000px;}
.x8{left:113.935680px;}
.x50{left:116.044350px;}
.x29{left:118.979820px;}
.x44{left:124.740000px;}
.x1f{left:125.812980px;}
.x10{left:129.730140px;}
.x21{left:140.028480px;}
.x19{left:145.675950px;}
.x4{left:149.400000px;}
.x1a{left:155.886660px;}
.xe{left:161.640000px;}
.x23{left:177.668460px;}
.x1b{left:185.770800px;}
.x53{left:190.905000px;}
.x4f{left:197.217000px;}
.x1c{left:198.722700px;}
.x39{left:201.960000px;}
.x34{left:209.721240px;}
.x28{left:213.118020px;}
.x1d{left:214.559820px;}
.x5{left:231.480000px;}
.x46{left:243.000000px;}
.x52{left:249.477300px;}
.x20{left:253.247040px;}
.x25{left:257.937000px;}
.x22{left:259.381260px;}
.x49{left:288.547380px;}
.x9{left:303.300000px;}
.x6{left:307.800000px;}
.x2c{left:310.860000px;}
.xa{left:318.609000px;}
.xc{left:326.160000px;}
.x15{left:333.180000px;}
.x48{left:342.000000px;}
.x4a{left:343.257480px;}
.x4c{left:347.400000px;}
.x3f{left:350.100000px;}
.x3e{left:363.974400px;}
.x11{left:375.300000px;}
.x4d{left:377.828460px;}
.x35{left:380.180880px;}
.x13{left:384.660000px;}
.x3b{left:398.308320px;}
.xf{left:400.320000px;}
.x3d{left:404.100000px;}
.x7{left:405.363420px;}
.xd{left:407.520000px;}
.x2a{left:412.020000px;}
.x2d{left:449.100000px;}
.x3{left:452.700000px;}
.x40{left:460.980000px;}
.x47{left:514.011000px;}
.x2{left:532.620000px;}
.x30{left:534.060000px;}
.x16{left:571.044000px;}
.x36{left:572.964120px;}
.x33{left:579.240000px;}
.x3a{left:617.040000px;}
.x37{left:624.813840px;}
.x2e{left:640.980000px;}
.x1e{left:647.640000px;}
.x14{left:702.541080px;}
.x4e{left:708.491520px;}
.x32{left:715.500000px;}
.x3c{left:721.768860px;}
.x4b{left:789.840000px;}
.x51{left:792.180000px;}
.x42{left:797.220000px;}
.x45{left:798.300000px;}
.x43{left:799.740000px;}
.x41{left:807.840000px;}
.x38{left:943.744320px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.974080pt;}
.ls75{letter-spacing:-12.800000pt;}
.ls1c{letter-spacing:-11.540480pt;}
.ls6a{letter-spacing:-7.038720pt;}
.ls5b{letter-spacing:-5.765760pt;}
.ls16{letter-spacing:-4.298240pt;}
.ls8{letter-spacing:-4.118400pt;}
.ls14{letter-spacing:-3.179520pt;}
.ls4c{letter-spacing:-1.422720pt;}
.ls2c{letter-spacing:-1.272960pt;}
.ls38{letter-spacing:-1.123200pt;}
.ls4a{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-1.048320pt;}
.ls29{letter-spacing:-0.973440pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.898560pt;}
.ls47{letter-spacing:-0.878388pt;}
.ls7d{letter-spacing:-0.823680pt;}
.ls41{letter-spacing:-0.748848pt;}
.ls3d{letter-spacing:-0.748800pt;}
.ls2f{letter-spacing:-0.673920pt;}
.ls3f{letter-spacing:-0.665643pt;}
.ls31{letter-spacing:-0.599040pt;}
.ls13{letter-spacing:-0.529920pt;}
.ls5a{letter-spacing:-0.524160pt;}
.ls1d{letter-spacing:-0.471040pt;}
.ls30{letter-spacing:-0.449280pt;}
.ls2b{letter-spacing:-0.374400pt;}
.ls18{letter-spacing:-0.353280pt;}
.ls26{letter-spacing:-0.299520pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.224640pt;}
.ls7{letter-spacing:-0.213760pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls72{letter-spacing:-0.185747pt;}
.ls27{letter-spacing:-0.149760pt;}
.ls48{letter-spacing:-0.138693pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.106240pt;}
.ls59{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.083205pt;}
.ls2a{letter-spacing:-0.074880pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.046231pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.016000pt;}
.ls43{letter-spacing:0.046231pt;}
.ls15{letter-spacing:0.058880pt;}
.ls58{letter-spacing:0.059904pt;}
.lsa{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.074880pt;}
.ls81{letter-spacing:0.087314pt;}
.ls25{letter-spacing:0.096000pt;}
.ls68{letter-spacing:0.097344pt;}
.ls57{letter-spacing:0.112320pt;}
.ls56{letter-spacing:0.119808pt;}
.ls3{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.149760pt;}
.ls12{letter-spacing:0.170240pt;}
.ls6e{letter-spacing:0.172224pt;}
.ls7f{letter-spacing:0.174628pt;}
.ls67{letter-spacing:0.179712pt;}
.ls66{letter-spacing:0.187200pt;}
.lsf{letter-spacing:0.192000pt;}
.ls69{letter-spacing:0.202176pt;}
.ls2e{letter-spacing:0.224640pt;}
.ls1a{letter-spacing:0.235520pt;}
.ls39{letter-spacing:0.239616pt;}
.ls5{letter-spacing:0.256000pt;}
.ls65{letter-spacing:0.269568pt;}
.ls1b{letter-spacing:0.294400pt;}
.ls2d{letter-spacing:0.299520pt;}
.lse{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.374400pt;}
.ls21{letter-spacing:0.381888pt;}
.ls77{letter-spacing:0.389376pt;}
.ls1f{letter-spacing:0.441792pt;}
.ls32{letter-spacing:0.449280pt;}
.ls23{letter-spacing:0.490880pt;}
.ls74{letter-spacing:0.524160pt;}
.ls36{letter-spacing:0.599040pt;}
.ls49{letter-spacing:0.624000pt;}
.ls42{letter-spacing:0.814720pt;}
.ls78{letter-spacing:0.973440pt;}
.ls70{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:4.474880pt;}
.ls76{letter-spacing:5.122560pt;}
.ls44{letter-spacing:5.274240pt;}
.ls63{letter-spacing:5.760000pt;}
.ls11{letter-spacing:6.535680pt;}
.ls64{letter-spacing:7.040000pt;}
.ls45{letter-spacing:8.018560pt;}
.ls6b{letter-spacing:8.320000pt;}
.ls55{letter-spacing:8.611200pt;}
.ls7a{letter-spacing:10.632960pt;}
.ls0{letter-spacing:11.776000pt;}
.ls1{letter-spacing:12.416000pt;}
.ls79{letter-spacing:13.178880pt;}
.ls34{letter-spacing:16.922880pt;}
.ls37{letter-spacing:17.596800pt;}
.ls73{letter-spacing:18.195840pt;}
.ls7e{letter-spacing:20.142720pt;}
.ls7b{letter-spacing:25.908480pt;}
.ls33{letter-spacing:26.507520pt;}
.ls35{letter-spacing:35.493120pt;}
.ls52{letter-spacing:43.879680pt;}
.ls6d{letter-spacing:71.959680pt;}
.ls71{letter-spacing:73.906560pt;}
.ls6c{letter-spacing:75.853440pt;}
.ls6f{letter-spacing:79.672320pt;}
.ls7c{letter-spacing:107.827200pt;}
.ls3b{letter-spacing:130.531002pt;}
.ls4e{letter-spacing:131.564160pt;}
.ls53{letter-spacing:155.226240pt;}
.ls54{letter-spacing:156.499200pt;}
.ls51{letter-spacing:185.927040pt;}
.ls4f{letter-spacing:212.209920pt;}
.ls5d{letter-spacing:327.375360pt;}
.ls80{letter-spacing:420.243273pt;}
.ls5f{letter-spacing:537.338880pt;}
.ls50{letter-spacing:573.805440pt;}
.ls60{letter-spacing:685.152000pt;}
.ls5c{letter-spacing:749.773440pt;}
.ls3a{letter-spacing:754.693120pt;}
.ls4d{letter-spacing:778.602240pt;}
.ls5e{letter-spacing:780.549120pt;}
.ls61{letter-spacing:781.822080pt;}
.ls62{letter-spacing:800.991360pt;}
.ws42{word-spacing:-74.880000pt;}
.ws0{word-spacing:-29.056000pt;}
.ws14{word-spacing:-25.110400pt;}
.ws2a{word-spacing:-21.792000pt;}
.ws6c{word-spacing:-21.600000pt;}
.ws7f{word-spacing:-19.820308pt;}
.ws1a{word-spacing:-19.194880pt;}
.ws40{word-spacing:-17.372160pt;}
.ws49{word-spacing:-17.147520pt;}
.ws43{word-spacing:-17.072640pt;}
.ws2b{word-spacing:-16.997760pt;}
.ws2f{word-spacing:-16.922880pt;}
.ws2d{word-spacing:-16.848000pt;}
.ws2e{word-spacing:-16.773120pt;}
.ws1{word-spacing:-16.698240pt;}
.ws2c{word-spacing:-16.623360pt;}
.ws30{word-spacing:-16.548480pt;}
.ws71{word-spacing:-16.473600pt;}
.ws6d{word-spacing:-16.398720pt;}
.ws51{word-spacing:-16.323840pt;}
.ws72{word-spacing:-16.248960pt;}
.ws4a{word-spacing:-16.174080pt;}
.ws48{word-spacing:-16.024320pt;}
.ws3f{word-spacing:-15.949440pt;}
.ws65{word-spacing:-15.799680pt;}
.ws5f{word-spacing:-15.500160pt;}
.ws3{word-spacing:-14.661120pt;}
.ws2{word-spacing:-14.528000pt;}
.ws15{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.071360pt;}
.ws19{word-spacing:-12.953600pt;}
.ws6f{word-spacing:-11.157120pt;}
.ws52{word-spacing:-10.848000pt;}
.ws5b{word-spacing:-10.494422pt;}
.ws56{word-spacing:-10.309498pt;}
.ws75{word-spacing:-10.308970pt;}
.ws5e{word-spacing:-9.792000pt;}
.ws54{word-spacing:-9.569803pt;}
.ws4e{word-spacing:-9.402203pt;}
.ws4c{word-spacing:-9.318997pt;}
.ws16{word-spacing:-9.008640pt;}
.ws4d{word-spacing:-8.653355pt;}
.ws5d{word-spacing:-7.203840pt;}
.ws79{word-spacing:-4.474880pt;}
.ws5c{word-spacing:-4.459520pt;}
.ws7a{word-spacing:-3.200000pt;}
.ws1b{word-spacing:-3.179520pt;}
.ws44{word-spacing:-1.048320pt;}
.ws80{word-spacing:-0.973440pt;}
.ws27{word-spacing:-0.824320pt;}
.ws77{word-spacing:-0.823680pt;}
.ws24{word-spacing:-0.765440pt;}
.ws6e{word-spacing:-0.599040pt;}
.ws20{word-spacing:-0.588800pt;}
.ws1d{word-spacing:-0.529920pt;}
.ws3d{word-spacing:-0.524160pt;}
.ws3a{word-spacing:-0.449280pt;}
.ws23{word-spacing:-0.412160pt;}
.ws6{word-spacing:-0.384000pt;}
.ws35{word-spacing:-0.374400pt;}
.ws3c{word-spacing:-0.299520pt;}
.ws3e{word-spacing:-0.224640pt;}
.ws8{word-spacing:-0.213760pt;}
.ws25{word-spacing:-0.176640pt;}
.ws32{word-spacing:-0.149760pt;}
.ws28{word-spacing:-0.117760pt;}
.ws81{word-spacing:-0.087314pt;}
.ws37{word-spacing:-0.074880pt;}
.wsa{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws50{word-spacing:0.047169pt;}
.ws45{word-spacing:0.074880pt;}
.ws82{word-spacing:0.087314pt;}
.ws5{word-spacing:0.128000pt;}
.ws36{word-spacing:0.149760pt;}
.ws73{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.224640pt;}
.ws7{word-spacing:0.256000pt;}
.ws41{word-spacing:0.288000pt;}
.ws33{word-spacing:0.299520pt;}
.ws38{word-spacing:0.374400pt;}
.ws31{word-spacing:0.384000pt;}
.ws70{word-spacing:0.449280pt;}
.ws29{word-spacing:0.471040pt;}
.ws1f{word-spacing:0.529920pt;}
.ws26{word-spacing:0.588800pt;}
.ws76{word-spacing:0.599040pt;}
.ws1e{word-spacing:0.647680pt;}
.ws47{word-spacing:0.673920pt;}
.ws4f{word-spacing:0.748800pt;}
.ws46{word-spacing:0.823680pt;}
.wse{word-spacing:0.960000pt;}
.ws34{word-spacing:0.973440pt;}
.ws4b{word-spacing:0.987740pt;}
.ws62{word-spacing:1.123200pt;}
.ws39{word-spacing:1.272960pt;}
.ws60{word-spacing:3.070080pt;}
.ws1c{word-spacing:3.179520pt;}
.ws9{word-spacing:3.818880pt;}
.ws66{word-spacing:4.492800pt;}
.ws21{word-spacing:6.653440pt;}
.ws22{word-spacing:6.888960pt;}
.ws74{word-spacing:7.038720pt;}
.ws69{word-spacing:7.937280pt;}
.ws67{word-spacing:8.311680pt;}
.wsb{word-spacing:9.088000pt;}
.wsc{word-spacing:9.152000pt;}
.wsd{word-spacing:9.344000pt;}
.ws7d{word-spacing:10.782720pt;}
.ws7c{word-spacing:10.932480pt;}
.wsf{word-spacing:11.840000pt;}
.ws18{word-spacing:12.070400pt;}
.ws11{word-spacing:12.096000pt;}
.ws10{word-spacing:12.608000pt;}
.ws7b{word-spacing:13.328640pt;}
.ws6a{word-spacing:13.478400pt;}
.ws7e{word-spacing:14.080000pt;}
.ws83{word-spacing:15.360000pt;}
.ws78{word-spacing:22.400000pt;}
.ws64{word-spacing:23.512320pt;}
.ws12{word-spacing:81.856000pt;}
.ws13{word-spacing:82.624000pt;}
.ws61{word-spacing:97.344000pt;}
.ws68{word-spacing:104.607360pt;}
.ws6b{word-spacing:110.747520pt;}
.ws59{word-spacing:137.782880pt;}
.ws63{word-spacing:154.252800pt;}
.ws5a{word-spacing:159.048469pt;}
.ws55{word-spacing:180.930103pt;}
.ws58{word-spacing:191.008020pt;}
.ws57{word-spacing:201.795593pt;}
.ws53{word-spacing:328.714097pt;}
._1e{margin-left:-16.857600pt;}
._11{margin-left:-14.710272pt;}
._12{margin-left:-13.048320pt;}
._c{margin-left:-11.387840pt;}
._b{margin-left:-10.022400pt;}
._10{margin-left:-7.872000pt;}
._d{margin-left:-6.540800pt;}
._f{margin-left:-5.439488pt;}
._3{margin-left:-4.352000pt;}
._a{margin-left:-3.097600pt;}
._1{margin-left:-2.188800pt;}
._2{margin-left:-0.985600pt;}
._4{width:1.152000pt;}
._16{width:2.044224pt;}
._6{width:2.950272pt;}
._5{width:4.006080pt;}
._7{width:5.031936pt;}
._e{width:6.255040pt;}
._8{width:8.985600pt;}
._1f{width:11.496566pt;}
._9{width:12.736000pt;}
._17{width:106.946505pt;}
._1a{width:116.066348pt;}
._1b{width:285.243681pt;}
._1d{width:287.759293pt;}
._1c{width:290.275366pt;}
._18{width:316.375475pt;}
._23{width:327.375360pt;}
._19{width:437.440748pt;}
._20{width:521.089920pt;}
._21{width:613.491840pt;}
._13{width:746.304000pt;}
._15{width:751.046400pt;}
._14{width:753.536000pt;}
._22{width:758.234880pt;}
._0{width:1233.300480pt;}
.fse{font-size:26.880000pt;}
.fsc{font-size:41.602667pt;}
.fsa{font-size:42.880000pt;}
.fsf{font-size:46.230933pt;}
.fs10{font-size:46.436800pt;}
.fsb{font-size:47.168533pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs11{font-size:62.682133pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs12{font-size:87.314133pt;}
.fs9{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs1{font-size:112.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.yac{bottom:-40.468267pt;}
.yab{bottom:-26.317733pt;}
.yaa{bottom:-12.167200pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:4.960000pt;}
.y100{bottom:5.120000pt;}
.ye0{bottom:9.992133pt;}
.y1b7{bottom:10.108267pt;}
.yed{bottom:12.480000pt;}
.yf4{bottom:12.640000pt;}
.yb0{bottom:15.012000pt;}
.y217{bottom:18.869600pt;}
.ydf{bottom:23.861333pt;}
.y165{bottom:24.320000pt;}
.yaf{bottom:27.467867pt;}
.yf0{bottom:27.840000pt;}
.y119{bottom:37.600000pt;}
.yde{bottom:37.730533pt;}
.y11f{bottom:37.760000pt;}
.yae{bottom:39.923867pt;}
.y216{bottom:45.063867pt;}
.y5{bottom:47.360000pt;}
.y16a{bottom:52.320000pt;}
.yad{bottom:89.747600pt;}
.ydb{bottom:97.920000pt;}
.y1fa{bottom:99.226400pt;}
.yda{bottom:101.920000pt;}
.y107{bottom:103.835680pt;}
.y1f8{bottom:105.561600pt;}
.y1f9{bottom:105.600000pt;}
.y14d{bottom:109.112160pt;}
.yd9{bottom:112.965120pt;}
.y92{bottom:113.586080pt;}
.y1d{bottom:117.600000pt;}
.y16b{bottom:120.640000pt;}
.y1d0{bottom:123.994560pt;}
.y1fb{bottom:124.544133pt;}
.y191{bottom:129.913280pt;}
.yd8{bottom:132.160000pt;}
.y106{bottom:133.600000pt;}
.y1c{bottom:134.400000pt;}
.y14c{bottom:135.189120pt;}
.y7c{bottom:135.345440pt;}
.y102{bottom:145.280000pt;}
.y1b5{bottom:146.304800pt;}
.y91{bottom:149.902880pt;}
.y1cf{bottom:150.240000pt;}
.yd7{bottom:151.200000pt;}
.y1b{bottom:153.920000pt;}
.y14b{bottom:161.434560pt;}
.ya9{bottom:162.172400pt;}
.y190{bottom:164.152160pt;}
.y7b{bottom:169.434560pt;}
.y1a{bottom:173.600000pt;}
.y1b4{bottom:180.543680pt;}
.y14a{bottom:187.680000pt;}
.y1b6{bottom:188.886667pt;}
.y4c{bottom:190.240000pt;}
.y18f{bottom:190.397600pt;}
.y103{bottom:190.560000pt;}
.yd6{bottom:191.352000pt;}
.y1ce{bottom:192.480000pt;}
.y13b{bottom:192.640000pt;}
.y7a{bottom:195.680000pt;}
.y19{bottom:201.120000pt;}
.ydd{bottom:208.603867pt;}
.y1b3{bottom:214.782560pt;}
.y18e{bottom:216.474560pt;}
.yd5{bottom:217.597440pt;}
.y4b{bottom:220.640000pt;}
.y149{bottom:221.920000pt;}
.y1cd{bottom:226.555680pt;}
.y13a{bottom:226.560000pt;}
.y79{bottom:229.920000pt;}
.y18{bottom:236.442400pt;}
.y1b2{bottom:241.028000pt;}
.y18d{bottom:242.720000pt;}
.y11e{bottom:244.000000pt;}
.y214{bottom:249.050400pt;}
.y15a{bottom:249.729760pt;}
.ya7{bottom:251.040000pt;}
.y4a{bottom:252.136960pt;}
.y139{bottom:252.800000pt;}
.y148{bottom:256.152160pt;}
.yd4{bottom:259.681120pt;}
.y120{bottom:260.160000pt;}
.y1cc{bottom:260.794560pt;}
.y78{bottom:264.152160pt;}
.y1b1{bottom:267.104960pt;}
.y213{bottom:271.926240pt;}
.y1dd{bottom:273.440000pt;}
.y17{bottom:274.687360pt;}
.yc4{bottom:276.311680pt;}
.y18c{bottom:276.960000pt;}
.y49{bottom:278.382400pt;}
.y1f7{bottom:279.489120pt;}
.y11d{bottom:281.600000pt;}
.ya6{bottom:281.908960pt;}
.y147{bottom:282.229120pt;}
.y159{bottom:283.818880pt;}
.y1cb{bottom:287.034560pt;}
.y138{bottom:287.040000pt;}
.y77{bottom:290.229120pt;}
.y105{bottom:290.244160pt;}
.y1b0{bottom:293.350400pt;}
.yd3{bottom:293.920000pt;}
.y212{bottom:294.652320pt;}
.y1f6{bottom:302.215200pt;}
.y1dc{bottom:306.563840pt;}
.y118{bottom:307.360000pt;}
.y146{bottom:308.474560pt;}
.y158{bottom:310.064320pt;}
.yc3{bottom:310.400800pt;}
.y18b{bottom:311.186720pt;}
.y48{bottom:312.621280pt;}
.ya5{bottom:312.628480pt;}
.y16{bottom:312.932320pt;}
.y104{bottom:313.120000pt;}
.y1ca{bottom:313.270880pt;}
.y76{bottom:316.474560pt;}
.y211{bottom:317.528160pt;}
.y1af{bottom:319.595840pt;}
.y137{bottom:321.222240pt;}
.y11a{bottom:323.520000pt;}
.y11c{bottom:323.525600pt;}
.y1f5{bottom:325.091040pt;}
.y61{bottom:325.920000pt;}
.y145{bottom:334.720000pt;}
.yd2{bottom:336.160000pt;}
.y18a{bottom:337.432160pt;}
.y47{bottom:338.866720pt;}
.y210{bottom:340.254240pt;}
.y75{bottom:342.720000pt;}
.yc2{bottom:344.639680pt;}
.y117{bottom:344.800000pt;}
.y11b{bottom:344.960000pt;}
.y1ae{bottom:345.841280pt;}
.y157{bottom:346.699360pt;}
.ya4{bottom:346.717600pt;}
.y1c9{bottom:347.362240pt;}
.y1f4{bottom:351.168000pt;}
.y15{bottom:351.177280pt;}
.y101{bottom:354.240000pt;}
.y136{bottom:355.461120pt;}
.y60{bottom:360.000000pt;}
.y20f{bottom:363.130080pt;}
.y189{bottom:363.509120pt;}
.y46{bottom:364.943680pt;}
.y144{bottom:368.960000pt;}
.yd1{bottom:370.241120pt;}
.y1ad{bottom:371.918240pt;}
.ya3{bottom:372.963040pt;}
.y74{bottom:376.945440pt;}
.y1f3{bottom:377.244960pt;}
.y1c8{bottom:381.601120pt;}
.y20e{bottom:385.856160pt;}
.y5f{bottom:386.240000pt;}
.yc1{bottom:386.872000pt;}
.y116{bottom:386.894080pt;}
.y14{bottom:389.253760pt;}
.y135{bottom:389.550240pt;}
.y188{bottom:389.754560pt;}
.y45{bottom:391.189120pt;}
.y1ac{bottom:398.163680pt;}
.ya2{bottom:399.040000pt;}
.yff{bottom:400.480000pt;}
.y143{bottom:403.029120pt;}
.y1f2{bottom:403.490400pt;}
.yd0{bottom:404.456480pt;}
.y115{bottom:408.160000pt;}
.y20d{bottom:408.582240pt;}
.y73{bottom:411.034560pt;}
.y1c7{bottom:415.834560pt;}
.y187{bottom:416.000000pt;}
.y44{bottom:417.434560pt;}
.yc0{bottom:420.961120pt;}
.y5e{bottom:422.355360pt;}
.y134{bottom:423.789120pt;}
.y1ab{bottom:424.409120pt;}
.y13{bottom:427.498720pt;}
.y90{bottom:428.306720pt;}
.y142{bottom:429.274560pt;}
.y1f1{bottom:429.735840pt;}
.y162{bottom:430.560000pt;}
.y20c{bottom:431.458080pt;}
.ya1{bottom:433.280000pt;}
.y72{bottom:437.280000pt;}
.ycf{bottom:438.695360pt;}
.y1c6{bottom:442.080000pt;}
.y43{bottom:443.680000pt;}
.yfe{bottom:446.720000pt;}
.y186{bottom:450.240000pt;}
.y113{bottom:450.254080pt;}
.y1aa{bottom:450.654560pt;}
.y20b{bottom:454.184160pt;}
.y8f{bottom:454.552160pt;}
.ybf{bottom:455.200000pt;}
.y141{bottom:455.520000pt;}
.y1f0{bottom:455.981280pt;}
.y5d{bottom:456.444480pt;}
.y133{bottom:458.028000pt;}
.y12{bottom:465.743680pt;}
.ya0{bottom:469.600000pt;}
.y71{bottom:471.520000pt;}
.y114{bottom:471.538720pt;}
.yce{bottom:472.934240pt;}
.y168{bottom:474.080000pt;}
.y1c5{bottom:476.320000pt;}
.y1a9{bottom:476.900000pt;}
.y20a{bottom:477.060000pt;}
.y42{bottom:477.728000pt;}
.yfd{bottom:477.760000pt;}
.y8e{bottom:480.629120pt;}
.y1ef{bottom:482.058240pt;}
.y5c{bottom:482.689920pt;}
.y132{bottom:484.273440pt;}
.y185{bottom:484.295840pt;}
.y140{bottom:489.760000pt;}
.ybe{bottom:497.280000pt;}
.y209{bottom:499.786080pt;}
.y1a8{bottom:502.976960pt;}
.y41{bottom:503.973440pt;}
.y11{bottom:503.988640pt;}
.y9f{bottom:505.733120pt;}
.y8d{bottom:506.874560pt;}
.ycd{bottom:507.173120pt;}
.y70{bottom:507.840000pt;}
.y1ee{bottom:508.303680pt;}
.yfc{bottom:508.640000pt;}
.y131{bottom:510.350400pt;}
.y1c4{bottom:510.396800pt;}
.y184{bottom:510.541280pt;}
.y1a3{bottom:513.235520pt;}
.y112{bottom:513.604800pt;}
.y5b{bottom:516.928800pt;}
.y208{bottom:522.512160pt;}
.y2f{bottom:523.840000pt;}
.y13f{bottom:526.080000pt;}
.y1a7{bottom:529.222400pt;}
.y40{bottom:530.218880pt;}
.ybd{bottom:531.520800pt;}
.y167{bottom:532.960000pt;}
.y8c{bottom:533.120000pt;}
.y1ed{bottom:534.549120pt;}
.y130{bottom:536.595840pt;}
.y183{bottom:536.786720pt;}
.yfb{bottom:539.520000pt;}
.y9e{bottom:539.972000pt;}
.y6f{bottom:540.320000pt;}
.ycc{bottom:541.262240pt;}
.y10{bottom:542.233600pt;}
.y1c3{bottom:544.635680pt;}
.y207{bottom:545.388000pt;}
.y111{bottom:546.888960pt;}
.y1a2{bottom:547.474400pt;}
.y5a{bottom:551.167680pt;}
.y2e{bottom:553.120000pt;}
.y1a6{bottom:555.467840pt;}
.y3f{bottom:556.464320pt;}
.y13e{bottom:558.560000pt;}
.y10f{bottom:558.888480pt;}
.y1ec{bottom:560.794560pt;}
.y12f{bottom:562.841280pt;}
.y182{bottom:563.032160pt;}
.ybc{bottom:565.759680pt;}
.y6e{bottom:566.848000pt;}
.y8b{bottom:567.360000pt;}
.ycb{bottom:567.507680pt;}
.y206{bottom:568.114080pt;}
.yfa{bottom:570.560000pt;}
.y9d{bottom:574.061120pt;}
.y59{bottom:577.244640pt;}
.y1c2{bottom:578.874560pt;}
.y110{bottom:580.173120pt;}
.yf{bottom:580.310080pt;}
.y10e{bottom:580.322880pt;}
.y2d{bottom:580.467840pt;}
.y1a1{bottom:581.713280pt;}
.y3e{bottom:582.709760pt;}
.y13d{bottom:585.081280pt;}
.y205{bottom:585.879360pt;}
.y215{bottom:585.984000pt;}
.y1eb{bottom:587.040000pt;}
.y12e{bottom:589.086720pt;}
.y181{bottom:589.277600pt;}
.y166{bottom:591.840000pt;}
.y6d{bottom:593.093440pt;}
.y9c{bottom:600.306560pt;}
.y8a{bottom:601.440000pt;}
.yca{bottom:601.746560pt;}
.y58{bottom:603.490080pt;}
.y1c1{bottom:605.117600pt;}
.ya8{bottom:605.830667pt;}
.y2c{bottom:607.670400pt;}
.y1a0{bottom:607.790240pt;}
.ybb{bottom:607.842240pt;}
.y3d{bottom:608.786720pt;}
.y13c{bottom:611.326720pt;}
.y1ea{bottom:615.200000pt;}
.y12d{bottom:615.332160pt;}
.y180{bottom:615.354560pt;}
.yf9{bottom:616.800000pt;}
.ye{bottom:618.555040pt;}
.y6c{bottom:619.338880pt;}
.y10d{bottom:622.236960pt;}
.y164{bottom:626.400000pt;}
.y156{bottom:627.667840pt;}
.y57{bottom:629.735520pt;}
.y1c0{bottom:631.194560pt;}
.y19f{bottom:634.035680pt;}
.y9b{bottom:634.545440pt;}
.y2b{bottom:634.711040pt;}
.y3c{bottom:635.032160pt;}
.yc9{bottom:635.985440pt;}
.y89{bottom:637.760000pt;}
.y12c{bottom:641.409120pt;}
.y17f{bottom:641.600000pt;}
.yba{bottom:642.081120pt;}
.y1e9{bottom:643.341280pt;}
.yeb{bottom:644.937280pt;}
.y6b{bottom:645.415840pt;}
.yf8{bottom:647.680000pt;}
.y163{bottom:650.720000pt;}
.y10c{bottom:652.320000pt;}
.y155{bottom:653.913280pt;}
.y1db{bottom:654.547840pt;}
.y224{bottom:654.713920pt;}
.y56{bottom:655.980960pt;}
.yd{bottom:656.800000pt;}
.y1bf{bottom:657.440000pt;}
.y19e{bottom:660.281120pt;}
.y9a{bottom:660.790880pt;}
.y3b{bottom:661.277600pt;}
.y2a{bottom:661.751680pt;}
.y12b{bottom:667.654560pt;}
.y88{bottom:668.640000pt;}
.y1e8{bottom:669.586720pt;}
.yc8{bottom:670.074560pt;}
.y6a{bottom:671.661280pt;}
.y10b{bottom:674.739200pt;}
.y17e{bottom:675.840000pt;}
.yb9{bottom:676.320000pt;}
.y223{bottom:677.440000pt;}
.yf7{bottom:678.560000pt;}
.yea{bottom:678.857920pt;}
.y154{bottom:680.158720pt;}
.y1da{bottom:680.793280pt;}
.y55{bottom:682.226400pt;}
.y19d{bottom:686.526560pt;}
.y99{bottom:686.867840pt;}
.y3a{bottom:687.523040pt;}
.y29{bottom:688.954240pt;}
.y1be{bottom:691.680000pt;}
.y10a{bottom:693.772160pt;}
.y12a{bottom:693.900000pt;}
.y87{bottom:694.863680pt;}
.y1e7{bottom:695.832160pt;}
.yc7{bottom:696.320000pt;}
.y69{bottom:697.906720pt;}
.yc{bottom:698.720000pt;}
.y222{bottom:700.320000pt;}
.y153{bottom:706.404160pt;}
.y1d9{bottom:706.870240pt;}
.yf6{bottom:709.600000pt;}
.y175{bottom:710.720000pt;}
.y17d{bottom:712.160000pt;}
.y19c{bottom:712.772000pt;}
.y109{bottom:712.805120pt;}
.ye9{bottom:713.096800pt;}
.y98{bottom:713.113280pt;}
.y39{bottom:713.600000pt;}
.y28{bottom:715.994880pt;}
.y54{bottom:716.315520pt;}
.yb8{bottom:718.400000pt;}
.y129{bottom:720.145440pt;}
.y86{bottom:721.109120pt;}
.y1e6{bottom:721.909120pt;}
.y221{bottom:723.040000pt;}
.y68{bottom:724.152160pt;}
.y1bd{bottom:725.926400pt;}
.y108{bottom:732.000000pt;}
.y152{bottom:732.481120pt;}
.y1d8{bottom:733.115680pt;}
.yc6{bottom:738.560000pt;}
.y19b{bottom:738.848960pt;}
.y97{bottom:739.358720pt;}
.y38{bottom:739.816960pt;}
.yf5{bottom:740.480000pt;}
.y27{bottom:743.035520pt;}
.y17c{bottom:744.640000pt;}
.y220{bottom:745.912000pt;}
.y128{bottom:746.222400pt;}
.ye8{bottom:747.335680pt;}
.y85{bottom:747.354560pt;}
.y1e5{bottom:748.154560pt;}
.y174{bottom:749.920000pt;}
.y67{bottom:750.397600pt;}
.y53{bottom:750.554400pt;}
.yb{bottom:750.720000pt;}
.yb7{bottom:752.630560pt;}
.y1bc{bottom:760.165280pt;}
.y19a{bottom:765.094400pt;}
.y151{bottom:766.720000pt;}
.y1d7{bottom:767.354560pt;}
.y21f{bottom:768.638080pt;}
.y26{bottom:770.238080pt;}
.y17b{bottom:771.192160pt;}
.yf3{bottom:771.360000pt;}
.y160{bottom:771.683520pt;}
.y127{bottom:772.467840pt;}
.ye7{bottom:773.581120pt;}
.y96{bottom:773.597600pt;}
.y84{bottom:773.600000pt;}
.y37{bottom:774.055840pt;}
.y1e4{bottom:774.400000pt;}
.yc5{bottom:775.840000pt;}
.ydc{bottom:775.845333pt;}
.y173{bottom:776.160000pt;}
.y66{bottom:776.474560pt;}
.y52{bottom:784.793280pt;}
.y1bb{bottom:786.242240pt;}
.yb6{bottom:786.719680pt;}
.y199{bottom:791.339840pt;}
.y21e{bottom:791.364160pt;}
.y1d6{bottom:793.600000pt;}
.ya{bottom:795.520000pt;}
.y25{bottom:797.278720pt;}
.y17a{bottom:797.437600pt;}
.y126{bottom:798.713280pt;}
.ye6{bottom:799.826560pt;}
.y95{bottom:799.843040pt;}
.y36{bottom:800.301280pt;}
.y150{bottom:800.960000pt;}
.y161{bottom:800.961600pt;}
.yf2{bottom:802.400000pt;}
.y65{bottom:802.720000pt;}
.y83{bottom:807.840000pt;}
.y15f{bottom:809.760000pt;}
.y172{bottom:810.227840pt;}
.y204{bottom:813.552000pt;}
.y21d{bottom:814.240000pt;}
.y198{bottom:817.585280pt;}
.y51{bottom:819.032160pt;}
.y1ba{bottom:820.481120pt;}
.y179{bottom:823.683040pt;}
.y24{bottom:824.319360pt;}
.y125{bottom:824.958720pt;}
.y94{bottom:825.920000pt;}
.y35{bottom:826.546720pt;}
.y1d5{bottom:827.683360pt;}
.yb5{bottom:828.952000pt;}
.ye5{bottom:833.915680pt;}
.y1e3{bottom:835.510080pt;}
.y203{bottom:836.427840pt;}
.y14f{bottom:837.280000pt;}
.y64{bottom:839.040000pt;}
.y82{bottom:841.906720pt;}
.y197{bottom:843.662240pt;}
.y171{bottom:844.466720pt;}
.y50{bottom:845.109120pt;}
.yef{bottom:848.640000pt;}
.y178{bottom:849.760000pt;}
.y124{bottom:851.204160pt;}
.y23{bottom:851.521920pt;}
.y9{bottom:852.480000pt;}
.y34{bottom:852.623680pt;}
.y21c{bottom:852.964160pt;}
.y1b9{bottom:854.720000pt;}
.y1e2{bottom:858.385920pt;}
.y202{bottom:859.153920pt;}
.y15e{bottom:859.840000pt;}
.y93{bottom:860.160000pt;}
.y1d4{bottom:861.922240pt;}
.yb4{bottom:863.190880pt;}
.y14e{bottom:868.000000pt;}
.y81{bottom:868.152160pt;}
.ye4{bottom:868.154560pt;}
.y1a5{bottom:869.907680pt;}
.y170{bottom:870.712160pt;}
.y4f{bottom:871.354560pt;}
.y21b{bottom:875.840000pt;}
.y123{bottom:877.281120pt;}
.y196{bottom:877.901120pt;}
.y22{bottom:878.562560pt;}
.y33{bottom:878.869120pt;}
.y1e1{bottom:881.112000pt;}
.y201{bottom:883.003200pt;}
.y63{bottom:884.320000pt;}
.y177{bottom:886.080000pt;}
.y1b8{bottom:888.960000pt;}
.y80{bottom:894.397600pt;}
.ye3{bottom:894.404160pt;}
.yee{bottom:894.880000pt;}
.y1d3{bottom:896.161120pt;}
.y16f{bottom:896.957600pt;}
.y21{bottom:897.124480pt;}
.yb3{bottom:897.280000pt;}
.y4e{bottom:897.600000pt;}
.y8{bottom:898.067520pt;}
.y1e0{bottom:903.838080pt;}
.y1a4{bottom:904.146560pt;}
.y32{bottom:905.114560pt;}
.y200{bottom:905.729280pt;}
.y122{bottom:911.520000pt;}
.y195{bottom:912.140000pt;}
.y21a{bottom:914.565120pt;}
.y15d{bottom:918.707520pt;}
.y7f{bottom:920.643040pt;}
.y16e{bottom:923.034560pt;}
.y20{bottom:923.517440pt;}
.yec{bottom:925.760000pt;}
.y1df{bottom:926.713920pt;}
.ye2{bottom:928.643040pt;}
.y1ff{bottom:929.578560pt;}
.y1d2{bottom:930.400000pt;}
.y31{bottom:931.360000pt;}
.yb2{bottom:931.520000pt;}
.y7{bottom:934.080000pt;}
.y219{bottom:937.440960pt;}
.y194{bottom:938.385440pt;}
.y62{bottom:940.800000pt;}
.y4d{bottom:942.240000pt;}
.y7e{bottom:946.720000pt;}
.y16d{bottom:949.280000pt;}
.y1de{bottom:949.440000pt;}
.y1f{bottom:950.720000pt;}
.y1fe{bottom:952.304640pt;}
.ye1{bottom:954.714560pt;}
.y121{bottom:955.040000pt;}
.y15c{bottom:958.393920pt;}
.y218{bottom:960.167040pt;}
.y193{bottom:964.630880pt;}
.y6{bottom:970.080000pt;}
.y1d1{bottom:972.643040pt;}
.yb1{bottom:975.040000pt;}
.y30{bottom:975.840000pt;}
.y1fd{bottom:976.153920pt;}
.y1e{bottom:980.160000pt;}
.y7d{bottom:980.960000pt;}
.y15b{bottom:981.120000pt;}
.y176{bottom:987.680000pt;}
.y16c{bottom:992.800000pt;}
.y192{bottom:998.720000pt;}
.y1fc{bottom:998.880000pt;}
.y4{bottom:1003.539200pt;}
.y3{bottom:1022.572160pt;}
.y2{bottom:1041.605120pt;}
.y1{bottom:1060.800000pt;}
.y169{bottom:1062.720000pt;}
.h1b{height:18.663750pt;}
.h1c{height:29.773125pt;}
.h22{height:30.240000pt;}
.h25{height:30.400000pt;}
.h17{height:30.694155pt;}
.h12{height:31.594687pt;}
.h1e{height:34.108858pt;}
.h31{height:34.260745pt;}
.h15{height:34.800612pt;}
.h16{height:34.801146pt;}
.h27{height:35.414062pt;}
.hb{height:38.672812pt;}
.h2{height:39.243750pt;}
.h3{height:40.882500pt;}
.hd{height:43.383750pt;}
.h2f{height:44.437500pt;}
.h23{height:45.600000pt;}
.h37{height:46.246437pt;}
.h9{height:47.218750pt;}
.h21{height:49.907812pt;}
.ha{height:52.781250pt;}
.h11{height:55.172812pt;}
.h8{height:55.245937pt;}
.h34{height:55.267697pt;}
.h35{height:55.282418pt;}
.h13{height:55.304177pt;}
.hf{height:55.338097pt;}
.h2d{height:55.476978pt;}
.h2a{height:55.919857pt;}
.h2e{height:58.240000pt;}
.h10{height:61.754062pt;}
.h20{height:62.230547pt;}
.h32{height:62.247188pt;}
.h1f{height:62.268948pt;}
.h1a{height:62.279188pt;}
.h19{height:62.289583pt;}
.h24{height:62.294063pt;}
.h33{height:62.303662pt;}
.h18{height:62.341267pt;}
.h2b{height:62.561333pt;}
.h2c{height:62.720000pt;}
.h39{height:64.419754pt;}
.hc{height:67.329920pt;}
.he{height:70.734375pt;}
.h4{height:77.765625pt;}
.h7{height:78.855312pt;}
.h6{height:94.312500pt;}
.h5{height:103.539375pt;}
.h14{height:161.926667pt;}
.h36{height:168.777333pt;}
.h26{height:208.320000pt;}
.h38{height:222.505333pt;}
.h1d{height:222.986667pt;}
.h30{height:223.552000pt;}
.h28{height:793.760000pt;}
.h29{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:122.080000pt;}
.w2{width:127.738667pt;}
.w9{width:140.640000pt;}
.we{width:150.880000pt;}
.w5{width:169.280000pt;}
.w8{width:169.920000pt;}
.wa{width:197.760000pt;}
.w3{width:206.337333pt;}
.wb{width:235.680000pt;}
.w11{width:261.185333pt;}
.wf{width:282.880000pt;}
.w10{width:314.720000pt;}
.w4{width:346.556000pt;}
.w6{width:434.080000pt;}
.w12{width:454.445333pt;}
.w13{width:465.832000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:1122.560000pt;}
.wd{width:1122.666667pt;}
.x18{left:-90.588667pt;}
.x17{left:-48.431867pt;}
.x0{left:0.000000pt;}
.x2f{left:5.920000pt;}
.x2b{left:6.880000pt;}
.x54{left:17.228133pt;}
.x27{left:28.821467pt;}
.x55{left:39.136400pt;}
.x26{left:47.300400pt;}
.x1{left:86.880000pt;}
.x24{left:88.960000pt;}
.x12{left:91.360000pt;}
.xb{left:93.280000pt;}
.x31{left:94.560000pt;}
.x8{left:101.276160pt;}
.x50{left:103.150533pt;}
.x29{left:105.759840pt;}
.x44{left:110.880000pt;}
.x1f{left:111.833760pt;}
.x10{left:115.315680pt;}
.x21{left:124.469760pt;}
.x19{left:129.489733pt;}
.x4{left:132.800000pt;}
.x1a{left:138.565920pt;}
.xe{left:143.680000pt;}
.x23{left:157.927520pt;}
.x1b{left:165.129600pt;}
.x53{left:169.693333pt;}
.x4f{left:175.304000pt;}
.x1c{left:176.642400pt;}
.x39{left:179.520000pt;}
.x34{left:186.418880pt;}
.x28{left:189.438240pt;}
.x1d{left:190.719840pt;}
.x5{left:205.760000pt;}
.x46{left:216.000000pt;}
.x52{left:221.757600pt;}
.x20{left:225.108480pt;}
.x25{left:229.277333pt;}
.x22{left:230.561120pt;}
.x49{left:256.486560pt;}
.x9{left:269.600000pt;}
.x6{left:273.600000pt;}
.x2c{left:276.320000pt;}
.xa{left:283.208000pt;}
.xc{left:289.920000pt;}
.x15{left:296.160000pt;}
.x48{left:304.000000pt;}
.x4a{left:305.117760pt;}
.x4c{left:308.800000pt;}
.x3f{left:311.200000pt;}
.x3e{left:323.532800pt;}
.x11{left:333.600000pt;}
.x4d{left:335.847520pt;}
.x35{left:337.938560pt;}
.x13{left:341.920000pt;}
.x3b{left:354.051840pt;}
.xf{left:355.840000pt;}
.x3d{left:359.200000pt;}
.x7{left:360.323040pt;}
.xd{left:362.240000pt;}
.x2a{left:366.240000pt;}
.x2d{left:399.200000pt;}
.x3{left:402.400000pt;}
.x40{left:409.760000pt;}
.x47{left:456.898667pt;}
.x2{left:473.440000pt;}
.x30{left:474.720000pt;}
.x16{left:507.594667pt;}
.x36{left:509.301440pt;}
.x33{left:514.880000pt;}
.x3a{left:548.480000pt;}
.x37{left:555.390080pt;}
.x2e{left:569.760000pt;}
.x1e{left:575.680000pt;}
.x14{left:624.480960pt;}
.x4e{left:629.770240pt;}
.x32{left:636.000000pt;}
.x3c{left:641.572320pt;}
.x4b{left:702.080000pt;}
.x51{left:704.160000pt;}
.x42{left:708.640000pt;}
.x45{left:709.600000pt;}
.x43{left:710.880000pt;}
.x41{left:718.080000pt;}
.x38{left:838.883840pt;}
}




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