
    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_09b117e665e7d42b34e8b3a9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e92ace85438135a0913ed832.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.719727;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_9b218b9cb28dd9561f7f0b16.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_96a67950bab317942880a32b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_f10219fe7d2defc4998c70c9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c80fdb87d352bf9a3dfcb9f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.147949;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_b31e59fee7b0e828a7b7d7cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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_13b8541bf93e959b0f6678e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_87f13e9ce6c5fb9daa3ea865.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_01c36f2d0db37bd0fb7b2b51.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985352;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_58d9c6452dc9a57d60cd2782.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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_9b2e2000712355feeb22f63e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.985352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4c3c93636d501d264be38b54.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_edea6946d90c812bfa71ba0b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.103000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b9fbc3b807a063759641d75a.woff2')format("woff");}.fff{font-family:fff;line-height:0.975098;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:ff10;src:url('chunks/assets/font_6f7b1aba98a8181617065946.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.737000;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:ff11;src:url('chunks/assets/font_ea2a74c7f69644da7111c22f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.231564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231564,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);}
.v12{vertical-align:-42.432000px;}
.v2{vertical-align:-31.969200px;}
.v3{vertical-align:-27.972600px;}
.v8{vertical-align:-24.093600px;}
.v13{vertical-align:-18.200160px;}
.v5{vertical-align:-5.779200px;}
.vb{vertical-align:-3.091201px;}
.v11{vertical-align:-1.927800px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:3.091201px;}
.va{vertical-align:7.979612px;}
.v4{vertical-align:10.214400px;}
.v1{vertical-align:19.980600px;}
.v10{vertical-align:28.082685px;}
.vd{vertical-align:29.658153px;}
.v7{vertical-align:40.185600px;}
.v6{vertical-align:41.193600px;}
.vf{vertical-align:45.299733px;}
.vc{vertical-align:47.841095px;}
.ve{vertical-align:51.576901px;}
.lsb{letter-spacing:-3.762002px;}
.lsc{letter-spacing:-2.365230px;}
.ls13{letter-spacing:-0.831438px;}
.ls12{letter-spacing:-0.680274px;}
.ls11{letter-spacing:-0.604686px;}
.lse{letter-spacing:-0.558228px;}
.lsd{letter-spacing:-0.554358px;}
.ls10{letter-spacing:-0.543354px;}
.lsf{letter-spacing:-0.524910px;}
.ls5{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.009480px;}
.ls9{letter-spacing:0.012875px;}
.lsa{letter-spacing:0.013723px;}
.ls8{letter-spacing:0.019723px;}
.ls0{letter-spacing:0.155376px;}
.ls1{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.370512px;}
.ls2{letter-spacing:198.000000px;}
.ls6{letter-spacing:234.240000px;}
.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;}
}
.ws4{word-spacing:-55.278000px;}
.ws0{word-spacing:-30.250512px;}
.ws1{word-spacing:-30.119040px;}
.ws31{word-spacing:-18.014204px;}
.wsc{word-spacing:-17.928000px;}
.ws37{word-spacing:-17.900212px;}
.ws3{word-spacing:-17.221345px;}
.wsa{word-spacing:-16.732800px;}
.ws80{word-spacing:-16.657502px;}
.ws7a{word-spacing:-16.507928px;}
.ws8c{word-spacing:-16.434000px;}
.ws7b{word-spacing:-15.903242px;}
.ws8b{word-spacing:-15.642000px;}
.ws7e{word-spacing:-15.132172px;}
.ws82{word-spacing:-14.779843px;}
.ws7d{word-spacing:-14.300734px;}
.ws30{word-spacing:-14.194494px;}
.ws9{word-spacing:-13.936032px;}
.ws86{word-spacing:-13.608398px;}
.ws7f{word-spacing:-13.534295px;}
.ws79{word-spacing:-11.292548px;}
.ws7c{word-spacing:-10.612274px;}
.ws50{word-spacing:-10.452024px;}
.ws32{word-spacing:-9.413615px;}
.ws84{word-spacing:-8.964000px;}
.ws87{word-spacing:-7.933738px;}
.ws56{word-spacing:-4.265180px;}
.ws69{word-spacing:-3.600000px;}
.ws77{word-spacing:-3.528000px;}
.ws74{word-spacing:-2.952000px;}
.ws64{word-spacing:-2.736000px;}
.ws88{word-spacing:-2.592000px;}
.ws1d{word-spacing:-2.520000px;}
.ws2e{word-spacing:-2.508000px;}
.ws46{word-spacing:-2.436000px;}
.wsba{word-spacing:-2.178000px;}
.ws2d{word-spacing:-2.112000px;}
.wsb1{word-spacing:-1.584000px;}
.ws2f{word-spacing:-0.396000px;}
.ws4d{word-spacing:-0.336000px;}
.ws5c{word-spacing:-0.288000px;}
.ws22{word-spacing:-0.252000px;}
.ws2{word-spacing:0.000000px;}
.wsa0{word-spacing:0.360000px;}
.ws43{word-spacing:0.588000px;}
.ws18{word-spacing:0.840000px;}
.ws6c{word-spacing:1.080000px;}
.wsa7{word-spacing:1.156680px;}
.ws9c{word-spacing:1.224000px;}
.ws20{word-spacing:1.344000px;}
.ws48{word-spacing:1.596000px;}
.ws9e{word-spacing:1.680000px;}
.ws40{word-spacing:1.932000px;}
.ws21{word-spacing:2.016000px;}
.wsa5{word-spacing:2.177280px;}
.ws4f{word-spacing:2.365230px;}
.ws76{word-spacing:2.448000px;}
.wsac{word-spacing:3.432000px;}
.ws2c{word-spacing:3.444000px;}
.ws42{word-spacing:3.528000px;}
.wsad{word-spacing:3.564000px;}
.ws4e{word-spacing:3.762002px;}
.wsa8{word-spacing:4.092000px;}
.ws45{word-spacing:4.368000px;}
.ws2a{word-spacing:4.452000px;}
.ws94{word-spacing:4.464000px;}
.ws99{word-spacing:5.184000px;}
.ws17{word-spacing:5.964000px;}
.ws89{word-spacing:6.120000px;}
.wsb6{word-spacing:6.402000px;}
.wsb3{word-spacing:6.534000px;}
.ws4a{word-spacing:6.552000px;}
.ws3d{word-spacing:8.064000px;}
.wsb7{word-spacing:8.844000px;}
.wsa2{word-spacing:9.174000px;}
.wsa1{word-spacing:9.636000px;}
.ws75{word-spacing:10.296000px;}
.ws98{word-spacing:10.368000px;}
.wsb0{word-spacing:10.956000px;}
.ws66{word-spacing:11.016000px;}
.wsae{word-spacing:11.088000px;}
.wsaf{word-spacing:11.484000px;}
.ws14{word-spacing:12.768000px;}
.ws4c{word-spacing:12.936000px;}
.ws71{word-spacing:12.960000px;}
.ws4b{word-spacing:14.028000px;}
.ws5b{word-spacing:14.400000px;}
.ws15{word-spacing:14.952000px;}
.ws3c{word-spacing:15.036000px;}
.ws1b{word-spacing:15.456000px;}
.ws13{word-spacing:16.968000px;}
.ws5d{word-spacing:17.064000px;}
.ws83{word-spacing:17.712000px;}
.ws9d{word-spacing:17.820000px;}
.wsab{word-spacing:18.150000px;}
.ws29{word-spacing:18.312000px;}
.ws57{word-spacing:18.686796px;}
.ws63{word-spacing:19.008000px;}
.ws59{word-spacing:19.343402px;}
.wsb8{word-spacing:19.734000px;}
.ws51{word-spacing:19.735145px;}
.ws54{word-spacing:19.872917px;}
.ws47{word-spacing:19.908000px;}
.ws39{word-spacing:20.748000px;}
.ws41{word-spacing:20.916000px;}
.wse{word-spacing:20.928000px;}
.ws10{word-spacing:21.312000px;}
.ws9f{word-spacing:21.540000px;}
.ws3a{word-spacing:21.756000px;}
.ws8d{word-spacing:22.392000px;}
.ws95{word-spacing:23.112000px;}
.ws67{word-spacing:23.256000px;}
.ws19{word-spacing:23.520000px;}
.ws9a{word-spacing:23.616000px;}
.ws8f{word-spacing:24.336000px;}
.ws6f{word-spacing:25.056000px;}
.ws61{word-spacing:25.200000px;}
.wsa4{word-spacing:25.608000px;}
.ws65{word-spacing:26.928000px;}
.ws60{word-spacing:27.648000px;}
.ws1f{word-spacing:27.972000px;}
.ws24{word-spacing:28.560000px;}
.ws49{word-spacing:29.148000px;}
.ws3e{word-spacing:29.232000px;}
.ws70{word-spacing:29.304000px;}
.wsa3{word-spacing:29.502000px;}
.ws78{word-spacing:30.384000px;}
.wsa9{word-spacing:32.472000px;}
.wsb4{word-spacing:32.604000px;}
.ws96{word-spacing:36.000000px;}
.ws97{word-spacing:36.792000px;}
.ws23{word-spacing:41.580000px;}
.ws33{word-spacing:42.162547px;}
.ws38{word-spacing:42.737654px;}
.ws3b{word-spacing:42.756000px;}
.ws9b{word-spacing:42.768000px;}
.ws35{word-spacing:42.989263px;}
.ws36{word-spacing:43.348705px;}
.ws6d{word-spacing:43.704000px;}
.ws25{word-spacing:44.016000px;}
.ws90{word-spacing:44.136000px;}
.wsa6{word-spacing:44.906400px;}
.ws5e{word-spacing:46.368000px;}
.ws68{word-spacing:47.664000px;}
.ws5f{word-spacing:48.384000px;}
.ws16{word-spacing:48.636000px;}
.ws44{word-spacing:48.972000px;}
.ws1e{word-spacing:49.056000px;}
.ws2b{word-spacing:49.560000px;}
.ws58{word-spacing:49.609244px;}
.ws28{word-spacing:49.812000px;}
.ws5a{word-spacing:51.352387px;}
.ws12{word-spacing:51.744000px;}
.ws52{word-spacing:52.392375px;}
.ws55{word-spacing:52.758128px;}
.ws6b{word-spacing:55.296000px;}
.wsd{word-spacing:59.424000px;}
.wsb5{word-spacing:61.974000px;}
.ws11{word-spacing:64.032000px;}
.ws34{word-spacing:65.346556px;}
.ws73{word-spacing:68.688000px;}
.ws1c{word-spacing:75.348000px;}
.ws6a{word-spacing:77.616000px;}
.ws1a{word-spacing:77.952000px;}
.ws6e{word-spacing:78.840000px;}
.ws62{word-spacing:81.936000px;}
.ws93{word-spacing:83.304000px;}
.wsaa{word-spacing:83.688000px;}
.wsb2{word-spacing:84.282000px;}
.ws3f{word-spacing:87.528000px;}
.ws92{word-spacing:89.712000px;}
.wsb9{word-spacing:94.248000px;}
.ws26{word-spacing:113.820000px;}
.ws27{word-spacing:123.984000px;}
.ws8e{word-spacing:137.232000px;}
.ws72{word-spacing:141.048000px;}
.ws7{word-spacing:172.380000px;}
.ws5{word-spacing:189.720000px;}
.ws6{word-spacing:189.780000px;}
.wsb{word-spacing:191.426868px;}
.ws8{word-spacing:201.900000px;}
.wsf{word-spacing:221.472000px;}
.ws91{word-spacing:231.552000px;}
.ws85{word-spacing:434.880000px;}
.ws81{word-spacing:612.788107px;}
.ws53{word-spacing:1016.840292px;}
.ws8a{word-spacing:3149.832000px;}
._1e{margin-left:-6743.160000px;}
._16{margin-left:-6702.552000px;}
._18{margin-left:-2463.552000px;}
._25{margin-left:-619.740000px;}
._3{margin-left:-198.000000px;}
._1d{margin-left:-77.587200px;}
._d{margin-left:-28.719600px;}
._17{margin-left:-15.044400px;}
._b{margin-left:-8.278596px;}
._8{margin-left:-6.548031px;}
._22{margin-left:-4.705116px;}
._c{margin-left:-3.694968px;}
._a{margin-left:-1.870866px;}
._9{width:1.852157px;}
._19{width:3.740299px;}
._2{width:10.296144px;}
._5{width:16.128000px;}
._24{width:28.260000px;}
._0{width:37.944000px;}
._1a{width:64.410971px;}
._1c{width:89.285393px;}
._6{width:115.992000px;}
._4{width:117.936000px;}
._15{width:118.944000px;}
._7{width:126.000000px;}
._14{width:138.835200px;}
._1f{width:155.222150px;}
._13{width:162.153600px;}
._12{width:183.388800px;}
._1{width:198.000000px;}
._11{width:206.587217px;}
._f{width:309.993600px;}
._10{width:380.352000px;}
._1b{width:603.898504px;}
._23{width:650.076000px;}
._21{width:715.126274px;}
._20{width:986.041008px;}
._e{width:1686.115200px;}
.fc12{color:rgb(42,93,62);}
.fcf{color:rgb(115,185,135);}
.fc10{color:rgb(48,86,145);}
.fce{color:rgb(224,190,35);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(37,86,150);}
.fcb{color:rgb(36,86,151);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(0,154,219);}
.fc4{color:rgb(0,153,214);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(50,130,86);}
.fcc{color:transparent;}
.fc6{color:rgb(43,84,149);}
.fcd{color:rgb(152,128,47);}
.fc8{color:rgb(18,70,120);}
.fc9{color:rgb(108,109,110);}
.fc11{color:rgb(141,163,195);}
.fca{color:rgb(60,112,167);}
.fs20{font-size:17.129238px;}
.fs33{font-size:31.862400px;}
.fs9{font-size:34.980000px;}
.fs2f{font-size:36.000000px;}
.fs30{font-size:36.288000px;}
.fs16{font-size:38.004000px;}
.fs1d{font-size:41.976000px;}
.fs18{font-size:42.177600px;}
.fs13{font-size:44.338200px;}
.fs24{font-size:45.351600px;}
.fs26{font-size:45.733200px;}
.fs19{font-size:47.304600px;}
.fs1{font-size:47.520000px;}
.fs31{font-size:48.000000px;}
.fse{font-size:48.972000px;}
.fs21{font-size:52.491000px;}
.fs22{font-size:54.335400px;}
.fs2a{font-size:54.354600px;}
.fs32{font-size:54.652200px;}
.fs2c{font-size:54.791400px;}
.fs12{font-size:54.928800px;}
.fs27{font-size:55.429200px;}
.fs1e{font-size:55.435800px;}
.fs1f{font-size:55.822800px;}
.fsd{font-size:55.968000px;}
.fs15{font-size:57.006000px;}
.fs11{font-size:58.766400px;}
.fs2d{font-size:59.356800px;}
.fs8{font-size:60.000000px;}
.fs25{font-size:60.468600px;}
.fs6{font-size:65.480400px;}
.fs10{font-size:66.000000px;}
.fs2b{font-size:66.897600px;}
.fs1c{font-size:67.009800px;}
.fsf{font-size:67.200000px;}
.fs34{font-size:68.040000px;}
.fs1b{font-size:71.888400px;}
.fs0{font-size:72.000000px;}
.fs17{font-size:72.346200px;}
.fs1a{font-size:73.101600px;}
.fs14{font-size:76.008000px;}
.fs2e{font-size:82.186800px;}
.fsa{font-size:84.000000px;}
.fsc{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs28{font-size:115.200000px;}
.fs3{font-size:119.520000px;}
.fs29{font-size:144.000000px;}
.fs23{font-size:150.000000px;}
.fsb{font-size:180.000000px;}
.fs5{font-size:187.086600px;}
.fs7{font-size:222.000000px;}
.fs4{font-size:336.756000px;}
.y0{bottom:0.000000px;}
.y4{bottom:35.608800px;}
.y3{bottom:56.128800px;}
.y10c{bottom:69.668250px;}
.y2{bottom:77.008800px;}
.y98{bottom:79.763700px;}
.y1d6{bottom:84.191100px;}
.y20e{bottom:92.197800px;}
.y1{bottom:93.568800px;}
.y6a{bottom:94.135500px;}
.y65{bottom:94.170450px;}
.y1d5{bottom:98.591100px;}
.y1d7{bottom:99.263100px;}
.y115{bottom:100.196850px;}
.y1c4{bottom:100.833450px;}
.y9c{bottom:100.841250px;}
.y99{bottom:102.130350px;}
.y95{bottom:106.390650px;}
.yb1{bottom:108.165600px;}
.y20d{bottom:111.997800px;}
.y1d4{bottom:112.991100px;}
.y69{bottom:113.935500px;}
.y9b{bottom:115.092750px;}
.y1f8{bottom:116.084400px;}
.y64{bottom:119.370450px;}
.y9a{bottom:129.344250px;}
.y94{bottom:131.590650px;}
.y20c{bottom:131.797800px;}
.y1f7{bottom:134.084400px;}
.y6d{bottom:134.841000px;}
.y1de{bottom:137.096250px;}
.y1dc{bottom:137.096490px;}
.y1c3{bottom:137.454450px;}
.y9d{bottom:143.595750px;}
.y63{bottom:144.570450px;}
.y9f{bottom:146.521050px;}
.y20b{bottom:151.597800px;}
.y1dd{bottom:153.491910px;}
.y1db{bottom:153.492150px;}
.y6c{bottom:154.641000px;}
.y93{bottom:156.790650px;}
.y114{bottom:162.924176px;}
.y9e{bottom:164.093250px;}
.y110{bottom:167.970932px;}
.y62{bottom:169.770450px;}
.y1f6{bottom:170.084400px;}
.yb0{bottom:170.589900px;}
.y20a{bottom:171.397800px;}
.y6b{bottom:174.441000px;}
.ya1{bottom:174.807150px;}
.y111{bottom:176.698200px;}
.y196{bottom:178.784160px;}
.y195{bottom:178.886610px;}
.y19a{bottom:178.986360px;}
.y10d{bottom:181.277400px;}
.y92{bottom:181.990650px;}
.y1f5{bottom:188.084400px;}
.y113{bottom:189.589274px;}
.y209{bottom:191.197800px;}
.ya0{bottom:192.376500px;}
.y191{bottom:192.389640px;}
.y194{bottom:192.492090px;}
.y199{bottom:192.591840px;}
.y10f{bottom:193.730890px;}
.y61{bottom:194.970450px;}
.ya3{bottom:202.274400px;}
.y190{bottom:205.995120px;}
.y112{bottom:206.052900px;}
.y1f4{bottom:206.084400px;}
.y193{bottom:206.097570px;}
.y198{bottom:206.197320px;}
.y91{bottom:207.190650px;}
.y10e{bottom:209.635663px;}
.y208{bottom:210.997800px;}
.y20f{bottom:215.910600px;}
.y18f{bottom:219.600600px;}
.y192{bottom:219.703050px;}
.y197{bottom:219.802800px;}
.ya2{bottom:219.843750px;}
.y60{bottom:220.170450px;}
.y7a{bottom:220.606500px;}
.y10b{bottom:227.605270px;}
.y108{bottom:228.862125px;}
.y207{bottom:230.797800px;}
.y1c2{bottom:230.982450px;}
.y90{bottom:232.390650px;}
.y79{bottom:233.660100px;}
.yaf{bottom:237.643740px;}
.y1f3{bottom:242.084400px;}
.y105{bottom:242.915100px;}
.y96{bottom:244.503000px;}
.y1d8{bottom:246.033750px;}
.y172{bottom:248.743368px;}
.y176{bottom:249.317850px;}
.y175{bottom:249.445350px;}
.y17d{bottom:249.854298px;}
.y17c{bottom:249.914766px;}
.y173{bottom:249.998092px;}
.y17e{bottom:250.005469px;}
.y174{bottom:250.035600px;}
.y170{bottom:250.920450px;}
.y178{bottom:251.494650px;}
.y17a{bottom:251.728950px;}
.y18e{bottom:251.910600px;}
.y16f{bottom:252.016050px;}
.y177{bottom:252.054054px;}
.y179{bottom:252.212400px;}
.y171{bottom:252.341250px;}
.y16e{bottom:252.810000px;}
.y17b{bottom:253.097100px;}
.y10a{bottom:255.000309px;}
.y107{bottom:256.067244px;}
.y8f{bottom:257.590650px;}
.yae{bottom:259.347600px;}
.y1f2{bottom:260.084400px;}
.y5f{bottom:270.570450px;}
.y217{bottom:271.132950px;}
.y109{bottom:271.914618px;}
.y106{bottom:272.864291px;}
.y1f1{bottom:278.084400px;}
.y35{bottom:278.182800px;}
.y8e{bottom:282.790650px;}
.y71{bottom:284.283750px;}
.y24{bottom:286.789409px;}
.y216{bottom:290.932950px;}
.yeb{bottom:292.745100px;}
.y5e{bottom:295.770450px;}
.y1cd{bottom:305.615100px;}
.y8d{bottom:307.990650px;}
.y19e{bottom:308.384700px;}
.y215{bottom:310.732950px;}
.y72{bottom:311.322452px;}
.yea{bottom:314.345100px;}
.yad{bottom:315.723630px;}
.y1f0{bottom:317.478750px;}
.y1cc{bottom:320.015100px;}
.y5d{bottom:320.970450px;}
.y1b4{bottom:325.597410px;}
.yaa{bottom:327.835740px;}
.yb6{bottom:328.362990px;}
.y1d3{bottom:329.051100px;}
.y214{bottom:330.532950px;}
.y8c{bottom:333.190650px;}
.y34{bottom:335.662800px;}
.y2c{bottom:335.932449px;}
.ye9{bottom:335.945100px;}
.yac{bottom:337.427490px;}
.y1ef{bottom:339.078750px;}
.y1b8{bottom:339.107520px;}
.y1b3{bottom:341.903790px;}
.y1d2{bottom:343.451100px;}
.y5c{bottom:346.170450px;}
.ya9{bottom:349.539600px;}
.yb5{bottom:350.066850px;}
.y213{bottom:350.332950px;}
.y2b{bottom:355.576569px;}
.ye8{bottom:357.545100px;}
.y1b2{bottom:358.210170px;}
.y8b{bottom:358.390650px;}
.yab{bottom:359.131350px;}
.y1b7{bottom:359.176800px;}
.y1ee{bottom:360.678750px;}
.y73{bottom:363.834385px;}
.yf8{bottom:369.544950px;}
.y212{bottom:370.132950px;}
.y5b{bottom:371.370450px;}
.y1b1{bottom:374.516550px;}
.y2a{bottom:375.220689px;}
.ye7{bottom:379.145100px;}
.y1ed{bottom:382.278750px;}
.y1bd{bottom:383.944350px;}
.y188{bottom:386.868660px;}
.y183{bottom:387.398430px;}
.y18d{bottom:387.559530px;}
.y211{bottom:389.932950px;}
.y3a{bottom:390.937350px;}
.y33{bottom:390.937800px;}
.yf7{bottom:391.144950px;}
.y1da{bottom:392.661750px;}
.y218{bottom:395.904750px;}
.y5a{bottom:396.570450px;}
.y187{bottom:400.588620px;}
.ye6{bottom:400.745100px;}
.y182{bottom:401.003910px;}
.y18c{bottom:401.165010px;}
.y1ec{bottom:403.878750px;}
.y1d9{bottom:407.061750px;}
.y8a{bottom:408.790650px;}
.y210{bottom:409.732950px;}
.yb2{bottom:412.070850px;}
.yf6{bottom:412.744950px;}
.y186{bottom:414.308580px;}
.y29{bottom:414.508929px;}
.y181{bottom:414.609390px;}
.y18b{bottom:414.770490px;}
.yb4{bottom:414.964698px;}
.y59{bottom:421.770450px;}
.ye5{bottom:422.345100px;}
.ya8{bottom:422.768550px;}
.y74{bottom:424.352190px;}
.y1eb{bottom:425.478750px;}
.y185{bottom:428.028540px;}
.y180{bottom:428.214870px;}
.y18a{bottom:428.375970px;}
.y89{bottom:433.990650px;}
.yf5{bottom:434.344950px;}
.yf3{bottom:434.345100px;}
.yb3{bottom:436.668558px;}
.y184{bottom:441.748500px;}
.y17f{bottom:441.820350px;}
.y189{bottom:441.981450px;}
.ye4{bottom:443.945100px;}
.y39{bottom:446.212350px;}
.y32{bottom:446.212800px;}
.y58{bottom:446.970450px;}
.y1ea{bottom:447.078750px;}
.y21f{bottom:449.137500px;}
.y28{bottom:455.368699px;}
.yf4{bottom:455.944950px;}
.yf2{bottom:455.945100px;}
.y88{bottom:459.190650px;}
.y1e9{bottom:468.678750px;}
.y21e{bottom:468.937500px;}
.y1d1{bottom:470.579100px;}
.y57{bottom:472.170450px;}
.ya7{bottom:473.728950px;}
.y27{bottom:475.012819px;}
.yf1{bottom:477.545100px;}
.y75{bottom:483.730223px;}
.y1ce{bottom:483.827100px;}
.y87{bottom:484.390650px;}
.y1d0{bottom:484.979100px;}
.y159{bottom:488.171297px;}
.y16d{bottom:488.606879px;}
.y161{bottom:488.609729px;}
.y165{bottom:488.610360px;}
.y21d{bottom:488.737500px;}
.y169{bottom:488.765610px;}
.y15d{bottom:488.768460px;}
.ye3{bottom:490.139700px;}
.y1e8{bottom:490.278750px;}
.yf0{bottom:499.145100px;}
.y1cf{bottom:499.379100px;}
.y1be{bottom:500.983950px;}
.y38{bottom:501.487350px;}
.y31{bottom:501.487800px;}
.y158{bottom:501.776777px;}
.y16c{bottom:502.212359px;}
.y160{bottom:502.215209px;}
.y164{bottom:502.215840px;}
.y168{bottom:502.371090px;}
.y15c{bottom:502.373940px;}
.ybb{bottom:503.582314px;}
.y70{bottom:506.879100px;}
.y21c{bottom:508.537500px;}
.y86{bottom:509.590650px;}
.y26{bottom:514.301059px;}
.yc1{bottom:514.355936px;}
.y157{bottom:515.382257px;}
.y16b{bottom:515.817839px;}
.y15f{bottom:515.820689px;}
.y163{bottom:515.821320px;}
.y167{bottom:515.976570px;}
.y15b{bottom:515.979420px;}
.y56{bottom:520.646700px;}
.yef{bottom:520.745100px;}
.y21b{bottom:528.337500px;}
.y156{bottom:528.987737px;}
.y16a{bottom:529.423319px;}
.y15e{bottom:529.426169px;}
.y162{bottom:529.426800px;}
.y166{bottom:529.582050px;}
.y15a{bottom:529.584900px;}
.y1e7{bottom:533.478750px;}
.y25{bottom:533.945179px;}
.ya6{bottom:536.775900px;}
.yee{bottom:542.345100px;}
.y76{bottom:543.108256px;}
.y1bb{bottom:545.249040px;}
.yba{bottom:545.967235px;}
.yc0{bottom:545.979061px;}
.y21a{bottom:548.137500px;}
.y1d{bottom:550.048800px;}
.y1b6{bottom:553.402170px;}
.y1e6{bottom:555.078750px;}
.y220{bottom:555.282750px;}
.y37{bottom:556.762350px;}
.y30{bottom:556.762500px;}
.y1c1{bottom:558.441750px;}
.y85{bottom:559.990650px;}
.y141{bottom:560.615856px;}
.y14a{bottom:561.130362px;}
.y148{bottom:561.198225px;}
.y14b{bottom:561.281534px;}
.y1ba{bottom:561.555420px;}
.y140{bottom:562.218274px;}
.y149{bottom:562.309500px;}
.y143{bottom:562.785600px;}
.y147{bottom:563.027400px;}
.y13f{bottom:563.034600px;}
.y146{bottom:563.201700px;}
.y145{bottom:563.307150px;}
.y142{bottom:563.352060px;}
.y144{bottom:563.503350px;}
.y13d{bottom:563.556150px;}
.y13e{bottom:563.828259px;}
.yed{bottom:563.945100px;}
.y219{bottom:567.937500px;}
.y1b5{bottom:569.708550px;}
.y1c{bottom:570.928800px;}
.y101{bottom:574.065000px;}
.y102{bottom:574.125000px;}
.y46{bottom:574.939800px;}
.y1e5{bottom:576.678750px;}
.y1b9{bottom:577.861800px;}
.y23{bottom:581.647650px;}
.y55{bottom:581.819700px;}
.y84{bottom:585.190650px;}
.y1bc{bottom:586.252500px;}
.y1cb{bottom:588.179100px;}
.yb9{bottom:588.352157px;}
.ybf{bottom:588.363983px;}
.y1b{bottom:591.448800px;}
.y1c5{bottom:594.979950px;}
.ya5{bottom:596.623500px;}
.y1e4{bottom:598.278750px;}
.y77{bottom:602.486288px;}
.y1ca{bottom:602.579100px;}
.y45{bottom:603.739800px;}
.y54{bottom:607.019700px;}
.y36{bottom:607.042200px;}
.y205{bottom:609.651300px;}
.yec{bottom:610.139700px;}
.y83{bottom:610.390650px;}
.y2f{bottom:612.037500px;}
.y1a{bottom:612.328800px;}
.y1c9{bottom:616.979100px;}
.y1e3{bottom:619.878750px;}
.ybd{bottom:619.880673px;}
.y19f{bottom:621.757500px;}
.ye2{bottom:626.151150px;}
.y1b0{bottom:626.153250px;}
.y3b{bottom:626.157000px;}
.y7b{bottom:626.157750px;}
.y204{bottom:630.063300px;}
.yb8{bottom:630.737078px;}
.y53{bottom:632.219700px;}
.y44{bottom:632.539800px;}
.y19{bottom:635.008800px;}
.y82{bottom:635.590650px;}
.y6f{bottom:641.374200px;}
.y1e2{bottom:641.478750px;}
.y1c8{bottom:641.987100px;}
.y78{bottom:644.518050px;}
.y203{bottom:650.475300px;}
.ybe{bottom:651.409189px;}
.y1c0{bottom:651.969750px;}
.y22{bottom:653.287140px;}
.y1c7{bottom:656.387100px;}
.y52{bottom:657.419700px;}
.y117{bottom:657.918450px;}
.y18{bottom:658.048800px;}
.ya4{bottom:659.680650px;}
.y81{bottom:660.790650px;}
.y43{bottom:661.339800px;}
.y1e1{bottom:663.078750px;}
.y1bf{bottom:664.271550px;}
.y6e{bottom:666.574200px;}
.y2e{bottom:667.312500px;}
.y1c6{bottom:670.787100px;}
.y202{bottom:670.887300px;}
.yb7{bottom:673.122000px;}
.ybc{bottom:673.133826px;}
.y206{bottom:678.660600px;}
.y17{bottom:680.728800px;}
.y51{bottom:682.619700px;}
.y42{bottom:690.139800px;}
.y201{bottom:691.299300px;}
.y100{bottom:691.438800px;}
.y155{bottom:696.632730px;}
.y150{bottom:696.720630px;}
.y97{bottom:698.691000px;}
.y16{bottom:704.128800px;}
.y1e0{bottom:706.278750px;}
.y50{bottom:707.819700px;}
.y21{bottom:709.413120px;}
.y154{bottom:710.238210px;}
.y14f{bottom:710.326110px;}
.y80{bottom:711.190650px;}
.yff{bottom:713.038800px;}
.y41{bottom:718.939800px;}
.y153{bottom:723.843690px;}
.y14e{bottom:723.931590px;}
.y15{bottom:726.448800px;}
.y1df{bottom:727.878750px;}
.y1ff{bottom:731.019750px;}
.y4f{bottom:733.019700px;}
.yfe{bottom:734.638800px;}
.y7f{bottom:736.390650px;}
.y152{bottom:737.449170px;}
.y14d{bottom:737.537070px;}
.y14{bottom:747.688800px;}
.y40{bottom:747.739800px;}
.y1a3{bottom:749.478750px;}
.y1fe{bottom:750.819750px;}
.y151{bottom:751.054650px;}
.y14c{bottom:751.142550px;}
.yfd{bottom:756.238800px;}
.y4e{bottom:758.219700px;}
.y7e{bottom:761.590650px;}
.y20{bottom:765.539100px;}
.y13{bottom:768.208800px;}
.y1fd{bottom:770.619750px;}
.y1a2{bottom:771.078750px;}
.yd3{bottom:772.109958px;}
.yc6{bottom:773.793643px;}
.yc7{bottom:773.800800px;}
.y1a9{bottom:776.370750px;}
.yc9{bottom:780.682650px;}
.y4d{bottom:783.419700px;}
.y7d{bottom:786.790650px;}
.y12{bottom:788.728800px;}
.yca{bottom:788.877928px;}
.yd2{bottom:789.435063px;}
.y1fc{bottom:790.419750px;}
.y1a1{bottom:792.678750px;}
.y200{bottom:797.563500px;}
.y1a8{bottom:797.970750px;}
.y11b{bottom:798.515610px;}
.yde{bottom:799.502299px;}
.y13c{bottom:799.559425px;}
.yd4{bottom:800.955179px;}
.y103{bottom:806.145000px;}
.yd1{bottom:806.850028px;}
.yc5{bottom:807.060000px;}
.y4c{bottom:808.619700px;}
.y1fb{bottom:810.219750px;}
.y7c{bottom:811.990650px;}
.y11a{bottom:812.121090px;}
.y11{bottom:812.128800px;}
.y13b{bottom:813.164905px;}
.y1a0{bottom:814.278750px;}
.y1a7{bottom:819.570750px;}
.ycb{bottom:823.096806px;}
.yfc{bottom:824.388450px;}
.ydd{bottom:825.525900px;}
.y119{bottom:825.726570px;}
.y3f{bottom:826.461900px;}
.y13a{bottom:826.770385px;}
.yd5{bottom:827.676300px;}
.y4b{bottom:833.819700px;}
.y10{bottom:834.448800px;}
.y118{bottom:839.332050px;}
.y139{bottom:840.375865px;}
.y1a6{bottom:841.170750px;}
.yd6{bottom:841.964120px;}
.y1f{bottom:846.340842px;}
.ycd{bottom:849.641598px;}
.ycf{bottom:850.666007px;}
.y67{bottom:851.320050px;}
.yf{bottom:855.688800px;}
.y4a{bottom:859.019700px;}
.y66{bottom:861.181650px;}
.yce{bottom:862.761231px;}
.y1a5{bottom:862.770750px;}
.yd0{bottom:863.516059px;}
.y128{bottom:870.827700px;}
.y127{bottom:871.062000px;}
.y130{bottom:871.356832px;}
.y12f{bottom:871.417301px;}
.y125{bottom:871.423800px;}
.y131{bottom:871.508004px;}
.y126{bottom:871.544737px;}
.y124{bottom:872.430150px;}
.y133{bottom:872.833050px;}
.y12a{bottom:873.238800px;}
.y12c{bottom:873.246150px;}
.y132{bottom:873.285600px;}
.y12e{bottom:873.420450px;}
.y129{bottom:873.563904px;}
.y12b{bottom:873.722100px;}
.y123{bottom:874.417950px;}
.y12d{bottom:874.606950px;}
.ye{bottom:876.208800px;}
.y1fa{bottom:877.551300px;}
.y1ad{bottom:877.554150px;}
.yfb{bottom:878.388450px;}
.y3e{bottom:880.461900px;}
.y49{bottom:884.219700px;}
.y1a4{bottom:884.370750px;}
.ycc{bottom:892.774638px;}
.yd{bottom:899.248800px;}
.y48{bottom:909.419700px;}
.yc{bottom:920.128800px;}
.y1e{bottom:928.172550px;}
.y19d{bottom:929.748000px;}
.y1f9{bottom:931.551300px;}
.ye1{bottom:931.552050px;}
.y1ac{bottom:931.554150px;}
.yfa{bottom:932.388450px;}
.y2d{bottom:934.005600px;}
.y3d{bottom:934.461900px;}
.y1ae{bottom:938.412600px;}
.yb{bottom:940.648800px;}
.y47{bottom:957.900900px;}
.y68{bottom:961.303050px;}
.ya{bottom:963.688800px;}
.y122{bottom:980.126092px;}
.yc4{bottom:985.432650px;}
.yc8{bottom:986.213050px;}
.y121{bottom:993.731572px;}
.y9{bottom:998.248800px;}
.y120{bottom:1007.337052px;}
.y138{bottom:1007.337780px;}
.y1af{bottom:1015.308600px;}
.y1ab{bottom:1015.319850px;}
.yc3{bottom:1017.361470px;}
.yd8{bottom:1017.362970px;}
.y11f{bottom:1020.942532px;}
.y137{bottom:1020.943260px;}
.y8{bottom:1032.088800px;}
.y11e{bottom:1034.548012px;}
.y136{bottom:1034.548740px;}
.yc2{bottom:1039.291950px;}
.yd7{bottom:1039.293450px;}
.y104{bottom:1039.950000px;}
.y11d{bottom:1048.153492px;}
.y135{bottom:1048.154220px;}
.y11c{bottom:1061.758972px;}
.y134{bottom:1061.759700px;}
.ydc{bottom:1082.731348px;}
.y19c{bottom:1096.072200px;}
.y1aa{bottom:1100.228100px;}
.ye0{bottom:1100.236950px;}
.y116{bottom:1101.020550px;}
.yf9{bottom:1101.067350px;}
.y3c{bottom:1103.140200px;}
.ydb{bottom:1104.375513px;}
.y19b{bottom:1107.410100px;}
.yda{bottom:1126.455242px;}
.y7{bottom:1136.848800px;}
.yd9{bottom:1147.362300px;}
.y6{bottom:1151.248800px;}
.y5{bottom:1165.648800px;}
.ydf{bottom:1186.168950px;}
.h2c{height:15.272455px;}
.h40{height:33.416016px;}
.h41{height:33.683344px;}
.h1e{height:33.884426px;}
.h3{height:34.201406px;}
.h34{height:34.545164px;}
.h1a{height:39.532008px;}
.h32{height:40.435557px;}
.h35{height:40.775793px;}
.h1d{height:41.155722px;}
.h38{height:41.179253px;}
.h21{height:43.331753px;}
.h42{height:44.554688px;}
.hb{height:46.318359px;}
.h2d{height:48.082576px;}
.h3b{height:48.462646px;}
.h3d{height:48.852098px;}
.h2f{height:49.772075px;}
.h2{height:49.992188px;}
.h17{height:50.315639px;}
.h36{height:50.329714px;}
.h9{height:50.354428px;}
.h43{height:50.729410px;}
.h27{height:50.780059px;}
.h2b{height:51.134557px;}
.h1c{height:52.218387px;}
.h3e{height:52.922616px;}
.h49{height:53.953594px;}
.h16{height:54.548304px;}
.h33{height:54.905489px;}
.h18{height:54.960938px;}
.h45{height:58.845703px;}
.h3f{height:59.010122px;}
.h3c{height:59.646005px;}
.h26{height:59.746042px;}
.h15{height:60.457031px;}
.h48{height:60.664570px;}
.h44{height:61.262695px;}
.h14{height:61.556250px;}
.h47{height:63.156270px;}
.h25{height:64.095810px;}
.h1f{height:64.503985px;}
.h20{height:64.507225px;}
.he{height:64.845703px;}
.h22{height:65.177501px;}
.hc{height:65.683725px;}
.hd{height:65.953125px;}
.h23{height:67.187011px;}
.h1b{height:69.624516px;}
.h12{height:71.770650px;}
.h4{height:71.982422px;}
.h24{height:72.075422px;}
.h11{height:76.945312px;}
.h5{height:82.987031px;}
.h10{height:87.937500px;}
.h2e{height:93.382309px;}
.h37{height:95.681314px;}
.h30{height:96.663526px;}
.h28{height:98.621154px;}
.h2a{height:99.309633px;}
.h19{height:101.741850px;}
.h29{height:102.711458px;}
.h13{height:102.749850px;}
.h39{height:106.931250px;}
.h3a{height:111.164062px;}
.h31{height:115.795898px;}
.h46{height:133.664062px;}
.hf{height:138.955078px;}
.h8{height:143.869595px;}
.ha{height:206.065430px;}
.h7{height:312.584549px;}
.h0{height:1262.834700px;}
.h6{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.913250px;}
.w2{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1785.750000px;}
.w3{width:1785.825000px;}
.x0{left:0.000000px;}
.x112{left:48.738300px;}
.x3{left:85.665864px;}
.x7{left:93.227100px;}
.x8{left:96.812152px;}
.x18{left:114.221850px;}
.x17{left:117.019050px;}
.x68{left:118.207050px;}
.x7a{left:125.625000px;}
.xf6{left:133.850100px;}
.x113{left:160.045950px;}
.x10b{left:177.199050px;}
.xf5{left:186.213900px;}
.xfe{left:198.278250px;}
.x10a{left:215.755050px;}
.x6e{left:221.043450px;}
.x109{left:223.519050px;}
.x6f{left:229.497410px;}
.x10c{left:249.715050px;}
.x106{left:260.611050px;}
.x9{left:282.711008px;}
.xff{left:301.130250px;}
.x5{left:311.321748px;}
.x70{left:322.144490px;}
.x71{left:327.951390px;}
.xf2{left:335.507850px;}
.x92{left:338.977963px;}
.x93{left:342.526726px;}
.x94{left:347.447374px;}
.x91{left:351.358950px;}
.xea{left:357.996150px;}
.x95{left:359.204777px;}
.xd6{left:360.848100px;}
.xa4{left:367.186944px;}
.x111{left:368.436116px;}
.x7e{left:370.034250px;}
.xc1{left:373.026259px;}
.xb3{left:376.611300px;}
.xb8{left:378.748500px;}
.xb9{left:381.333541px;}
.x10d{left:387.813000px;}
.x104{left:392.707050px;}
.x6{left:394.605300px;}
.x8e{left:406.696350px;}
.xba{left:407.875565px;}
.x4{left:415.178220px;}
.x103{left:436.188000px;}
.x98{left:439.384038px;}
.x110{left:442.563454px;}
.x99{left:444.304687px;}
.x2{left:447.090780px;}
.x96{left:448.227600px;}
.xf1{left:450.265200px;}
.x97{left:453.375007px;}
.x9a{left:456.062089px;}
.x108{left:473.971050px;}
.x107{left:494.551050px;}
.x8f{left:503.847600px;}
.x6a{left:505.459050px;}
.xa6{left:519.089265px;}
.x10f{left:520.435363px;}
.x1e{left:521.748000px;}
.x25{left:522.969324px;}
.x24{left:530.700553px;}
.xeb{left:539.097600px;}
.xd7{left:541.951951px;}
.xa5{left:543.465750px;}
.x23{left:546.163010px;}
.x22{left:558.398400px;}
.x1a{left:568.557150px;}
.x90{left:572.031750px;}
.x7f{left:574.642050px;}
.xa7{left:598.012387px;}
.x1{left:599.370780px;}
.x80{left:601.325700px;}
.x102{left:610.914450px;}
.x72{left:612.100377px;}
.x105{left:614.443050px;}
.x10e{left:619.389000px;}
.x100{left:622.416450px;}
.x1f{left:627.812250px;}
.x27{left:630.443100px;}
.x26{left:640.519800px;}
.xec{left:651.628350px;}
.xd9{left:654.691350px;}
.x101{left:669.369450px;}
.xf4{left:682.652400px;}
.xe3{left:683.730450px;}
.xd8{left:686.577725px;}
.x1d{left:700.864800px;}
.x73{left:705.394231px;}
.x74{left:711.241670px;}
.x9c{left:726.239356px;}
.x20{left:738.482250px;}
.x9b{left:740.253000px;}
.xc2{left:742.538874px;}
.xb4{left:745.390016px;}
.x1b{left:748.905150px;}
.xad{left:779.469423px;}
.xae{left:790.263104px;}
.xac{left:792.281250px;}
.xe2{left:795.950700px;}
.x81{left:798.755679px;}
.xa1{left:804.580450px;}
.xa0{left:809.172300px;}
.xa3{left:820.827661px;}
.xee{left:822.804097px;}
.xa2{left:824.637196px;}
.xf0{left:828.382343px;}
.xed{left:839.198700px;}
.xef{left:844.414134px;}
.x82{left:852.117150px;}
.xf3{left:901.377000px;}
.xa8{left:902.455050px;}
.x1c{left:904.120350px;}
.x83{left:905.308650px;}
.xdf{left:949.476600px;}
.xe1{left:955.735121px;}
.x69{left:958.228200px;}
.x9d{left:962.970750px;}
.x8a{left:964.338900px;}
.xe0{left:965.655783px;}
.xfd{left:971.778750px;}
.x6c{left:974.064000px;}
.x4e{left:976.679400px;}
.x60{left:985.215150px;}
.x3b{left:987.540600px;}
.x38{left:988.917450px;}
.x44{left:992.185500px;}
.x52{left:994.275150px;}
.x6d{left:998.244000px;}
.x48{left:1001.890800px;}
.xca{left:1003.666796px;}
.x39{left:1009.879350px;}
.x42{left:1016.392394px;}
.x3e{left:1018.277208px;}
.xaa{left:1020.216750px;}
.x3d{left:1021.514700px;}
.x88{left:1023.003000px;}
.x3a{left:1024.415100px;}
.x41{left:1028.419950px;}
.x43{left:1031.012700px;}
.xe4{left:1038.747000px;}
.x61{left:1043.161875px;}
.x13{left:1050.557850px;}
.x10{left:1059.633600px;}
.x12{left:1066.247850px;}
.x53{left:1067.349709px;}
.xb{left:1071.378000px;}
.xbb{left:1073.519550px;}
.xb6{left:1076.336400px;}
.xc{left:1077.978000px;}
.x14{left:1081.457850px;}
.x15{left:1082.702850px;}
.xfc{left:1086.678150px;}
.xcf{left:1089.429150px;}
.xd{left:1093.209300px;}
.xe{left:1094.454300px;}
.xd0{left:1099.236433px;}
.xd1{left:1101.753447px;}
.x64{left:1117.128600px;}
.xb1{left:1120.951445px;}
.x49{left:1123.787718px;}
.xb0{left:1125.429916px;}
.x7d{left:1128.574561px;}
.x89{left:1129.807650px;}
.x66{left:1133.085212px;}
.xaf{left:1150.135200px;}
.x78{left:1157.820286px;}
.x79{left:1163.511919px;}
.xdc{left:1165.992252px;}
.xc5{left:1167.381836px;}
.x65{left:1170.035850px;}
.xbc{left:1180.300800px;}
.xdd{left:1181.661229px;}
.x87{left:1183.182150px;}
.xc4{left:1185.250366px;}
.xc3{left:1200.726600px;}
.xdb{left:1204.994628px;}
.x62{left:1205.995689px;}
.xf{left:1209.414300px;}
.xa{left:1214.333550px;}
.x4f{left:1224.166200px;}
.xe6{left:1226.209375px;}
.xe5{left:1227.966750px;}
.x21{left:1230.560250px;}
.x54{left:1240.097534px;}
.x84{left:1241.937346px;}
.x67{left:1254.651900px;}
.x51{left:1261.116838px;}
.x50{left:1276.357178px;}
.xda{left:1281.130350px;}
.xc8{left:1284.568979px;}
.x4a{left:1286.603257px;}
.xc6{left:1287.641550px;}
.xc7{left:1289.943144px;}
.x4b{left:1294.041344px;}
.xbd{left:1297.696350px;}
.x63{left:1299.072301px;}
.x28{left:1300.274400px;}
.x40{left:1304.498699px;}
.xc9{left:1308.401245px;}
.x55{left:1313.998809px;}
.x29{left:1324.340400px;}
.x2a{left:1327.664100px;}
.x45{left:1337.946076px;}
.x3f{left:1341.612300px;}
.x6b{left:1347.356700px;}
.x19{left:1349.137950px;}
.x56{left:1350.949447px;}
.x7c{left:1352.736182px;}
.x86{left:1354.202700px;}
.x2b{left:1366.171800px;}
.x33{left:1382.475600px;}
.xe7{left:1384.133850px;}
.x57{left:1387.900084px;}
.xf8{left:1391.071378px;}
.xe8{left:1393.204170px;}
.xe9{left:1395.199640px;}
.xd3{left:1399.616943px;}
.xf7{left:1401.109809px;}
.xd4{left:1402.417404px;}
.xa9{left:1404.918450px;}
.x85{left:1407.858450px;}
.xd2{left:1420.365300px;}
.xd5{left:1424.231524px;}
.xbf{left:1429.487860px;}
.x58{left:1431.913757px;}
.x4d{left:1441.286242px;}
.x35{left:1442.638200px;}
.xbe{left:1447.072942px;}
.x75{left:1449.931650px;}
.xc0{left:1456.029883px;}
.x76{left:1457.936528px;}
.x2e{left:1459.470337px;}
.xb5{left:1461.077700px;}
.x4c{left:1463.417752px;}
.x2c{left:1466.239800px;}
.x59{left:1468.864395px;}
.xcb{left:1480.824833px;}
.x2d{left:1484.210941px;}
.x34{left:1488.498000px;}
.xcd{left:1491.403094px;}
.xcc{left:1497.310140px;}
.x47{left:1502.075455px;}
.x5a{left:1505.815032px;}
.xce{left:1508.262551px;}
.xb2{left:1516.388700px;}
.x9e{left:1518.237300px;}
.x8b{left:1519.516234px;}
.x3c{left:1525.456050px;}
.x5b{left:1542.765670px;}
.x77{left:1545.662111px;}
.x37{left:1551.855450px;}
.x11{left:1555.500750px;}
.xb7{left:1558.366650px;}
.x46{left:1559.998544px;}
.x32{left:1570.133235px;}
.x30{left:1572.641499px;}
.x2f{left:1575.833835px;}
.xf9{left:1580.169665px;}
.x5f{left:1581.653918px;}
.x31{left:1589.272999px;}
.xde{left:1592.964900px;}
.x36{left:1594.523400px;}
.x8c{left:1596.885807px;}
.xfa{left:1599.152400px;}
.xfb{left:1601.109166px;}
.x5d{left:1605.948450px;}
.x5c{left:1608.547050px;}
.x5e{left:1633.068349px;}
.xab{left:1671.735300px;}
.x9f{left:1673.269050px;}
.x8d{left:1674.315850px;}
.x7b{left:1714.250250px;}
.x16{left:1719.317100px;}
@media print{
.v12{vertical-align:-37.717333pt;}
.v2{vertical-align:-28.417067pt;}
.v3{vertical-align:-24.864533pt;}
.v8{vertical-align:-21.416533pt;}
.v13{vertical-align:-16.177920pt;}
.v5{vertical-align:-5.137067pt;}
.vb{vertical-align:-2.747734pt;}
.v11{vertical-align:-1.713600pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.747734pt;}
.va{vertical-align:7.092989pt;}
.v4{vertical-align:9.079467pt;}
.v1{vertical-align:17.760533pt;}
.v10{vertical-align:24.962387pt;}
.vd{vertical-align:26.362803pt;}
.v7{vertical-align:35.720533pt;}
.v6{vertical-align:36.616533pt;}
.vf{vertical-align:40.266429pt;}
.vc{vertical-align:42.525418pt;}
.ve{vertical-align:45.846134pt;}
.lsb{letter-spacing:-3.344002pt;}
.lsc{letter-spacing:-2.102427pt;}
.ls13{letter-spacing:-0.739056pt;}
.ls12{letter-spacing:-0.604688pt;}
.ls11{letter-spacing:-0.537499pt;}
.lse{letter-spacing:-0.496203pt;}
.lsd{letter-spacing:-0.492763pt;}
.ls10{letter-spacing:-0.482981pt;}
.lsf{letter-spacing:-0.466587pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.008427pt;}
.ls9{letter-spacing:0.011445pt;}
.lsa{letter-spacing:0.012198pt;}
.ls8{letter-spacing:0.017532pt;}
.ls0{letter-spacing:0.138112pt;}
.ls1{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.329344pt;}
.ls2{letter-spacing:176.000000pt;}
.ls6{letter-spacing:208.213333pt;}
.ws4{word-spacing:-49.136000pt;}
.ws0{word-spacing:-26.889344pt;}
.ws1{word-spacing:-26.772480pt;}
.ws31{word-spacing:-16.012626pt;}
.wsc{word-spacing:-15.936000pt;}
.ws37{word-spacing:-15.911299pt;}
.ws3{word-spacing:-15.307862pt;}
.wsa{word-spacing:-14.873600pt;}
.ws80{word-spacing:-14.806669pt;}
.ws7a{word-spacing:-14.673714pt;}
.ws8c{word-spacing:-14.608000pt;}
.ws7b{word-spacing:-14.136215pt;}
.ws8b{word-spacing:-13.904000pt;}
.ws7e{word-spacing:-13.450819pt;}
.ws82{word-spacing:-13.137638pt;}
.ws7d{word-spacing:-12.711763pt;}
.ws30{word-spacing:-12.617328pt;}
.ws9{word-spacing:-12.387584pt;}
.ws86{word-spacing:-12.096354pt;}
.ws7f{word-spacing:-12.030485pt;}
.ws79{word-spacing:-10.037821pt;}
.ws7c{word-spacing:-9.433133pt;}
.ws50{word-spacing:-9.290688pt;}
.ws32{word-spacing:-8.367658pt;}
.ws84{word-spacing:-7.968000pt;}
.ws87{word-spacing:-7.052211pt;}
.ws56{word-spacing:-3.791271pt;}
.ws69{word-spacing:-3.200000pt;}
.ws77{word-spacing:-3.136000pt;}
.ws74{word-spacing:-2.624000pt;}
.ws64{word-spacing:-2.432000pt;}
.ws88{word-spacing:-2.304000pt;}
.ws1d{word-spacing:-2.240000pt;}
.ws2e{word-spacing:-2.229333pt;}
.ws46{word-spacing:-2.165333pt;}
.wsba{word-spacing:-1.936000pt;}
.ws2d{word-spacing:-1.877333pt;}
.wsb1{word-spacing:-1.408000pt;}
.ws2f{word-spacing:-0.352000pt;}
.ws4d{word-spacing:-0.298667pt;}
.ws5c{word-spacing:-0.256000pt;}
.ws22{word-spacing:-0.224000pt;}
.ws2{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.320000pt;}
.ws43{word-spacing:0.522667pt;}
.ws18{word-spacing:0.746667pt;}
.ws6c{word-spacing:0.960000pt;}
.wsa7{word-spacing:1.028160pt;}
.ws9c{word-spacing:1.088000pt;}
.ws20{word-spacing:1.194667pt;}
.ws48{word-spacing:1.418667pt;}
.ws9e{word-spacing:1.493333pt;}
.ws40{word-spacing:1.717333pt;}
.ws21{word-spacing:1.792000pt;}
.wsa5{word-spacing:1.935360pt;}
.ws4f{word-spacing:2.102427pt;}
.ws76{word-spacing:2.176000pt;}
.wsac{word-spacing:3.050667pt;}
.ws2c{word-spacing:3.061333pt;}
.ws42{word-spacing:3.136000pt;}
.wsad{word-spacing:3.168000pt;}
.ws4e{word-spacing:3.344002pt;}
.wsa8{word-spacing:3.637333pt;}
.ws45{word-spacing:3.882667pt;}
.ws2a{word-spacing:3.957333pt;}
.ws94{word-spacing:3.968000pt;}
.ws99{word-spacing:4.608000pt;}
.ws17{word-spacing:5.301333pt;}
.ws89{word-spacing:5.440000pt;}
.wsb6{word-spacing:5.690667pt;}
.wsb3{word-spacing:5.808000pt;}
.ws4a{word-spacing:5.824000pt;}
.ws3d{word-spacing:7.168000pt;}
.wsb7{word-spacing:7.861333pt;}
.wsa2{word-spacing:8.154667pt;}
.wsa1{word-spacing:8.565333pt;}
.ws75{word-spacing:9.152000pt;}
.ws98{word-spacing:9.216000pt;}
.wsb0{word-spacing:9.738667pt;}
.ws66{word-spacing:9.792000pt;}
.wsae{word-spacing:9.856000pt;}
.wsaf{word-spacing:10.208000pt;}
.ws14{word-spacing:11.349333pt;}
.ws4c{word-spacing:11.498667pt;}
.ws71{word-spacing:11.520000pt;}
.ws4b{word-spacing:12.469333pt;}
.ws5b{word-spacing:12.800000pt;}
.ws15{word-spacing:13.290667pt;}
.ws3c{word-spacing:13.365333pt;}
.ws1b{word-spacing:13.738667pt;}
.ws13{word-spacing:15.082667pt;}
.ws5d{word-spacing:15.168000pt;}
.ws83{word-spacing:15.744000pt;}
.ws9d{word-spacing:15.840000pt;}
.wsab{word-spacing:16.133333pt;}
.ws29{word-spacing:16.277333pt;}
.ws57{word-spacing:16.610485pt;}
.ws63{word-spacing:16.896000pt;}
.ws59{word-spacing:17.194135pt;}
.wsb8{word-spacing:17.541333pt;}
.ws51{word-spacing:17.542351pt;}
.ws54{word-spacing:17.664815pt;}
.ws47{word-spacing:17.696000pt;}
.ws39{word-spacing:18.442667pt;}
.ws41{word-spacing:18.592000pt;}
.wse{word-spacing:18.602667pt;}
.ws10{word-spacing:18.944000pt;}
.ws9f{word-spacing:19.146667pt;}
.ws3a{word-spacing:19.338667pt;}
.ws8d{word-spacing:19.904000pt;}
.ws95{word-spacing:20.544000pt;}
.ws67{word-spacing:20.672000pt;}
.ws19{word-spacing:20.906667pt;}
.ws9a{word-spacing:20.992000pt;}
.ws8f{word-spacing:21.632000pt;}
.ws6f{word-spacing:22.272000pt;}
.ws61{word-spacing:22.400000pt;}
.wsa4{word-spacing:22.762667pt;}
.ws65{word-spacing:23.936000pt;}
.ws60{word-spacing:24.576000pt;}
.ws1f{word-spacing:24.864000pt;}
.ws24{word-spacing:25.386667pt;}
.ws49{word-spacing:25.909333pt;}
.ws3e{word-spacing:25.984000pt;}
.ws70{word-spacing:26.048000pt;}
.wsa3{word-spacing:26.224000pt;}
.ws78{word-spacing:27.008000pt;}
.wsa9{word-spacing:28.864000pt;}
.wsb4{word-spacing:28.981333pt;}
.ws96{word-spacing:32.000000pt;}
.ws97{word-spacing:32.704000pt;}
.ws23{word-spacing:36.960000pt;}
.ws33{word-spacing:37.477819pt;}
.ws38{word-spacing:37.989026pt;}
.ws3b{word-spacing:38.005333pt;}
.ws9b{word-spacing:38.016000pt;}
.ws35{word-spacing:38.212678pt;}
.ws36{word-spacing:38.532182pt;}
.ws6d{word-spacing:38.848000pt;}
.ws25{word-spacing:39.125333pt;}
.ws90{word-spacing:39.232000pt;}
.wsa6{word-spacing:39.916800pt;}
.ws5e{word-spacing:41.216000pt;}
.ws68{word-spacing:42.368000pt;}
.ws5f{word-spacing:43.008000pt;}
.ws16{word-spacing:43.232000pt;}
.ws44{word-spacing:43.530667pt;}
.ws1e{word-spacing:43.605333pt;}
.ws2b{word-spacing:44.053333pt;}
.ws58{word-spacing:44.097106pt;}
.ws28{word-spacing:44.277333pt;}
.ws5a{word-spacing:45.646566pt;}
.ws12{word-spacing:45.994667pt;}
.ws52{word-spacing:46.571000pt;}
.ws55{word-spacing:46.896114pt;}
.ws6b{word-spacing:49.152000pt;}
.wsd{word-spacing:52.821333pt;}
.wsb5{word-spacing:55.088000pt;}
.ws11{word-spacing:56.917333pt;}
.ws34{word-spacing:58.085827pt;}
.ws73{word-spacing:61.056000pt;}
.ws1c{word-spacing:66.976000pt;}
.ws6a{word-spacing:68.992000pt;}
.ws1a{word-spacing:69.290667pt;}
.ws6e{word-spacing:70.080000pt;}
.ws62{word-spacing:72.832000pt;}
.ws93{word-spacing:74.048000pt;}
.wsaa{word-spacing:74.389333pt;}
.wsb2{word-spacing:74.917333pt;}
.ws3f{word-spacing:77.802667pt;}
.ws92{word-spacing:79.744000pt;}
.wsb9{word-spacing:83.776000pt;}
.ws26{word-spacing:101.173333pt;}
.ws27{word-spacing:110.208000pt;}
.ws8e{word-spacing:121.984000pt;}
.ws72{word-spacing:125.376000pt;}
.ws7{word-spacing:153.226667pt;}
.ws5{word-spacing:168.640000pt;}
.ws6{word-spacing:168.693333pt;}
.wsb{word-spacing:170.157216pt;}
.ws8{word-spacing:179.466667pt;}
.wsf{word-spacing:196.864000pt;}
.ws91{word-spacing:205.824000pt;}
.ws85{word-spacing:386.560000pt;}
.ws81{word-spacing:544.700540pt;}
.ws53{word-spacing:903.858037pt;}
.ws8a{word-spacing:2799.850667pt;}
._1e{margin-left:-5993.920000pt;}
._16{margin-left:-5957.824000pt;}
._18{margin-left:-2189.824000pt;}
._25{margin-left:-550.880000pt;}
._3{margin-left:-176.000000pt;}
._1d{margin-left:-68.966400pt;}
._d{margin-left:-25.528533pt;}
._17{margin-left:-13.372800pt;}
._b{margin-left:-7.358752pt;}
._8{margin-left:-5.820472pt;}
._22{margin-left:-4.182325pt;}
._c{margin-left:-3.284416pt;}
._a{margin-left:-1.662992pt;}
._9{width:1.646362pt;}
._19{width:3.324710pt;}
._2{width:9.152128pt;}
._5{width:14.336000pt;}
._24{width:25.120000pt;}
._0{width:33.728000pt;}
._1a{width:57.254196pt;}
._1c{width:79.364794pt;}
._6{width:103.104000pt;}
._4{width:104.832000pt;}
._15{width:105.728000pt;}
._7{width:112.000000pt;}
._14{width:123.409067pt;}
._1f{width:137.975245pt;}
._13{width:144.136533pt;}
._12{width:163.012267pt;}
._1{width:176.000000pt;}
._11{width:183.633082pt;}
._f{width:275.549867pt;}
._10{width:338.090667pt;}
._1b{width:536.798670pt;}
._23{width:577.845333pt;}
._21{width:635.667799pt;}
._20{width:876.480896pt;}
._e{width:1498.769067pt;}
.fs20{font-size:15.225989pt;}
.fs33{font-size:28.322133pt;}
.fs9{font-size:31.093333pt;}
.fs2f{font-size:32.000000pt;}
.fs30{font-size:32.256000pt;}
.fs16{font-size:33.781333pt;}
.fs1d{font-size:37.312000pt;}
.fs18{font-size:37.491200pt;}
.fs13{font-size:39.411733pt;}
.fs24{font-size:40.312533pt;}
.fs26{font-size:40.651733pt;}
.fs19{font-size:42.048533pt;}
.fs1{font-size:42.240000pt;}
.fs31{font-size:42.666667pt;}
.fse{font-size:43.530667pt;}
.fs21{font-size:46.658667pt;}
.fs22{font-size:48.298133pt;}
.fs2a{font-size:48.315200pt;}
.fs32{font-size:48.579733pt;}
.fs2c{font-size:48.703467pt;}
.fs12{font-size:48.825600pt;}
.fs27{font-size:49.270400pt;}
.fs1e{font-size:49.276267pt;}
.fs1f{font-size:49.620267pt;}
.fsd{font-size:49.749333pt;}
.fs15{font-size:50.672000pt;}
.fs11{font-size:52.236800pt;}
.fs2d{font-size:52.761600pt;}
.fs8{font-size:53.333333pt;}
.fs25{font-size:53.749867pt;}
.fs6{font-size:58.204800pt;}
.fs10{font-size:58.666667pt;}
.fs2b{font-size:59.464533pt;}
.fs1c{font-size:59.564267pt;}
.fsf{font-size:59.733333pt;}
.fs34{font-size:60.480000pt;}
.fs1b{font-size:63.900800pt;}
.fs0{font-size:64.000000pt;}
.fs17{font-size:64.307733pt;}
.fs1a{font-size:64.979200pt;}
.fs14{font-size:67.562667pt;}
.fs2e{font-size:73.054933pt;}
.fsa{font-size:74.666667pt;}
.fsc{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs28{font-size:102.400000pt;}
.fs3{font-size:106.240000pt;}
.fs29{font-size:128.000000pt;}
.fs23{font-size:133.333333pt;}
.fsb{font-size:160.000000pt;}
.fs5{font-size:166.299200pt;}
.fs7{font-size:197.333333pt;}
.fs4{font-size:299.338667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:31.652267pt;}
.y3{bottom:49.892267pt;}
.y10c{bottom:61.927333pt;}
.y2{bottom:68.452267pt;}
.y98{bottom:70.901067pt;}
.y1d6{bottom:74.836533pt;}
.y20e{bottom:81.953600pt;}
.y1{bottom:83.172267pt;}
.y6a{bottom:83.676000pt;}
.y65{bottom:83.707067pt;}
.y1d5{bottom:87.636533pt;}
.y1d7{bottom:88.233867pt;}
.y115{bottom:89.063867pt;}
.y1c4{bottom:89.629733pt;}
.y9c{bottom:89.636667pt;}
.y99{bottom:90.782533pt;}
.y95{bottom:94.569467pt;}
.yb1{bottom:96.147200pt;}
.y20d{bottom:99.553600pt;}
.y1d4{bottom:100.436533pt;}
.y69{bottom:101.276000pt;}
.y9b{bottom:102.304667pt;}
.y1f8{bottom:103.186133pt;}
.y64{bottom:106.107067pt;}
.y9a{bottom:114.972667pt;}
.y94{bottom:116.969467pt;}
.y20c{bottom:117.153600pt;}
.y1f7{bottom:119.186133pt;}
.y6d{bottom:119.858667pt;}
.y1de{bottom:121.863333pt;}
.y1dc{bottom:121.863547pt;}
.y1c3{bottom:122.181733pt;}
.y9d{bottom:127.640667pt;}
.y63{bottom:128.507067pt;}
.y9f{bottom:130.240933pt;}
.y20b{bottom:134.753600pt;}
.y1dd{bottom:136.437253pt;}
.y1db{bottom:136.437467pt;}
.y6c{bottom:137.458667pt;}
.y93{bottom:139.369467pt;}
.y114{bottom:144.821490pt;}
.y9e{bottom:145.860667pt;}
.y110{bottom:149.307495pt;}
.y62{bottom:150.907067pt;}
.y1f6{bottom:151.186133pt;}
.yb0{bottom:151.635467pt;}
.y20a{bottom:152.353600pt;}
.y6b{bottom:155.058667pt;}
.ya1{bottom:155.384133pt;}
.y111{bottom:157.065067pt;}
.y196{bottom:158.919253pt;}
.y195{bottom:159.010320pt;}
.y19a{bottom:159.098987pt;}
.y10d{bottom:161.135467pt;}
.y92{bottom:161.769467pt;}
.y1f5{bottom:167.186133pt;}
.y113{bottom:168.523799pt;}
.y209{bottom:169.953600pt;}
.ya0{bottom:171.001333pt;}
.y191{bottom:171.013013pt;}
.y194{bottom:171.104080pt;}
.y199{bottom:171.192747pt;}
.y10f{bottom:172.205235pt;}
.y61{bottom:173.307067pt;}
.ya3{bottom:179.799467pt;}
.y190{bottom:183.106773pt;}
.y112{bottom:183.158133pt;}
.y1f4{bottom:183.186133pt;}
.y193{bottom:183.197840pt;}
.y198{bottom:183.286507pt;}
.y91{bottom:184.169467pt;}
.y10e{bottom:186.342811pt;}
.y208{bottom:187.553600pt;}
.y20f{bottom:191.920533pt;}
.y18f{bottom:195.200533pt;}
.y192{bottom:195.291600pt;}
.y197{bottom:195.380267pt;}
.ya2{bottom:195.416667pt;}
.y60{bottom:195.707067pt;}
.y7a{bottom:196.094667pt;}
.y10b{bottom:202.315796pt;}
.y108{bottom:203.433000pt;}
.y207{bottom:205.153600pt;}
.y1c2{bottom:205.317733pt;}
.y90{bottom:206.569467pt;}
.y79{bottom:207.697867pt;}
.yaf{bottom:211.238880pt;}
.y1f3{bottom:215.186133pt;}
.y105{bottom:215.924533pt;}
.y96{bottom:217.336000pt;}
.y1d8{bottom:218.696667pt;}
.y172{bottom:221.105216pt;}
.y176{bottom:221.615867pt;}
.y175{bottom:221.729200pt;}
.y17d{bottom:222.092709pt;}
.y17c{bottom:222.146459pt;}
.y173{bottom:222.220526pt;}
.y17e{bottom:222.227084pt;}
.y174{bottom:222.253867pt;}
.y170{bottom:223.040400pt;}
.y178{bottom:223.550800pt;}
.y17a{bottom:223.759067pt;}
.y18e{bottom:223.920533pt;}
.y16f{bottom:224.014267pt;}
.y177{bottom:224.048048pt;}
.y179{bottom:224.188800pt;}
.y171{bottom:224.303333pt;}
.y16e{bottom:224.720000pt;}
.y17b{bottom:224.975200pt;}
.y10a{bottom:226.666942pt;}
.y107{bottom:227.615328pt;}
.y8f{bottom:228.969467pt;}
.yae{bottom:230.531200pt;}
.y1f2{bottom:231.186133pt;}
.y5f{bottom:240.507067pt;}
.y217{bottom:241.007067pt;}
.y109{bottom:241.701882pt;}
.y106{bottom:242.546036pt;}
.y1f1{bottom:247.186133pt;}
.y35{bottom:247.273600pt;}
.y8e{bottom:251.369467pt;}
.y71{bottom:252.696667pt;}
.y24{bottom:254.923919pt;}
.y216{bottom:258.607067pt;}
.yeb{bottom:260.217867pt;}
.y5e{bottom:262.907067pt;}
.y1cd{bottom:271.657867pt;}
.y8d{bottom:273.769467pt;}
.y19e{bottom:274.119733pt;}
.y215{bottom:276.207067pt;}
.y72{bottom:276.731068pt;}
.yea{bottom:279.417867pt;}
.yad{bottom:280.643227pt;}
.y1f0{bottom:282.203333pt;}
.y1cc{bottom:284.457867pt;}
.y5d{bottom:285.307067pt;}
.y1b4{bottom:289.419920pt;}
.yaa{bottom:291.409547pt;}
.yb6{bottom:291.878213pt;}
.y1d3{bottom:292.489867pt;}
.y214{bottom:293.807067pt;}
.y8c{bottom:296.169467pt;}
.y34{bottom:298.366933pt;}
.y2c{bottom:298.606621pt;}
.ye9{bottom:298.617867pt;}
.yac{bottom:299.935547pt;}
.y1ef{bottom:301.403333pt;}
.y1b8{bottom:301.428907pt;}
.y1b3{bottom:303.914480pt;}
.y1d2{bottom:305.289867pt;}
.y5c{bottom:307.707067pt;}
.ya9{bottom:310.701867pt;}
.yb5{bottom:311.170533pt;}
.y213{bottom:311.407067pt;}
.y2b{bottom:316.068061pt;}
.ye8{bottom:317.817867pt;}
.y1b2{bottom:318.409040pt;}
.y8b{bottom:318.569467pt;}
.yab{bottom:319.227867pt;}
.y1b7{bottom:319.268267pt;}
.y1ee{bottom:320.603333pt;}
.y73{bottom:323.408342pt;}
.yf8{bottom:328.484400pt;}
.y212{bottom:329.007067pt;}
.y5b{bottom:330.107067pt;}
.y1b1{bottom:332.903600pt;}
.y2a{bottom:333.529501pt;}
.ye7{bottom:337.017867pt;}
.y1ed{bottom:339.803333pt;}
.y1bd{bottom:341.283867pt;}
.y188{bottom:343.883253pt;}
.y183{bottom:344.354160pt;}
.y18d{bottom:344.497360pt;}
.y211{bottom:346.607067pt;}
.y3a{bottom:347.499867pt;}
.y33{bottom:347.500267pt;}
.yf7{bottom:347.684400pt;}
.y1da{bottom:349.032667pt;}
.y218{bottom:351.915333pt;}
.y5a{bottom:352.507067pt;}
.y187{bottom:356.078773pt;}
.ye6{bottom:356.217867pt;}
.y182{bottom:356.447920pt;}
.y18c{bottom:356.591120pt;}
.y1ec{bottom:359.003333pt;}
.y1d9{bottom:361.832667pt;}
.y8a{bottom:363.369467pt;}
.y210{bottom:364.207067pt;}
.yb2{bottom:366.285200pt;}
.yf6{bottom:366.884400pt;}
.y186{bottom:368.274293pt;}
.y29{bottom:368.452381pt;}
.y181{bottom:368.541680pt;}
.y18b{bottom:368.684880pt;}
.yb4{bottom:368.857509pt;}
.y59{bottom:374.907067pt;}
.ye5{bottom:375.417867pt;}
.ya8{bottom:375.794267pt;}
.y74{bottom:377.201947pt;}
.y1eb{bottom:378.203333pt;}
.y185{bottom:380.469813pt;}
.y180{bottom:380.635440pt;}
.y18a{bottom:380.778640pt;}
.y89{bottom:385.769467pt;}
.yf5{bottom:386.084400pt;}
.yf3{bottom:386.084533pt;}
.yb3{bottom:388.149829pt;}
.y184{bottom:392.665333pt;}
.y17f{bottom:392.729200pt;}
.y189{bottom:392.872400pt;}
.ye4{bottom:394.617867pt;}
.y39{bottom:396.633200pt;}
.y32{bottom:396.633600pt;}
.y58{bottom:397.307067pt;}
.y1ea{bottom:397.403333pt;}
.y21f{bottom:399.233333pt;}
.y28{bottom:404.772177pt;}
.yf4{bottom:405.284400pt;}
.yf2{bottom:405.284533pt;}
.y88{bottom:408.169467pt;}
.y1e9{bottom:416.603333pt;}
.y21e{bottom:416.833333pt;}
.y1d1{bottom:418.292533pt;}
.y57{bottom:419.707067pt;}
.ya7{bottom:421.092400pt;}
.y27{bottom:422.233617pt;}
.yf1{bottom:424.484533pt;}
.y75{bottom:429.982420pt;}
.y1ce{bottom:430.068533pt;}
.y87{bottom:430.569467pt;}
.y1d0{bottom:431.092533pt;}
.y159{bottom:433.930042pt;}
.y16d{bottom:434.317226pt;}
.y161{bottom:434.319759pt;}
.y165{bottom:434.320320pt;}
.y21d{bottom:434.433333pt;}
.y169{bottom:434.458320pt;}
.y15d{bottom:434.460853pt;}
.ye3{bottom:435.679733pt;}
.y1e8{bottom:435.803333pt;}
.yf0{bottom:443.684533pt;}
.y1cf{bottom:443.892533pt;}
.y1be{bottom:445.319067pt;}
.y38{bottom:445.766533pt;}
.y31{bottom:445.766933pt;}
.y158{bottom:446.023802pt;}
.y16c{bottom:446.410986pt;}
.y160{bottom:446.413519pt;}
.y164{bottom:446.414080pt;}
.y168{bottom:446.552080pt;}
.y15c{bottom:446.554613pt;}
.ybb{bottom:447.628723pt;}
.y70{bottom:450.559200pt;}
.y21c{bottom:452.033333pt;}
.y86{bottom:452.969467pt;}
.y26{bottom:457.156497pt;}
.yc1{bottom:457.205277pt;}
.y157{bottom:458.117562pt;}
.y16b{bottom:458.504746pt;}
.y15f{bottom:458.507279pt;}
.y163{bottom:458.507840pt;}
.y167{bottom:458.645840pt;}
.y15b{bottom:458.648373pt;}
.y56{bottom:462.797067pt;}
.yef{bottom:462.884533pt;}
.y21b{bottom:469.633333pt;}
.y156{bottom:470.211322pt;}
.y16a{bottom:470.598506pt;}
.y15e{bottom:470.601039pt;}
.y162{bottom:470.601600pt;}
.y166{bottom:470.739600pt;}
.y15a{bottom:470.742133pt;}
.y1e7{bottom:474.203333pt;}
.y25{bottom:474.617937pt;}
.ya6{bottom:477.134133pt;}
.yee{bottom:482.084533pt;}
.y76{bottom:482.762894pt;}
.y1bb{bottom:484.665813pt;}
.yba{bottom:485.304209pt;}
.yc0{bottom:485.314721pt;}
.y21a{bottom:487.233333pt;}
.y1d{bottom:488.932267pt;}
.y1b6{bottom:491.913040pt;}
.y1e6{bottom:493.403333pt;}
.y220{bottom:493.584667pt;}
.y37{bottom:494.899867pt;}
.y30{bottom:494.900000pt;}
.y1c1{bottom:496.392667pt;}
.y85{bottom:497.769467pt;}
.y141{bottom:498.325205pt;}
.y14a{bottom:498.782544pt;}
.y148{bottom:498.842867pt;}
.y14b{bottom:498.916919pt;}
.y1ba{bottom:499.160373pt;}
.y140{bottom:499.749577pt;}
.y149{bottom:499.830667pt;}
.y143{bottom:500.253867pt;}
.y147{bottom:500.468800pt;}
.y13f{bottom:500.475200pt;}
.y146{bottom:500.623733pt;}
.y145{bottom:500.717467pt;}
.y142{bottom:500.757387pt;}
.y144{bottom:500.891867pt;}
.y13d{bottom:500.938800pt;}
.y13e{bottom:501.180674pt;}
.yed{bottom:501.284533pt;}
.y219{bottom:504.833333pt;}
.y1b5{bottom:506.407600pt;}
.y1c{bottom:507.492267pt;}
.y101{bottom:510.280000pt;}
.y102{bottom:510.333333pt;}
.y46{bottom:511.057600pt;}
.y1e5{bottom:512.603333pt;}
.y1b9{bottom:513.654933pt;}
.y23{bottom:517.020133pt;}
.y55{bottom:517.173067pt;}
.y84{bottom:520.169467pt;}
.y1bc{bottom:521.113333pt;}
.y1cb{bottom:522.825867pt;}
.yb9{bottom:522.979695pt;}
.ybf{bottom:522.990207pt;}
.y1b{bottom:525.732267pt;}
.y1c5{bottom:528.871067pt;}
.ya5{bottom:530.332000pt;}
.y1e4{bottom:531.803333pt;}
.y77{bottom:535.543367pt;}
.y1ca{bottom:535.625867pt;}
.y45{bottom:536.657600pt;}
.y54{bottom:539.573067pt;}
.y36{bottom:539.593067pt;}
.y205{bottom:541.912267pt;}
.yec{bottom:542.346400pt;}
.y83{bottom:542.569467pt;}
.y2f{bottom:544.033333pt;}
.y1a{bottom:544.292267pt;}
.y1c9{bottom:548.425867pt;}
.y1e3{bottom:551.003333pt;}
.ybd{bottom:551.005042pt;}
.y19f{bottom:552.673333pt;}
.ye2{bottom:556.578800pt;}
.y1b0{bottom:556.580667pt;}
.y3b{bottom:556.584000pt;}
.y7b{bottom:556.584667pt;}
.y204{bottom:560.056267pt;}
.yb8{bottom:560.655181pt;}
.y53{bottom:561.973067pt;}
.y44{bottom:562.257600pt;}
.y19{bottom:564.452267pt;}
.y82{bottom:564.969467pt;}
.y6f{bottom:570.110400pt;}
.y1e2{bottom:570.203333pt;}
.y1c8{bottom:570.655200pt;}
.y78{bottom:572.904933pt;}
.y203{bottom:578.200267pt;}
.ybe{bottom:579.030390pt;}
.y1c0{bottom:579.528667pt;}
.y22{bottom:580.699680pt;}
.y1c7{bottom:583.455200pt;}
.y52{bottom:584.373067pt;}
.y117{bottom:584.816400pt;}
.y18{bottom:584.932267pt;}
.ya4{bottom:586.382800pt;}
.y81{bottom:587.369467pt;}
.y43{bottom:587.857600pt;}
.y1e1{bottom:589.403333pt;}
.y1bf{bottom:590.463600pt;}
.y6e{bottom:592.510400pt;}
.y2e{bottom:593.166667pt;}
.y1c6{bottom:596.255200pt;}
.y202{bottom:596.344267pt;}
.yb7{bottom:598.330667pt;}
.ybc{bottom:598.341179pt;}
.y206{bottom:603.253867pt;}
.y17{bottom:605.092267pt;}
.y51{bottom:606.773067pt;}
.y42{bottom:613.457600pt;}
.y201{bottom:614.488267pt;}
.y100{bottom:614.612267pt;}
.y155{bottom:619.229093pt;}
.y150{bottom:619.307227pt;}
.y97{bottom:621.058667pt;}
.y16{bottom:625.892267pt;}
.y1e0{bottom:627.803333pt;}
.y50{bottom:629.173067pt;}
.y21{bottom:630.589440pt;}
.y154{bottom:631.322853pt;}
.y14f{bottom:631.400987pt;}
.y80{bottom:632.169467pt;}
.yff{bottom:633.812267pt;}
.y41{bottom:639.057600pt;}
.y153{bottom:643.416613pt;}
.y14e{bottom:643.494747pt;}
.y15{bottom:645.732267pt;}
.y1df{bottom:647.003333pt;}
.y1ff{bottom:649.795333pt;}
.y4f{bottom:651.573067pt;}
.yfe{bottom:653.012267pt;}
.y7f{bottom:654.569467pt;}
.y152{bottom:655.510373pt;}
.y14d{bottom:655.588507pt;}
.y14{bottom:664.612267pt;}
.y40{bottom:664.657600pt;}
.y1a3{bottom:666.203333pt;}
.y1fe{bottom:667.395333pt;}
.y151{bottom:667.604133pt;}
.y14c{bottom:667.682267pt;}
.yfd{bottom:672.212267pt;}
.y4e{bottom:673.973067pt;}
.y7e{bottom:676.969467pt;}
.y20{bottom:680.479200pt;}
.y13{bottom:682.852267pt;}
.y1fd{bottom:684.995333pt;}
.y1a2{bottom:685.403333pt;}
.yd3{bottom:686.319963pt;}
.yc6{bottom:687.816571pt;}
.yc7{bottom:687.822933pt;}
.y1a9{bottom:690.107333pt;}
.yc9{bottom:693.940133pt;}
.y4d{bottom:696.373067pt;}
.y7d{bottom:699.369467pt;}
.y12{bottom:701.092267pt;}
.yca{bottom:701.224825pt;}
.yd2{bottom:701.720056pt;}
.y1fc{bottom:702.595333pt;}
.y1a1{bottom:704.603333pt;}
.y200{bottom:708.945333pt;}
.y1a8{bottom:709.307333pt;}
.y11b{bottom:709.791653pt;}
.yde{bottom:710.668710pt;}
.y13c{bottom:710.719489pt;}
.yd4{bottom:711.960159pt;}
.y103{bottom:716.573333pt;}
.yd1{bottom:717.200025pt;}
.yc5{bottom:717.386667pt;}
.y4c{bottom:718.773067pt;}
.y1fb{bottom:720.195333pt;}
.y7c{bottom:721.769467pt;}
.y11a{bottom:721.885413pt;}
.y11{bottom:721.892267pt;}
.y13b{bottom:722.813249pt;}
.y1a0{bottom:723.803333pt;}
.y1a7{bottom:728.507333pt;}
.ycb{bottom:731.641605pt;}
.yfc{bottom:732.789733pt;}
.ydd{bottom:733.800800pt;}
.y119{bottom:733.979173pt;}
.y3f{bottom:734.632800pt;}
.y13a{bottom:734.907009pt;}
.yd5{bottom:735.712267pt;}
.y4b{bottom:741.173067pt;}
.y10{bottom:741.732267pt;}
.y118{bottom:746.072933pt;}
.y139{bottom:747.000769pt;}
.y1a6{bottom:747.707333pt;}
.yd6{bottom:748.412551pt;}
.y1f{bottom:752.302971pt;}
.ycd{bottom:755.236976pt;}
.ycf{bottom:756.147562pt;}
.y67{bottom:756.728933pt;}
.yf{bottom:760.612267pt;}
.y4a{bottom:763.573067pt;}
.y66{bottom:765.494800pt;}
.yce{bottom:766.898872pt;}
.y1a5{bottom:766.907333pt;}
.yd0{bottom:767.569830pt;}
.y128{bottom:774.069067pt;}
.y127{bottom:774.277333pt;}
.y130{bottom:774.539407pt;}
.y12f{bottom:774.593156pt;}
.y125{bottom:774.598933pt;}
.y131{bottom:774.673781pt;}
.y126{bottom:774.706433pt;}
.y124{bottom:775.493467pt;}
.y133{bottom:775.851600pt;}
.y12a{bottom:776.212267pt;}
.y12c{bottom:776.218800pt;}
.y132{bottom:776.253867pt;}
.y12e{bottom:776.373733pt;}
.y129{bottom:776.501248pt;}
.y12b{bottom:776.641867pt;}
.y123{bottom:777.260400pt;}
.y12d{bottom:777.428400pt;}
.ye{bottom:778.852267pt;}
.y1fa{bottom:780.045600pt;}
.y1ad{bottom:780.048133pt;}
.yfb{bottom:780.789733pt;}
.y3e{bottom:782.632800pt;}
.y49{bottom:785.973067pt;}
.y1a4{bottom:786.107333pt;}
.ycc{bottom:793.577456pt;}
.yd{bottom:799.332267pt;}
.y48{bottom:808.373067pt;}
.yc{bottom:817.892267pt;}
.y1e{bottom:825.042267pt;}
.y19d{bottom:826.442667pt;}
.y1f9{bottom:828.045600pt;}
.ye1{bottom:828.046267pt;}
.y1ac{bottom:828.048133pt;}
.yfa{bottom:828.789733pt;}
.y2d{bottom:830.227200pt;}
.y3d{bottom:830.632800pt;}
.y1ae{bottom:834.144533pt;}
.yb{bottom:836.132267pt;}
.y47{bottom:851.467467pt;}
.y68{bottom:854.491600pt;}
.ya{bottom:856.612267pt;}
.y122{bottom:871.223193pt;}
.yc4{bottom:875.940133pt;}
.yc8{bottom:876.633822pt;}
.y121{bottom:883.316953pt;}
.y9{bottom:887.332267pt;}
.y120{bottom:895.410713pt;}
.y138{bottom:895.411360pt;}
.y1af{bottom:902.496533pt;}
.y1ab{bottom:902.506533pt;}
.yc3{bottom:904.321307pt;}
.yd8{bottom:904.322640pt;}
.y11f{bottom:907.504473pt;}
.y137{bottom:907.505120pt;}
.y8{bottom:917.412267pt;}
.y11e{bottom:919.598233pt;}
.y136{bottom:919.598880pt;}
.yc2{bottom:923.815067pt;}
.yd7{bottom:923.816400pt;}
.y104{bottom:924.400000pt;}
.y11d{bottom:931.691993pt;}
.y135{bottom:931.692640pt;}
.y11c{bottom:943.785753pt;}
.y134{bottom:943.786400pt;}
.ydc{bottom:962.427865pt;}
.y19c{bottom:974.286400pt;}
.y1aa{bottom:977.980533pt;}
.ye0{bottom:977.988400pt;}
.y116{bottom:978.684933pt;}
.yf9{bottom:978.726533pt;}
.y3c{bottom:980.569067pt;}
.ydb{bottom:981.667123pt;}
.y19b{bottom:984.364533pt;}
.yda{bottom:1001.293549pt;}
.y7{bottom:1010.532267pt;}
.yd9{bottom:1019.877600pt;}
.y6{bottom:1023.332267pt;}
.y5{bottom:1036.132267pt;}
.ydf{bottom:1054.372400pt;}
.h2c{height:13.575515pt;}
.h40{height:29.703125pt;}
.h41{height:29.940750pt;}
.h1e{height:30.119490pt;}
.h3{height:30.401250pt;}
.h34{height:30.706813pt;}
.h1a{height:35.139563pt;}
.h32{height:35.942718pt;}
.h35{height:36.245149pt;}
.h1d{height:36.582864pt;}
.h38{height:36.603780pt;}
.h21{height:38.517114pt;}
.h42{height:39.604167pt;}
.hb{height:41.171875pt;}
.h2d{height:42.740068pt;}
.h3b{height:43.077908pt;}
.h3d{height:43.424087pt;}
.h2f{height:44.241845pt;}
.h2{height:44.437500pt;}
.h17{height:44.725012pt;}
.h36{height:44.737523pt;}
.h9{height:44.759491pt;}
.h43{height:45.092809pt;}
.h27{height:45.137830pt;}
.h2b{height:45.452940pt;}
.h1c{height:46.416344pt;}
.h3e{height:47.042325pt;}
.h49{height:47.958750pt;}
.h16{height:48.487381pt;}
.h33{height:48.804879pt;}
.h18{height:48.854167pt;}
.h45{height:52.307292pt;}
.h3f{height:52.453442pt;}
.h3c{height:53.018671pt;}
.h26{height:53.107593pt;}
.h15{height:53.739583pt;}
.h48{height:53.924062pt;}
.h44{height:54.455729pt;}
.h14{height:54.716667pt;}
.h47{height:56.138906pt;}
.h25{height:56.974053pt;}
.h1f{height:57.336876pt;}
.h20{height:57.339756pt;}
.he{height:57.640625pt;}
.h22{height:57.935556pt;}
.hc{height:58.385533pt;}
.hd{height:58.625000pt;}
.h23{height:59.721788pt;}
.h1b{height:61.888458pt;}
.h12{height:63.796133pt;}
.h4{height:63.984375pt;}
.h24{height:64.067042pt;}
.h11{height:68.395833pt;}
.h5{height:73.766250pt;}
.h10{height:78.166667pt;}
.h2e{height:83.006497pt;}
.h37{height:85.050057pt;}
.h30{height:85.923134pt;}
.h28{height:87.663248pt;}
.h2a{height:88.275230pt;}
.h19{height:90.437200pt;}
.h29{height:91.299074pt;}
.h13{height:91.333200pt;}
.h39{height:95.050000pt;}
.h3a{height:98.812500pt;}
.h31{height:102.929688pt;}
.h46{height:118.812500pt;}
.hf{height:123.515625pt;}
.h8{height:127.884085pt;}
.ha{height:183.169271pt;}
.h7{height:277.852932pt;}
.h0{height:1122.519733pt;}
.h6{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700667pt;}
.w2{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1587.333333pt;}
.w3{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x112{left:43.322933pt;}
.x3{left:76.147435pt;}
.x7{left:82.868533pt;}
.x8{left:86.055246pt;}
.x18{left:101.530533pt;}
.x17{left:104.016933pt;}
.x68{left:105.072933pt;}
.x7a{left:111.666667pt;}
.xf6{left:118.977867pt;}
.x113{left:142.263067pt;}
.x10b{left:157.510267pt;}
.xf5{left:165.523467pt;}
.xfe{left:176.247333pt;}
.x10a{left:191.782267pt;}
.x6e{left:196.483067pt;}
.x109{left:198.683600pt;}
.x6f{left:203.997697pt;}
.x10c{left:221.968933pt;}
.x106{left:231.654267pt;}
.x9{left:251.298673pt;}
.xff{left:267.671333pt;}
.x5{left:276.730443pt;}
.x70{left:286.350658pt;}
.x71{left:291.512347pt;}
.xf2{left:298.229200pt;}
.x92{left:301.313745pt;}
.x93{left:304.468201pt;}
.x94{left:308.842111pt;}
.x91{left:312.319067pt;}
.xea{left:318.218800pt;}
.x95{left:319.293135pt;}
.xd6{left:320.753867pt;}
.xa4{left:326.388395pt;}
.x111{left:327.498770pt;}
.x7e{left:328.919333pt;}
.xc1{left:331.578897pt;}
.xb3{left:334.765600pt;}
.xb8{left:336.665333pt;}
.xb9{left:338.963148pt;}
.x10d{left:344.722667pt;}
.x104{left:349.072933pt;}
.x6{left:350.760267pt;}
.x8e{left:361.507867pt;}
.xba{left:362.556058pt;}
.x4{left:369.047307pt;}
.x103{left:387.722667pt;}
.x98{left:390.563589pt;}
.x110{left:393.389737pt;}
.x99{left:394.937499pt;}
.x2{left:397.414027pt;}
.x96{left:398.424533pt;}
.xf1{left:400.235733pt;}
.x97{left:403.000006pt;}
.x9a{left:405.388523pt;}
.x108{left:421.307600pt;}
.x107{left:439.600933pt;}
.x8f{left:447.864533pt;}
.x6a{left:449.296933pt;}
.xa6{left:461.412680pt;}
.x10f{left:462.609212pt;}
.x1e{left:463.776000pt;}
.x25{left:464.861621pt;}
.x24{left:471.733825pt;}
.xeb{left:479.197867pt;}
.xd7{left:481.735068pt;}
.xa5{left:483.080667pt;}
.x23{left:485.478231pt;}
.x22{left:496.354133pt;}
.x1a{left:505.384133pt;}
.x90{left:508.472667pt;}
.x7f{left:510.792933pt;}
.xa7{left:531.566566pt;}
.x1{left:532.774027pt;}
.x80{left:534.511733pt;}
.x102{left:543.035067pt;}
.x72{left:544.089224pt;}
.x105{left:546.171600pt;}
.x10e{left:550.568000pt;}
.x100{left:553.259067pt;}
.x1f{left:558.055333pt;}
.x27{left:560.393867pt;}
.x26{left:569.350933pt;}
.xec{left:579.225200pt;}
.xd9{left:581.947867pt;}
.x101{left:594.995067pt;}
.xf4{left:606.802133pt;}
.xe3{left:607.760400pt;}
.xd8{left:610.291311pt;}
.x1d{left:622.990933pt;}
.x73{left:627.017095pt;}
.x74{left:632.214818pt;}
.x9c{left:645.546094pt;}
.x20{left:656.428667pt;}
.x9b{left:658.002667pt;}
.xc2{left:660.034555pt;}
.xb4{left:662.568903pt;}
.x1b{left:665.693467pt;}
.xad{left:692.861709pt;}
.xae{left:702.456092pt;}
.xac{left:704.250000pt;}
.xe2{left:707.511733pt;}
.x81{left:710.005048pt;}
.xa1{left:715.182623pt;}
.xa0{left:719.264267pt;}
.xa3{left:729.624588pt;}
.xee{left:731.381419pt;}
.xa2{left:733.010841pt;}
.xf0{left:736.339861pt;}
.xed{left:745.954400pt;}
.xef{left:750.590341pt;}
.x82{left:757.437467pt;}
.xf3{left:801.224000pt;}
.xa8{left:802.182267pt;}
.x1c{left:803.662533pt;}
.x83{left:804.718800pt;}
.xdf{left:843.979200pt;}
.xe1{left:849.542330pt;}
.x69{left:851.758400pt;}
.x9d{left:855.974000pt;}
.x8a{left:857.190133pt;}
.xe0{left:858.360696pt;}
.xfd{left:863.803333pt;}
.x6c{left:865.834667pt;}
.x4e{left:868.159467pt;}
.x60{left:875.746800pt;}
.x3b{left:877.813867pt;}
.x38{left:879.037733pt;}
.x44{left:881.942667pt;}
.x52{left:883.800133pt;}
.x6d{left:887.328000pt;}
.x48{left:890.569600pt;}
.xca{left:892.148263pt;}
.x39{left:897.670533pt;}
.x42{left:903.459906pt;}
.x3e{left:905.135296pt;}
.xaa{left:906.859333pt;}
.x3d{left:908.013067pt;}
.x88{left:909.336000pt;}
.x3a{left:910.591200pt;}
.x41{left:914.151067pt;}
.x43{left:916.455733pt;}
.xe4{left:923.330667pt;}
.x61{left:927.255000pt;}
.x13{left:933.829200pt;}
.x10{left:941.896533pt;}
.x12{left:947.775867pt;}
.x53{left:948.755297pt;}
.xb{left:952.336000pt;}
.xbb{left:954.239600pt;}
.xb6{left:956.743467pt;}
.xc{left:958.202667pt;}
.x14{left:961.295867pt;}
.x15{left:962.402533pt;}
.xfc{left:965.936133pt;}
.xcf{left:968.381467pt;}
.xd{left:971.741600pt;}
.xe{left:972.848267pt;}
.xd0{left:977.099052pt;}
.xd1{left:979.336398pt;}
.x64{left:993.003200pt;}
.xb1{left:996.401285pt;}
.x49{left:998.922416pt;}
.xb0{left:1000.382147pt;}
.x7d{left:1003.177387pt;}
.x89{left:1004.273467pt;}
.x66{left:1007.186855pt;}
.xaf{left:1022.342400pt;}
.x78{left:1029.173587pt;}
.x79{left:1034.232817pt;}
.xdc{left:1036.437557pt;}
.xc5{left:1037.672743pt;}
.x65{left:1040.031867pt;}
.xbc{left:1049.156267pt;}
.xdd{left:1050.365537pt;}
.x87{left:1051.717467pt;}
.xc4{left:1053.555881pt;}
.xc3{left:1067.312533pt;}
.xdb{left:1071.106336pt;}
.x62{left:1071.996168pt;}
.xf{left:1075.034933pt;}
.xa{left:1079.407600pt;}
.x4f{left:1088.147733pt;}
.xe6{left:1089.963889pt;}
.xe5{left:1091.526000pt;}
.x21{left:1093.831333pt;}
.x54{left:1102.308919pt;}
.x84{left:1103.944308pt;}
.x67{left:1115.246133pt;}
.x51{left:1120.992745pt;}
.x50{left:1134.539714pt;}
.xda{left:1138.782533pt;}
.xc8{left:1141.839093pt;}
.x4a{left:1143.647339pt;}
.xc6{left:1144.570267pt;}
.xc7{left:1146.616128pt;}
.x4b{left:1150.258973pt;}
.xbd{left:1153.507867pt;}
.x63{left:1154.730934pt;}
.x28{left:1155.799467pt;}
.x40{left:1159.554399pt;}
.xc9{left:1163.023329pt;}
.x55{left:1167.998941pt;}
.x29{left:1177.191467pt;}
.x2a{left:1180.145867pt;}
.x45{left:1189.285401pt;}
.x3f{left:1192.544267pt;}
.x6b{left:1197.650400pt;}
.x19{left:1199.233733pt;}
.x56{left:1200.843953pt;}
.x7c{left:1202.432162pt;}
.x86{left:1203.735733pt;}
.x2b{left:1214.374933pt;}
.x33{left:1228.867200pt;}
.xe7{left:1230.341200pt;}
.x57{left:1233.688964pt;}
.xf8{left:1236.507892pt;}
.xe8{left:1238.403707pt;}
.xe9{left:1240.177458pt;}
.xd3{left:1244.103949pt;}
.xf7{left:1245.430941pt;}
.xd4{left:1246.593248pt;}
.xa9{left:1248.816400pt;}
.x85{left:1251.429733pt;}
.xd2{left:1262.546933pt;}
.xd5{left:1265.983577pt;}
.xbf{left:1270.655875pt;}
.x58{left:1272.812229pt;}
.x4d{left:1281.143326pt;}
.x35{left:1282.345067pt;}
.xbe{left:1286.287060pt;}
.x75{left:1288.828133pt;}
.xc0{left:1294.248785pt;}
.x76{left:1295.943580pt;}
.x2e{left:1297.306967pt;}
.xb5{left:1298.735733pt;}
.x4c{left:1300.815779pt;}
.x2c{left:1303.324267pt;}
.x59{left:1305.657240pt;}
.xcb{left:1316.288741pt;}
.x2d{left:1319.298615pt;}
.x34{left:1323.109333pt;}
.xcd{left:1325.691639pt;}
.xcc{left:1330.942346pt;}
.x47{left:1335.178182pt;}
.x5a{left:1338.502251pt;}
.xce{left:1340.677823pt;}
.xb2{left:1347.901067pt;}
.x9e{left:1349.544267pt;}
.x8b{left:1350.681097pt;}
.x3c{left:1355.960933pt;}
.x5b{left:1371.347262pt;}
.x77{left:1373.921877pt;}
.x37{left:1379.427067pt;}
.x11{left:1382.667333pt;}
.xb7{left:1385.214800pt;}
.x46{left:1386.665373pt;}
.x32{left:1395.673987pt;}
.x30{left:1397.903555pt;}
.x2f{left:1400.741187pt;}
.xf9{left:1404.595258pt;}
.x5f{left:1405.914594pt;}
.x31{left:1412.687111pt;}
.xde{left:1415.968800pt;}
.x36{left:1417.354133pt;}
.x8c{left:1419.454051pt;}
.xfa{left:1421.468800pt;}
.xfb{left:1423.208147pt;}
.x5d{left:1427.509733pt;}
.x5c{left:1429.819600pt;}
.x5e{left:1451.616310pt;}
.xab{left:1485.986933pt;}
.x9f{left:1487.350267pt;}
.x8d{left:1488.280755pt;}
.x7b{left:1523.778000pt;}
.x16{left:1528.281867pt;}
}




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