
    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_9968773438869019bf8c101b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_7aa880813ce2f146cea242e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_7efb17f76da8b680d0960148.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_b72456f76e113107e64b58d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_c7852e21286cebe2fc153a93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;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_4e660b36434e095f407a856f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937012;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_f93c23a39d90cecb8b7a1aee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984863;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_cfcc249dfb05ddcf75836384.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984863;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_6a901fd29b4d5d96f18d1df1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_7719878aa94dd2516fbdeec4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_ea065b36ba8d2f5fef2bb598.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_392c20962de3d41998868ed1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_6a901fd29b4d5d96f18d1df1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_7719878aa94dd2516fbdeec4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_ea065b36ba8d2f5fef2bb598.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_a4673e20c871f4cb27ed696d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.519500;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_6a901fd29b4d5d96f18d1df1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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:ff12;src:url('chunks/assets/font_7719878aa94dd2516fbdeec4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984000;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:ff13;src:url('chunks/assets/font_ea065b36ba8d2f5fef2bb598.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984000;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;}
.m1{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);}
.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);}
.m2{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:-24.300000px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.359400px;}
.v1{vertical-align:35.100000px;}
.ls8{letter-spacing:-2.025000px;}
.ls6{letter-spacing:-1.776000px;}
.lse{letter-spacing:-1.665000px;}
.ls7{letter-spacing:-1.254000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005088px;}
.ls3{letter-spacing:0.005688px;}
.lsa{letter-spacing:0.644794px;}
.lsd{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.972000px;}
.ls9{letter-spacing:0.972540px;}
.ls2{letter-spacing:1.424430px;}
.ls0{letter-spacing:3.696000px;}
.ls1{letter-spacing:17.199600px;}
.ls4{letter-spacing:24.492000px;}
.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;}
}
.ws3{word-spacing:-16.244430px;}
.ws5{word-spacing:-15.012000px;}
.wsea{word-spacing:-14.820000px;}
.ws6{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.566000px;}
.ws9d{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.411360px;}
.ws21{word-spacing:-11.700000px;}
.wsd{word-spacing:-11.520480px;}
.ws1{word-spacing:-11.520000px;}
.wsb5{word-spacing:-10.800450px;}
.wseb{word-spacing:-10.800000px;}
.ws4c{word-spacing:-10.597750px;}
.ws4{word-spacing:-9.952956px;}
.wse2{word-spacing:-7.637760px;}
.ws28{word-spacing:-6.074550px;}
.ws69{word-spacing:-5.885460px;}
.ws81{word-spacing:-5.508540px;}
.ws6b{word-spacing:-5.183460px;}
.ws29{word-spacing:-5.175450px;}
.ws95{word-spacing:-4.806000px;}
.ws80{word-spacing:-4.590540px;}
.wsa{word-spacing:-4.289220px;}
.ws6c{word-spacing:-4.050000px;}
.wsba{word-spacing:-3.996540px;}
.ws8{word-spacing:-3.959280px;}
.ws88{word-spacing:-3.671460px;}
.ws99{word-spacing:-3.618000px;}
.ws44{word-spacing:-3.240000px;}
.ws8b{word-spacing:-2.969460px;}
.ws7c{word-spacing:-2.916000px;}
.ws8d{word-spacing:-2.861460px;}
.ws6d{word-spacing:-2.808000px;}
.wsc5{word-spacing:-2.753460px;}
.wsc8{word-spacing:-2.700000px;}
.wsb{word-spacing:-2.639520px;}
.wsf1{word-spacing:-2.474550px;}
.ws41{word-spacing:-2.376540px;}
.wsd5{word-spacing:-2.322000px;}
.wsac{word-spacing:-2.268540px;}
.ws6a{word-spacing:-2.159460px;}
.wsb6{word-spacing:-2.106000px;}
.wsf0{word-spacing:-2.025000px;}
.ws4b{word-spacing:-1.890000px;}
.ws84{word-spacing:-1.782000px;}
.wsb9{word-spacing:-1.728000px;}
.wsed{word-spacing:-1.665000px;}
.ws86{word-spacing:-1.457460px;}
.wse{word-spacing:-1.424430px;}
.ws1c{word-spacing:-1.404000px;}
.ws35{word-spacing:-1.349460px;}
.wscc{word-spacing:-1.296000px;}
.ws45{word-spacing:-1.241460px;}
.wsad{word-spacing:-1.080000px;}
.ws67{word-spacing:-0.972540px;}
.wsbf{word-spacing:-0.864540px;}
.wsec{word-spacing:-0.810450px;}
.ws62{word-spacing:-0.810000px;}
.wsa4{word-spacing:-0.756540px;}
.ws94{word-spacing:-0.702000px;}
.wse0{word-spacing:-0.539460px;}
.wscd{word-spacing:-0.486000px;}
.wsb7{word-spacing:-0.378000px;}
.wsc0{word-spacing:-0.324000px;}
.ws76{word-spacing:-0.216000px;}
.wsde{word-spacing:-0.162540px;}
.ws56{word-spacing:-0.108000px;}
.wsee{word-spacing:-0.090000px;}
.ws7{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.ws6e{word-spacing:0.108000px;}
.wse4{word-spacing:0.162540px;}
.ws5f{word-spacing:0.216000px;}
.ws4a{word-spacing:0.324000px;}
.ws6f{word-spacing:0.539460px;}
.ws96{word-spacing:0.647460px;}
.ws65{word-spacing:0.702000px;}
.wsbc{word-spacing:0.756540px;}
.wsf{word-spacing:0.864540px;}
.wsc3{word-spacing:0.918000px;}
.ws63{word-spacing:0.972540px;}
.wsdf{word-spacing:1.080000px;}
.wsb8{word-spacing:1.241460px;}
.wse1{word-spacing:1.296000px;}
.ws64{word-spacing:1.457460px;}
.ws7e{word-spacing:1.512000px;}
.ws5d{word-spacing:1.620000px;}
.wsef{word-spacing:1.665000px;}
.ws12{word-spacing:1.728000px;}
.wsc{word-spacing:1.776000px;}
.wsb2{word-spacing:1.782000px;}
.ws70{word-spacing:1.944000px;}
.wse6{word-spacing:2.051460px;}
.wsae{word-spacing:2.106000px;}
.wsd4{word-spacing:2.112676px;}
.ws91{word-spacing:2.322000px;}
.wsc9{word-spacing:2.376540px;}
.wsa6{word-spacing:2.430000px;}
.wsaa{word-spacing:2.484540px;}
.ws51{word-spacing:2.592000px;}
.ws5c{word-spacing:2.700000px;}
.ws8f{word-spacing:2.753460px;}
.ws9f{word-spacing:2.808000px;}
.wsa1{word-spacing:3.132000px;}
.wsd3{word-spacing:3.186540px;}
.ws7a{word-spacing:3.240000px;}
.wsa5{word-spacing:3.294000px;}
.ws14{word-spacing:3.329586px;}
.wsbe{word-spacing:3.348000px;}
.ws9c{word-spacing:3.510000px;}
.wsd7{word-spacing:3.671460px;}
.ws3f{word-spacing:3.780540px;}
.wsc7{word-spacing:3.888540px;}
.ws55{word-spacing:3.942000px;}
.wsce{word-spacing:3.996540px;}
.ws77{word-spacing:4.050000px;}
.ws74{word-spacing:4.212000px;}
.ws59{word-spacing:4.428000px;}
.ws47{word-spacing:4.481460px;}
.ws10{word-spacing:4.536000px;}
.ws4d{word-spacing:4.590540px;}
.ws9a{word-spacing:4.698540px;}
.ws98{word-spacing:4.752000px;}
.wsa2{word-spacing:4.806000px;}
.wsb1{word-spacing:4.832912px;}
.ws3b{word-spacing:4.968000px;}
.ws13{word-spacing:5.022000px;}
.wsbb{word-spacing:5.075460px;}
.ws18{word-spacing:5.130000px;}
.ws1d{word-spacing:5.183460px;}
.wsb3{word-spacing:5.238000px;}
.wse8{word-spacing:5.292540px;}
.ws3d{word-spacing:5.346000px;}
.ws2c{word-spacing:5.400540px;}
.ws8c{word-spacing:5.454000px;}
.ws4f{word-spacing:5.508540px;}
.wsdd{word-spacing:5.670000px;}
.ws39{word-spacing:5.724000px;}
.ws17{word-spacing:5.777460px;}
.ws2f{word-spacing:5.832000px;}
.ws42{word-spacing:5.885460px;}
.ws90{word-spacing:5.940000px;}
.ws5b{word-spacing:6.048000px;}
.ws19{word-spacing:6.102540px;}
.ws93{word-spacing:6.156000px;}
.ws4e{word-spacing:6.264000px;}
.wsa3{word-spacing:6.318000px;}
.ws87{word-spacing:6.372000px;}
.ws2b{word-spacing:6.426000px;}
.wsd0{word-spacing:6.480000px;}
.wsd6{word-spacing:6.534000px;}
.ws7d{word-spacing:6.695460px;}
.ws85{word-spacing:6.858000px;}
.ws83{word-spacing:6.912540px;}
.wse9{word-spacing:6.966000px;}
.wsc2{word-spacing:7.128000px;}
.ws52{word-spacing:7.236000px;}
.wsb0{word-spacing:7.289460px;}
.ws7f{word-spacing:7.344000px;}
.ws73{word-spacing:7.452000px;}
.ws57{word-spacing:7.506540px;}
.wsb4{word-spacing:7.560000px;}
.wse7{word-spacing:7.614540px;}
.ws8e{word-spacing:7.668000px;}
.wsaf{word-spacing:7.722540px;}
.ws2a{word-spacing:7.776000px;}
.ws89{word-spacing:7.991460px;}
.ws8a{word-spacing:8.046000px;}
.ws3a{word-spacing:8.154000px;}
.wsca{word-spacing:8.207460px;}
.wsa7{word-spacing:8.316540px;}
.ws32{word-spacing:8.370000px;}
.ws49{word-spacing:8.532000px;}
.wsd8{word-spacing:8.856000px;}
.wsdc{word-spacing:8.909460px;}
.ws46{word-spacing:9.018540px;}
.ws1a{word-spacing:9.072000px;}
.ws79{word-spacing:9.126540px;}
.ws75{word-spacing:9.180000px;}
.ws54{word-spacing:9.234540px;}
.ws97{word-spacing:9.450000px;}
.ws92{word-spacing:9.503460px;}
.ws66{word-spacing:9.558000px;}
.ws60{word-spacing:9.611460px;}
.wsa0{word-spacing:9.719460px;}
.ws38{word-spacing:9.882000px;}
.wsd9{word-spacing:9.990000px;}
.ws5e{word-spacing:10.044000px;}
.ws11{word-spacing:10.368000px;}
.ws40{word-spacing:10.421460px;}
.ws71{word-spacing:10.476000px;}
.wsc6{word-spacing:10.692000px;}
.wse5{word-spacing:11.015460px;}
.ws33{word-spacing:11.123460px;}
.ws15{word-spacing:11.178000px;}
.ws5a{word-spacing:11.340540px;}
.ws37{word-spacing:11.502000px;}
.wsbd{word-spacing:11.610000px;}
.ws61{word-spacing:11.664000px;}
.ws58{word-spacing:11.880000px;}
.ws50{word-spacing:12.042540px;}
.wse3{word-spacing:12.096000px;}
.ws1b{word-spacing:12.474000px;}
.ws20{word-spacing:12.479520px;}
.ws31{word-spacing:12.527460px;}
.ws78{word-spacing:12.635460px;}
.ws2d{word-spacing:12.690000px;}
.ws7b{word-spacing:12.906000px;}
.wsd2{word-spacing:13.284000px;}
.ws1e{word-spacing:13.337460px;}
.ws9e{word-spacing:13.554540px;}
.ws82{word-spacing:13.608000px;}
.wsc4{word-spacing:14.039460px;}
.ws68{word-spacing:14.147460px;}
.wsa9{word-spacing:14.472540px;}
.ws1f{word-spacing:14.688000px;}
.ws9b{word-spacing:14.904000px;}
.wscb{word-spacing:15.120000px;}
.ws48{word-spacing:15.228000px;}
.ws3e{word-spacing:15.336000px;}
.ws34{word-spacing:15.606000px;}
.wsdb{word-spacing:15.930000px;}
.ws53{word-spacing:16.092000px;}
.wscf{word-spacing:16.361460px;}
.ws3c{word-spacing:16.524000px;}
.ws72{word-spacing:16.956000px;}
.ws2e{word-spacing:17.765460px;}
.ws30{word-spacing:18.360000px;}
.ws43{word-spacing:18.683460px;}
.ws16{word-spacing:19.062000px;}
.wsd1{word-spacing:19.656000px;}
.wsab{word-spacing:20.682000px;}
.wsc1{word-spacing:24.515460px;}
.wsda{word-spacing:25.812000px;}
.wsa8{word-spacing:31.481460px;}
.ws36{word-spacing:36.018540px;}
.ws26{word-spacing:66.510000px;}
.ws24{word-spacing:69.390000px;}
.ws23{word-spacing:76.950000px;}
.ws22{word-spacing:88.110000px;}
.ws25{word-spacing:109.710000px;}
.ws27{word-spacing:1566.712200px;}
._4b{margin-left:-3067.654200px;}
._e{margin-left:-2848.387680px;}
._c{margin-left:-2243.975760px;}
._d{margin-left:-1707.910380px;}
._b{margin-left:-59.040000px;}
._8{margin-left:-47.970000px;}
._5c{margin-left:-24.569460px;}
._4e{margin-left:-16.146000px;}
._44{margin-left:-12.852000px;}
._14{margin-left:-10.800000px;}
._42{margin-left:-8.564400px;}
._6{margin-left:-7.008000px;}
._5{margin-left:-6.004080px;}
._2{margin-left:-4.452000px;}
._0{margin-left:-3.240000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.067400px;}
._a{width:1.305000px;}
._46{width:3.094200px;}
._4{width:4.291080px;}
._43{width:5.297760px;}
._41{width:6.663600px;}
._40{width:8.089200px;}
._47{width:9.213480px;}
._48{width:10.352880px;}
._4a{width:11.435640px;}
._7{width:12.504480px;}
._9{width:13.851000px;}
._45{width:16.567200px;}
._5d{width:17.586600px;}
._4d{width:20.349600px;}
._49{width:21.378600px;}
._4c{width:25.682940px;}
._1a{width:32.715000px;}
._13{width:34.200000px;}
._f{width:40.362000px;}
._16{width:43.155000px;}
._55{width:45.000000px;}
._3b{width:64.980000px;}
._1f{width:70.110000px;}
._2b{width:77.310000px;}
._15{width:86.355000px;}
._18{width:93.195000px;}
._27{width:94.995000px;}
._36{width:96.570000px;}
._1e{width:98.415000px;}
._23{width:99.900000px;}
._24{width:102.465000px;}
._29{width:105.615000px;}
._20{width:106.650000px;}
._19{width:108.675000px;}
._33{width:110.790450px;}
._2a{width:112.185000px;}
._35{width:114.570000px;}
._30{width:117.585000px;}
._31{width:119.925000px;}
._2c{width:121.590000px;}
._3c{width:129.915000px;}
._12{width:131.355000px;}
._22{width:136.710000px;}
._5a{width:151.783470px;}
._3d{width:154.170000px;}
._32{width:176.310000px;}
._4f{width:180.945000px;}
._39{width:199.080000px;}
._1d{width:212.400000px;}
._52{width:224.865000px;}
._57{width:229.590900px;}
._5b{width:236.745900px;}
._58{width:247.454370px;}
._56{width:251.190900px;}
._50{width:261.270000px;}
._25{width:278.190000px;}
._2e{width:279.720000px;}
._17{width:281.970000px;}
._26{width:291.015000px;}
._54{width:295.290000px;}
._2d{width:304.065000px;}
._2f{width:331.065000px;}
._59{width:333.540000px;}
._51{width:371.115000px;}
._1b{width:374.400000px;}
._10{width:394.110000px;}
._53{width:426.060000px;}
._1c{width:438.165000px;}
._28{width:499.680000px;}
._3e{width:501.345000px;}
._3a{width:517.680000px;}
._21{width:544.545000px;}
._38{width:547.019550px;}
._37{width:553.680000px;}
._34{width:582.750000px;}
._3f{width:669.105000px;}
._11{width:718.425000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.824000px;}
.fs9{font-size:35.802000px;}
.fs6{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:51.714000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:43.441200px;}
.y9a{bottom:68.761200px;}
.y4d{bottom:68.809200px;}
.y256{bottom:68.809350px;}
.y1ab{bottom:68.812350px;}
.y1b1{bottom:68.814900px;}
.y198{bottom:68.818350px;}
.y163{bottom:68.820900px;}
.y1b5{bottom:68.822400px;}
.y284{bottom:68.836200px;}
.y106{bottom:68.836350px;}
.y208{bottom:68.839350px;}
.y21a{bottom:68.861250px;}
.y182{bottom:68.862750px;}
.y141{bottom:68.938350px;}
.y5c{bottom:68.984400px;}
.y228{bottom:69.062400px;}
.y12{bottom:74.016750px;}
.y99{bottom:82.261200px;}
.y283{bottom:82.564200px;}
.y4c{bottom:85.306200px;}
.y1b0{bottom:85.311900px;}
.y197{bottom:85.315350px;}
.y162{bottom:85.317900px;}
.y1b4{bottom:85.319400px;}
.y105{bottom:85.333350px;}
.y207{bottom:85.336350px;}
.y219{bottom:85.358250px;}
.y181{bottom:85.359750px;}
.y1aa{bottom:85.369350px;}
.y140{bottom:85.435350px;}
.y5b{bottom:85.805400px;}
.y227{bottom:85.829400px;}
.y11{bottom:87.516750px;}
.y255{bottom:87.709350px;}
.y98{bottom:95.761200px;}
.y254{bottom:95.809350px;}
.y282{bottom:96.292200px;}
.y10{bottom:101.016750px;}
.y4b{bottom:101.752950px;}
.y196{bottom:101.812350px;}
.y1af{bottom:101.813250px;}
.y161{bottom:101.814900px;}
.y1b3{bottom:101.816400px;}
.y104{bottom:101.830350px;}
.y206{bottom:101.833350px;}
.y218{bottom:101.855250px;}
.y180{bottom:101.856750px;}
.y1a9{bottom:101.866350px;}
.y13f{bottom:101.932350px;}
.y226{bottom:102.596400px;}
.y5a{bottom:102.626400px;}
.y97{bottom:109.261200px;}
.y281{bottom:110.020200px;}
.yf{bottom:114.516750px;}
.y253{bottom:114.709350px;}
.y160{bottom:118.308150px;}
.y195{bottom:118.309350px;}
.y1ae{bottom:118.310250px;}
.y1b2{bottom:118.313400px;}
.y103{bottom:118.327350px;}
.y205{bottom:118.330350px;}
.y217{bottom:118.352250px;}
.y17f{bottom:118.353750px;}
.y1a8{bottom:118.363350px;}
.y1e4{bottom:118.387350px;}
.y13e{bottom:118.429350px;}
.y225{bottom:119.363400px;}
.y59{bottom:119.447400px;}
.y96{bottom:122.761200px;}
.y280{bottom:123.748200px;}
.y252{bottom:128.209350px;}
.y194{bottom:134.821350px;}
.y204{bottom:134.827350px;}
.y216{bottom:134.849250px;}
.y17e{bottom:134.850750px;}
.y1a7{bottom:134.860350px;}
.y102{bottom:134.881350px;}
.y1e3{bottom:134.884350px;}
.y13d{bottom:134.926350px;}
.y15f{bottom:135.564900px;}
.y224{bottom:136.130400px;}
.y95{bottom:136.261200px;}
.y58{bottom:136.268400px;}
.y27f{bottom:137.476200px;}
.y26{bottom:138.896250px;}
.y251{bottom:141.709350px;}
.y94{bottom:149.761200px;}
.y27e{bottom:151.204200px;}
.y193{bottom:151.318350px;}
.y203{bottom:151.324350px;}
.y215{bottom:151.346250px;}
.y17d{bottom:151.347750px;}
.y1a6{bottom:151.357350px;}
.y101{bottom:151.378350px;}
.y1e2{bottom:151.381350px;}
.y13c{bottom:151.423350px;}
.y25{bottom:152.396250px;}
.y223{bottom:152.897400px;}
.y57{bottom:153.089400px;}
.y4a{bottom:154.748700px;}
.y250{bottom:155.209350px;}
.y1ad{bottom:158.148750px;}
.y93{bottom:163.261200px;}
.y27d{bottom:164.932200px;}
.y24{bottom:165.896250px;}
.y192{bottom:167.815350px;}
.y202{bottom:167.821350px;}
.y214{bottom:167.843250px;}
.y17c{bottom:167.844750px;}
.y1a5{bottom:167.854350px;}
.y100{bottom:167.875350px;}
.y1e1{bottom:167.878350px;}
.y13b{bottom:167.920350px;}
.y24f{bottom:168.709350px;}
.y222{bottom:169.664400px;}
.y56{bottom:169.910400px;}
.y15e{bottom:170.880900px;}
.y49{bottom:171.250200px;}
.y1ac{bottom:174.645750px;}
.y92{bottom:176.761200px;}
.y23{bottom:179.396250px;}
.y24e{bottom:182.209350px;}
.y191{bottom:184.312350px;}
.y201{bottom:184.318350px;}
.y213{bottom:184.340250px;}
.y17b{bottom:184.341750px;}
.y1a4{bottom:184.351350px;}
.yff{bottom:184.372350px;}
.y1e0{bottom:184.375350px;}
.y13a{bottom:184.417350px;}
.y27c{bottom:184.660200px;}
.y221{bottom:186.434400px;}
.y55{bottom:186.731400px;}
.y15d{bottom:187.377900px;}
.y48{bottom:187.751700px;}
.y22{bottom:192.896250px;}
.y91{bottom:194.198700px;}
.y24d{bottom:195.709350px;}
.y27b{bottom:198.388200px;}
.y190{bottom:200.815350px;}
.y212{bottom:200.837250px;}
.y17a{bottom:200.838750px;}
.y1a3{bottom:200.848350px;}
.yfe{bottom:200.869350px;}
.y1df{bottom:200.872350px;}
.y139{bottom:200.914350px;}
.y54{bottom:203.552400px;}
.y15c{bottom:203.874900px;}
.y47{bottom:204.253200px;}
.y21{bottom:206.396250px;}
.y24c{bottom:209.209350px;}
.y90{bottom:214.639950px;}
.y24b{bottom:217.309350px;}
.y18f{bottom:217.312350px;}
.y211{bottom:217.334250px;}
.y179{bottom:217.335750px;}
.y1a2{bottom:217.345350px;}
.yfd{bottom:217.366350px;}
.y1de{bottom:217.369350px;}
.y138{bottom:217.411350px;}
.y27a{bottom:218.116200px;}
.y307{bottom:219.113700px;}
.y2c4{bottom:219.136200px;}
.y15b{bottom:220.371900px;}
.y53{bottom:220.373400px;}
.y46{bottom:220.754700px;}
.y279{bottom:231.844200px;}
.y220{bottom:232.521750px;}
.y306{bottom:232.613700px;}
.y2c3{bottom:232.636200px;}
.y210{bottom:233.831250px;}
.y178{bottom:233.832750px;}
.y18e{bottom:233.836200px;}
.y200{bottom:233.836350px;}
.y1a1{bottom:233.842350px;}
.yfc{bottom:233.863350px;}
.y1dd{bottom:233.866350px;}
.y137{bottom:233.908350px;}
.y8f{bottom:235.081200px;}
.y24a{bottom:236.209350px;}
.y15a{bottom:236.868900px;}
.y52{bottom:237.182550px;}
.y45{bottom:237.256200px;}
.y278{bottom:245.572200px;}
.y305{bottom:246.113700px;}
.y2c2{bottom:246.136200px;}
.y21f{bottom:249.288750px;}
.y249{bottom:249.709350px;}
.y20f{bottom:250.328250px;}
.y177{bottom:250.329750px;}
.y18d{bottom:250.333200px;}
.y1ff{bottom:250.333350px;}
.y1a0{bottom:250.339350px;}
.yfb{bottom:250.360350px;}
.y1dc{bottom:250.363350px;}
.y136{bottom:250.405350px;}
.y159{bottom:253.365900px;}
.y44{bottom:253.757700px;}
.y51{bottom:254.003550px;}
.y8e{bottom:255.522450px;}
.y277{bottom:259.300200px;}
.y304{bottom:259.613700px;}
.y2c1{bottom:259.636200px;}
.y248{bottom:263.209350px;}
.y20{bottom:264.176250px;}
.y21e{bottom:266.055750px;}
.y20e{bottom:266.825250px;}
.y176{bottom:266.829750px;}
.y18c{bottom:266.830200px;}
.y1fe{bottom:266.830350px;}
.y19f{bottom:266.836350px;}
.yfa{bottom:266.857350px;}
.y1db{bottom:266.860350px;}
.y135{bottom:266.902350px;}
.y158{bottom:269.862900px;}
.y43{bottom:270.259200px;}
.y50{bottom:270.809700px;}
.y276{bottom:273.028200px;}
.y303{bottom:273.113700px;}
.y2c0{bottom:273.136200px;}
.y8d{bottom:275.963700px;}
.y247{bottom:276.709350px;}
.y1f{bottom:277.676250px;}
.y21d{bottom:282.822750px;}
.y20d{bottom:283.322250px;}
.y18b{bottom:283.327200px;}
.y1fd{bottom:283.327350px;}
.y19e{bottom:283.333350px;}
.yf9{bottom:283.354350px;}
.y1da{bottom:283.357350px;}
.y134{bottom:283.399350px;}
.y157{bottom:286.359900px;}
.y302{bottom:286.613700px;}
.y2bf{bottom:286.636200px;}
.y275{bottom:286.756200px;}
.y42{bottom:286.760700px;}
.y4f{bottom:287.630700px;}
.y246{bottom:290.209350px;}
.y8c{bottom:296.404950px;}
.y21c{bottom:299.589750px;}
.y18a{bottom:299.824200px;}
.y1fc{bottom:299.824350px;}
.y20c{bottom:299.828100px;}
.y19d{bottom:299.830350px;}
.yf8{bottom:299.851350px;}
.y1d9{bottom:299.854350px;}
.y133{bottom:299.896350px;}
.y301{bottom:300.113700px;}
.y2be{bottom:300.136200px;}
.y274{bottom:300.484200px;}
.y156{bottom:302.856900px;}
.y41{bottom:303.262200px;}
.y245{bottom:303.709350px;}
.y4e{bottom:304.451700px;}
.y175{bottom:310.709400px;}
.y300{bottom:313.613700px;}
.y2bd{bottom:313.636200px;}
.y273{bottom:314.212200px;}
.y189{bottom:316.321200px;}
.y1fb{bottom:316.321350px;}
.y20b{bottom:316.325100px;}
.y19c{bottom:316.327350px;}
.yf7{bottom:316.348350px;}
.y1d8{bottom:316.351350px;}
.y21b{bottom:316.356750px;}
.y132{bottom:316.393350px;}
.y8b{bottom:316.846200px;}
.y244{bottom:317.209350px;}
.y155{bottom:319.353900px;}
.y40{bottom:319.763700px;}
.y2ff{bottom:327.113700px;}
.y2bc{bottom:327.136200px;}
.y174{bottom:327.206400px;}
.y272{bottom:327.940200px;}
.y243{bottom:330.709350px;}
.y188{bottom:332.818200px;}
.y1fa{bottom:332.818350px;}
.y19b{bottom:332.824350px;}
.yf6{bottom:332.845350px;}
.y1d7{bottom:332.848350px;}
.y131{bottom:332.890350px;}
.y154{bottom:335.850900px;}
.y3f{bottom:336.265200px;}
.y8a{bottom:337.287450px;}
.y2fe{bottom:340.613700px;}
.y2bb{bottom:340.636200px;}
.y271{bottom:341.668200px;}
.y173{bottom:343.703400px;}
.y242{bottom:344.209350px;}
.y187{bottom:349.315200px;}
.y1f9{bottom:349.315350px;}
.y19a{bottom:349.321350px;}
.yf5{bottom:349.342350px;}
.y1d6{bottom:349.345350px;}
.y130{bottom:349.387350px;}
.y153{bottom:352.347900px;}
.y3e{bottom:352.766700px;}
.y2fd{bottom:354.113700px;}
.y2ba{bottom:354.136200px;}
.y241{bottom:357.709350px;}
.y89{bottom:357.728700px;}
.y172{bottom:360.200400px;}
.y20a{bottom:361.334100px;}
.y270{bottom:361.396200px;}
.y240{bottom:365.809350px;}
.y186{bottom:365.812200px;}
.y1f8{bottom:365.812350px;}
.y199{bottom:365.818350px;}
.yf4{bottom:365.839350px;}
.y1d5{bottom:365.842350px;}
.y12f{bottom:365.884350px;}
.y2fc{bottom:367.613700px;}
.y2b9{bottom:367.636200px;}
.y70{bottom:367.637400px;}
.y152{bottom:368.844900px;}
.y3d{bottom:369.268200px;}
.y26f{bottom:375.124200px;}
.y171{bottom:376.697400px;}
.y209{bottom:377.831100px;}
.y88{bottom:378.169950px;}
.y2fb{bottom:381.113700px;}
.y2b8{bottom:381.136200px;}
.yf3{bottom:382.336350px;}
.y1d4{bottom:382.339350px;}
.y12e{bottom:382.381350px;}
.y6f{bottom:384.138900px;}
.y151{bottom:385.341900px;}
.y3c{bottom:385.769700px;}
.y72{bottom:387.289395px;}
.y26e{bottom:388.852200px;}
.y170{bottom:393.197400px;}
.y2fa{bottom:394.613700px;}
.y2b7{bottom:394.636200px;}
.y23f{bottom:397.366200px;}
.y87{bottom:398.611200px;}
.yf2{bottom:398.833350px;}
.y1d3{bottom:398.836350px;}
.y12d{bottom:398.878350px;}
.y6e{bottom:400.640400px;}
.y150{bottom:401.838900px;}
.y3b{bottom:402.271200px;}
.y26d{bottom:402.580200px;}
.y185{bottom:406.717200px;}
.y2f9{bottom:408.113700px;}
.y2b6{bottom:408.136200px;}
.y23e{bottom:413.863200px;}
.yf1{bottom:415.330350px;}
.y1d2{bottom:415.333350px;}
.y12c{bottom:415.375350px;}
.y26c{bottom:416.308200px;}
.y6d{bottom:417.141900px;}
.y14f{bottom:418.335900px;}
.y3a{bottom:418.772700px;}
.y86{bottom:419.052450px;}
.y2f8{bottom:421.613700px;}
.y2b5{bottom:421.636200px;}
.y184{bottom:423.214200px;}
.y26b{bottom:430.036200px;}
.y23d{bottom:430.360200px;}
.yf0{bottom:431.827350px;}
.y1d1{bottom:431.830350px;}
.y12b{bottom:431.872350px;}
.y6c{bottom:433.643400px;}
.y14e{bottom:434.832900px;}
.y2f7{bottom:435.113700px;}
.y2b4{bottom:435.136200px;}
.y39{bottom:435.274200px;}
.y16f{bottom:437.100900px;}
.y85{bottom:439.493700px;}
.y183{bottom:439.711200px;}
.y26a{bottom:443.764200px;}
.y23c{bottom:446.857200px;}
.y1f7{bottom:448.324350px;}
.y1d0{bottom:448.327350px;}
.yef{bottom:448.348350px;}
.y12a{bottom:448.369350px;}
.y2f6{bottom:448.613700px;}
.y2b3{bottom:448.636200px;}
.y6b{bottom:450.144900px;}
.y14d{bottom:451.329900px;}
.y38{bottom:451.775700px;}
.y16e{bottom:453.597900px;}
.y269{bottom:457.492200px;}
.y84{bottom:459.934950px;}
.y2f5{bottom:462.113700px;}
.y2b2{bottom:462.136200px;}
.y23b{bottom:463.354200px;}
.y1f6{bottom:464.821350px;}
.y1cf{bottom:464.824350px;}
.yee{bottom:464.845350px;}
.y129{bottom:464.866350px;}
.y6a{bottom:466.646400px;}
.y14c{bottom:467.826900px;}
.y37{bottom:468.277200px;}
.y16d{bottom:470.094900px;}
.y268{bottom:471.220200px;}
.y2f4{bottom:475.613700px;}
.y2b1{bottom:475.636200px;}
.y23a{bottom:479.851200px;}
.y81{bottom:479.993700px;}
.y1f5{bottom:481.318350px;}
.y1ce{bottom:481.321350px;}
.yed{bottom:481.342350px;}
.y128{bottom:481.363350px;}
.y69{bottom:483.146400px;}
.y14b{bottom:484.323900px;}
.y36{bottom:484.778700px;}
.y267{bottom:484.948200px;}
.y16c{bottom:486.591900px;}
.y2f3{bottom:489.113700px;}
.y2b0{bottom:489.136200px;}
.y239{bottom:496.348200px;}
.y1f4{bottom:497.815350px;}
.y1cd{bottom:497.818350px;}
.yec{bottom:497.839350px;}
.y127{bottom:497.860350px;}
.y266{bottom:498.676200px;}
.y82{bottom:500.434950px;}
.y14a{bottom:500.820900px;}
.y35{bottom:501.280200px;}
.y2f2{bottom:502.613700px;}
.y2af{bottom:502.636200px;}
.y16b{bottom:503.088900px;}
.y68{bottom:510.141900px;}
.y265{bottom:512.404200px;}
.y238{bottom:512.845200px;}
.y83{bottom:513.934950px;}
.y1f3{bottom:514.312350px;}
.y1cc{bottom:514.315350px;}
.yeb{bottom:514.336350px;}
.y126{bottom:514.357350px;}
.y2f1{bottom:516.113700px;}
.y2ae{bottom:516.136200px;}
.y149{bottom:517.317900px;}
.y34{bottom:517.781700px;}
.y16a{bottom:519.585900px;}
.y67{bottom:526.643400px;}
.y237{bottom:529.342200px;}
.y2f0{bottom:529.613700px;}
.y2ad{bottom:529.636200px;}
.y1cb{bottom:530.812350px;}
.yea{bottom:530.833350px;}
.y125{bottom:530.854350px;}
.y1f2{bottom:530.855850px;}
.y264{bottom:532.132200px;}
.y148{bottom:533.814900px;}
.y33{bottom:534.283200px;}
.y80{bottom:534.746700px;}
.y169{bottom:536.082900px;}
.y2ef{bottom:543.113700px;}
.y2ac{bottom:543.136200px;}
.y66{bottom:543.144900px;}
.y236{bottom:545.839200px;}
.y263{bottom:545.860200px;}
.y1ca{bottom:547.324350px;}
.ye9{bottom:547.330350px;}
.y124{bottom:547.351350px;}
.y1f1{bottom:547.352850px;}
.y147{bottom:550.314900px;}
.y32{bottom:550.784700px;}
.y7f{bottom:551.243700px;}
.y168{bottom:552.579900px;}
.y1e{bottom:553.988700px;}
.y2ee{bottom:556.613700px;}
.y2ab{bottom:556.636200px;}
.y262{bottom:559.588200px;}
.y65{bottom:559.646400px;}
.y235{bottom:562.336200px;}
.y1c9{bottom:563.821350px;}
.ye8{bottom:563.827350px;}
.y123{bottom:563.848350px;}
.y1f0{bottom:563.849850px;}
.y31{bottom:567.286200px;}
.y1d{bottom:567.488700px;}
.y167{bottom:569.076900px;}
.y2ed{bottom:570.113700px;}
.y2aa{bottom:570.136200px;}
.y64{bottom:576.146400px;}
.y234{bottom:578.833200px;}
.y1c8{bottom:580.318350px;}
.ye7{bottom:580.336350px;}
.y122{bottom:580.345350px;}
.y1ef{bottom:580.346850px;}
.y1c{bottom:580.988700px;}
.y2ec{bottom:583.613700px;}
.y2a9{bottom:583.636200px;}
.y30{bottom:583.787700px;}
.y166{bottom:585.573900px;}
.y146{bottom:585.576600px;}
.y1b{bottom:594.488700px;}
.y233{bottom:595.330200px;}
.y261{bottom:596.716200px;}
.y1c7{bottom:596.815350px;}
.ye6{bottom:596.833350px;}
.y121{bottom:596.842350px;}
.y1ee{bottom:596.843850px;}
.y2eb{bottom:597.113700px;}
.y2a8{bottom:597.136200px;}
.yaa{bottom:598.597350px;}
.yc9{bottom:598.837350px;}
.y2f{bottom:600.289200px;}
.y165{bottom:602.070900px;}
.y145{bottom:602.073600px;}
.y63{bottom:603.140400px;}
.y260{bottom:605.038200px;}
.y1a{bottom:607.988700px;}
.y2ea{bottom:610.613700px;}
.y2a7{bottom:610.636200px;}
.y232{bottom:611.827200px;}
.y1c6{bottom:613.312350px;}
.ye5{bottom:613.330350px;}
.y120{bottom:613.339350px;}
.y1ed{bottom:613.340850px;}
.ya9{bottom:615.130350px;}
.yc8{bottom:615.820350px;}
.y2e{bottom:616.790700px;}
.y164{bottom:618.567900px;}
.y144{bottom:618.570600px;}
.y62{bottom:619.641900px;}
.y2e9{bottom:624.113700px;}
.y2a6{bottom:624.136200px;}
.y25f{bottom:624.166200px;}
.y231{bottom:628.324200px;}
.y1c5{bottom:629.809350px;}
.ye4{bottom:629.827350px;}
.y11f{bottom:629.836350px;}
.y1ec{bottom:629.837850px;}
.ya8{bottom:631.627350px;}
.y25e{bottom:632.488200px;}
.yc7{bottom:632.803350px;}
.y2d{bottom:633.292200px;}
.y19{bottom:634.988700px;}
.y61{bottom:636.143400px;}
.y2e8{bottom:637.613700px;}
.y2a5{bottom:637.636200px;}
.y230{bottom:644.821200px;}
.ye3{bottom:646.324350px;}
.y1c4{bottom:646.327350px;}
.y11e{bottom:646.333350px;}
.y1eb{bottom:646.334850px;}
.ya7{bottom:648.124350px;}
.y18{bottom:648.488700px;}
.yc6{bottom:649.786350px;}
.y2c{bottom:649.793700px;}
.y2e7{bottom:651.113700px;}
.y2a4{bottom:651.136200px;}
.y25d{bottom:651.616200px;}
.y60{bottom:652.644900px;}
.y25c{bottom:659.938200px;}
.y22f{bottom:661.318200px;}
.y17{bottom:661.988700px;}
.ye2{bottom:662.824350px;}
.y11d{bottom:662.830350px;}
.y1ea{bottom:662.831850px;}
.y2e6{bottom:664.613700px;}
.ya6{bottom:664.621350px;}
.y2a3{bottom:664.636200px;}
.y2b{bottom:666.295200px;}
.yc5{bottom:666.769350px;}
.y143{bottom:667.764600px;}
.y5f{bottom:669.146400px;}
.y16{bottom:675.488700px;}
.y22e{bottom:677.815200px;}
.y2e5{bottom:678.113700px;}
.y2a2{bottom:678.136200px;}
.y25b{bottom:679.066200px;}
.y1c3{bottom:679.321350px;}
.y11c{bottom:679.327350px;}
.y1e9{bottom:679.328850px;}
.ya5{bottom:681.118350px;}
.y2a{bottom:682.796700px;}
.yc4{bottom:683.752350px;}
.y142{bottom:684.261600px;}
.y5e{bottom:685.646400px;}
.y25a{bottom:687.388200px;}
.y15{bottom:688.988700px;}
.y2e4{bottom:691.613700px;}
.y2a1{bottom:691.636200px;}
.y22d{bottom:694.312200px;}
.y1c2{bottom:695.818350px;}
.y11b{bottom:695.824350px;}
.y1e8{bottom:695.825850px;}
.ya4{bottom:697.615350px;}
.y29{bottom:699.298200px;}
.yc3{bottom:700.735350px;}
.ye1{bottom:703.717350px;}
.y2e3{bottom:705.113700px;}
.y2a0{bottom:705.136200px;}
.y259{bottom:706.516200px;}
.y22c{bottom:710.809200px;}
.y1c1{bottom:712.315350px;}
.y1e7{bottom:712.322850px;}
.y11a{bottom:712.324350px;}
.ya3{bottom:714.112350px;}
.y258{bottom:714.838200px;}
.y28{bottom:715.799700px;}
.yc2{bottom:717.718350px;}
.y2e2{bottom:718.613700px;}
.y29f{bottom:718.636200px;}
.ye0{bottom:720.214350px;}
.y14{bottom:720.488700px;}
.y5d{bottom:721.238850px;}
.y22b{bottom:727.306200px;}
.y1c0{bottom:728.812350px;}
.y1e6{bottom:728.819850px;}
.ya2{bottom:730.609350px;}
.y2e1{bottom:732.113700px;}
.y29e{bottom:732.136200px;}
.y27{bottom:732.301200px;}
.y257{bottom:733.966200px;}
.y13{bottom:733.988700px;}
.yc1{bottom:734.701350px;}
.ydf{bottom:736.711350px;}
.y1bf{bottom:745.309350px;}
.y1e5{bottom:745.316850px;}
.y2e0{bottom:745.613700px;}
.y29d{bottom:745.636200px;}
.ya1{bottom:747.106350px;}
.yc0{bottom:751.684350px;}
.yde{bottom:753.208350px;}
.y119{bottom:753.568350px;}
.y2df{bottom:759.113700px;}
.y29c{bottom:759.136200px;}
.ya0{bottom:763.603350px;}
.ybf{bottom:768.667350px;}
.ydd{bottom:769.705350px;}
.y118{bottom:770.065350px;}
.y2de{bottom:772.613700px;}
.y29b{bottom:772.636200px;}
.yd{bottom:773.548200px;}
.y22a{bottom:777.094200px;}
.y9f{bottom:780.100350px;}
.y1be{bottom:784.381200px;}
.ybe{bottom:785.650350px;}
.y2dd{bottom:786.113700px;}
.y29a{bottom:786.136200px;}
.ydc{bottom:786.202350px;}
.y117{bottom:786.562350px;}
.y229{bottom:793.591200px;}
.yc{bottom:796.048200px;}
.y9e{bottom:796.597350px;}
.y1bd{bottom:798.634950px;}
.y2dc{bottom:799.613700px;}
.y299{bottom:799.636200px;}
.ybd{bottom:802.633350px;}
.ydb{bottom:802.699350px;}
.y116{bottom:803.086350px;}
.y1bc{bottom:812.888700px;}
.y9d{bottom:813.094350px;}
.y2db{bottom:813.113700px;}
.y298{bottom:813.136200px;}
.yb{bottom:818.548200px;}
.yda{bottom:819.196350px;}
.y115{bottom:819.583350px;}
.ybc{bottom:819.616350px;}
.y2da{bottom:826.613700px;}
.y297{bottom:826.636200px;}
.y1bb{bottom:827.142450px;}
.y9c{bottom:829.597350px;}
.yd9{bottom:835.693350px;}
.y114{bottom:836.080350px;}
.ybb{bottom:836.599350px;}
.y2d9{bottom:840.113700px;}
.y296{bottom:840.136200px;}
.ya{bottom:841.048200px;}
.y1ba{bottom:841.396200px;}
.y9b{bottom:846.094350px;}
.yd8{bottom:852.190350px;}
.y113{bottom:852.577350px;}
.yba{bottom:853.582350px;}
.y2d8{bottom:853.613700px;}
.y295{bottom:853.636200px;}
.y1b9{bottom:858.833700px;}
.y9{bottom:863.548200px;}
.y2d7{bottom:867.113700px;}
.y294{bottom:867.136200px;}
.yd7{bottom:868.687350px;}
.y112{bottom:869.074350px;}
.yb9{bottom:870.565350px;}
.y1b8{bottom:879.274950px;}
.y2d6{bottom:880.613700px;}
.y293{bottom:880.636200px;}
.yd6{bottom:885.199350px;}
.y111{bottom:885.571350px;}
.y8{bottom:886.048200px;}
.yb8{bottom:887.548350px;}
.y7e{bottom:891.649950px;}
.y2d5{bottom:894.113700px;}
.y292{bottom:894.136200px;}
.y1b7{bottom:899.716200px;}
.yd5{bottom:901.696350px;}
.y110{bottom:902.068350px;}
.yb7{bottom:904.531350px;}
.y7d{bottom:905.903700px;}
.y2d4{bottom:907.613700px;}
.y291{bottom:907.636200px;}
.y7{bottom:908.548200px;}
.yd4{bottom:918.193350px;}
.y10f{bottom:918.565350px;}
.y1b6{bottom:920.157450px;}
.y2d3{bottom:921.113700px;}
.yb6{bottom:921.514350px;}
.y7c{bottom:926.344950px;}
.y6{bottom:931.048200px;}
.y2d2{bottom:934.613700px;}
.yd3{bottom:934.690350px;}
.y10e{bottom:935.062350px;}
.yb5{bottom:938.470350px;}
.y7b{bottom:940.598700px;}
.y290{bottom:943.051200px;}
.y2d1{bottom:948.113700px;}
.yd2{bottom:951.187350px;}
.y10d{bottom:951.559350px;}
.y5{bottom:953.551200px;}
.yb4{bottom:955.453350px;}
.y28f{bottom:956.551200px;}
.y7a{bottom:961.039950px;}
.y2d0{bottom:961.613700px;}
.yd1{bottom:967.684350px;}
.y10c{bottom:968.059350px;}
.y28e{bottom:970.051200px;}
.yb3{bottom:972.436350px;}
.y2cf{bottom:975.113700px;}
.y79{bottom:981.481200px;}
.y28d{bottom:983.551200px;}
.yd0{bottom:984.177600px;}
.y2ce{bottom:988.613700px;}
.yb2{bottom:989.419350px;}
.y4{bottom:992.551200px;}
.y28c{bottom:997.051200px;}
.ycf{bottom:1001.434350px;}
.y78{bottom:1001.922450px;}
.y2cd{bottom:1002.113700px;}
.yb1{bottom:1006.402350px;}
.y10b{bottom:1009.306350px;}
.y28b{bottom:1010.551200px;}
.y2cc{bottom:1015.613700px;}
.y77{bottom:1022.363700px;}
.yb0{bottom:1023.385350px;}
.y10a{bottom:1025.803350px;}
.y3{bottom:1028.551200px;}
.y2cb{bottom:1029.113700px;}
.y28a{bottom:1030.051200px;}
.yaf{bottom:1040.368350px;}
.y109{bottom:1042.300350px;}
.yce{bottom:1042.306350px;}
.y2ca{bottom:1042.613700px;}
.y76{bottom:1042.804950px;}
.y289{bottom:1049.551200px;}
.y2c9{bottom:1056.113700px;}
.yae{bottom:1057.351350px;}
.y108{bottom:1058.797350px;}
.ycd{bottom:1058.803350px;}
.y75{bottom:1062.863700px;}
.y2{bottom:1064.551200px;}
.y288{bottom:1069.051200px;}
.y2c8{bottom:1069.613700px;}
.yad{bottom:1074.334350px;}
.ycc{bottom:1075.300350px;}
.y287{bottom:1082.551200px;}
.y2c7{bottom:1083.113700px;}
.y74{bottom:1083.679200px;}
.yac{bottom:1091.320350px;}
.ycb{bottom:1091.797350px;}
.y286{bottom:1096.051200px;}
.y2c6{bottom:1096.613700px;}
.y73{bottom:1100.176200px;}
.y1{bottom:1105.051200px;}
.yca{bottom:1108.294350px;}
.yab{bottom:1108.303350px;}
.y107{bottom:1108.309350px;}
.y285{bottom:1109.551200px;}
.y2c5{bottom:1110.113700px;}
.ye{bottom:1140.863550px;}
.h22{height:24.249888px;}
.h11{height:34.290000px;}
.h8{height:36.576000px;}
.ha{height:40.869141px;}
.h10{height:41.148000px;}
.h9{height:43.434000px;}
.he{height:45.720000px;}
.h7{height:50.292000px;}
.h1f{height:51.084240px;}
.h1c{height:51.156240px;}
.h19{height:51.168240px;}
.h20{height:51.210240px;}
.h13{height:51.252240px;}
.h1a{height:51.288240px;}
.h1b{height:51.288840px;}
.h18{height:51.300240px;}
.h1e{height:51.324240px;}
.h16{height:51.336240px;}
.h17{height:51.348240px;}
.h21{height:51.360840px;}
.h14{height:51.372240px;}
.h1d{height:51.378840px;}
.h12{height:51.384240px;}
.hc{height:51.443640px;}
.hb{height:51.455640px;}
.h15{height:51.492240px;}
.hd{height:51.636240px;}
.h2{height:54.864000px;}
.hf{height:56.320312px;}
.h6{height:59.436000px;}
.h4{height:74.506068px;}
.h5{height:74.518068px;}
.h3{height:91.440000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.000000px;}
.x3{left:68.250000px;}
.x5{left:73.025100px;}
.x10{left:76.500000px;}
.x14{left:81.900000px;}
.xd{left:106.293000px;}
.x1{left:218.508750px;}
.xc{left:271.500000px;}
.xe{left:424.915500px;}
.x11{left:460.038900px;}
.x12{left:473.532450px;}
.x15{left:478.935000px;}
.xf{left:501.415500px;}
.x6{left:533.585250px;}
.x7{left:544.086000px;}
.x8{left:555.963000px;}
.x9{left:562.086000px;}
.x2{left:625.226550px;}
.xa{left:794.633550px;}
.x13{left:812.633550px;}
.xb{left:867.000000px;}
@media print{
.v3{vertical-align:-21.600000pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.652800pt;}
.v1{vertical-align:31.200000pt;}
.ls8{letter-spacing:-1.800000pt;}
.ls6{letter-spacing:-1.578667pt;}
.lse{letter-spacing:-1.480000pt;}
.ls7{letter-spacing:-1.114667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004523pt;}
.ls3{letter-spacing:0.005056pt;}
.lsa{letter-spacing:0.573150pt;}
.lsd{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.864480pt;}
.ls2{letter-spacing:1.266160pt;}
.ls0{letter-spacing:3.285333pt;}
.ls1{letter-spacing:15.288533pt;}
.ls4{letter-spacing:21.770667pt;}
.ws3{word-spacing:-14.439493pt;}
.ws5{word-spacing:-13.344000pt;}
.wsea{word-spacing:-13.173333pt;}
.ws6{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.058667pt;}
.ws9d{word-spacing:-11.520000pt;}
.ws0{word-spacing:-11.032320pt;}
.ws21{word-spacing:-10.400000pt;}
.wsd{word-spacing:-10.240427pt;}
.ws1{word-spacing:-10.240000pt;}
.wsb5{word-spacing:-9.600400pt;}
.wseb{word-spacing:-9.600000pt;}
.ws4c{word-spacing:-9.420222pt;}
.ws4{word-spacing:-8.847072pt;}
.wse2{word-spacing:-6.789120pt;}
.ws28{word-spacing:-5.399600pt;}
.ws69{word-spacing:-5.231520pt;}
.ws81{word-spacing:-4.896480pt;}
.ws6b{word-spacing:-4.607520pt;}
.ws29{word-spacing:-4.600400pt;}
.ws95{word-spacing:-4.272000pt;}
.ws80{word-spacing:-4.080480pt;}
.wsa{word-spacing:-3.812640pt;}
.ws6c{word-spacing:-3.600000pt;}
.wsba{word-spacing:-3.552480pt;}
.ws8{word-spacing:-3.519360pt;}
.ws88{word-spacing:-3.263520pt;}
.ws99{word-spacing:-3.216000pt;}
.ws44{word-spacing:-2.880000pt;}
.ws8b{word-spacing:-2.639520pt;}
.ws7c{word-spacing:-2.592000pt;}
.ws8d{word-spacing:-2.543520pt;}
.ws6d{word-spacing:-2.496000pt;}
.wsc5{word-spacing:-2.447520pt;}
.wsc8{word-spacing:-2.400000pt;}
.wsb{word-spacing:-2.346240pt;}
.wsf1{word-spacing:-2.199600pt;}
.ws41{word-spacing:-2.112480pt;}
.wsd5{word-spacing:-2.064000pt;}
.wsac{word-spacing:-2.016480pt;}
.ws6a{word-spacing:-1.919520pt;}
.wsb6{word-spacing:-1.872000pt;}
.wsf0{word-spacing:-1.800000pt;}
.ws4b{word-spacing:-1.680000pt;}
.ws84{word-spacing:-1.584000pt;}
.wsb9{word-spacing:-1.536000pt;}
.wsed{word-spacing:-1.480000pt;}
.ws86{word-spacing:-1.295520pt;}
.wse{word-spacing:-1.266160pt;}
.ws1c{word-spacing:-1.248000pt;}
.ws35{word-spacing:-1.199520pt;}
.wscc{word-spacing:-1.152000pt;}
.ws45{word-spacing:-1.103520pt;}
.wsad{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.864480pt;}
.wsbf{word-spacing:-0.768480pt;}
.wsec{word-spacing:-0.720400pt;}
.ws62{word-spacing:-0.720000pt;}
.wsa4{word-spacing:-0.672480pt;}
.ws94{word-spacing:-0.624000pt;}
.wse0{word-spacing:-0.479520pt;}
.wscd{word-spacing:-0.432000pt;}
.wsb7{word-spacing:-0.336000pt;}
.wsc0{word-spacing:-0.288000pt;}
.ws76{word-spacing:-0.192000pt;}
.wsde{word-spacing:-0.144480pt;}
.ws56{word-spacing:-0.096000pt;}
.wsee{word-spacing:-0.080000pt;}
.ws7{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.096000pt;}
.wse4{word-spacing:0.144480pt;}
.ws5f{word-spacing:0.192000pt;}
.ws4a{word-spacing:0.288000pt;}
.ws6f{word-spacing:0.479520pt;}
.ws96{word-spacing:0.575520pt;}
.ws65{word-spacing:0.624000pt;}
.wsbc{word-spacing:0.672480pt;}
.wsf{word-spacing:0.768480pt;}
.wsc3{word-spacing:0.816000pt;}
.ws63{word-spacing:0.864480pt;}
.wsdf{word-spacing:0.960000pt;}
.wsb8{word-spacing:1.103520pt;}
.wse1{word-spacing:1.152000pt;}
.ws64{word-spacing:1.295520pt;}
.ws7e{word-spacing:1.344000pt;}
.ws5d{word-spacing:1.440000pt;}
.wsef{word-spacing:1.480000pt;}
.ws12{word-spacing:1.536000pt;}
.wsc{word-spacing:1.578667pt;}
.wsb2{word-spacing:1.584000pt;}
.ws70{word-spacing:1.728000pt;}
.wse6{word-spacing:1.823520pt;}
.wsae{word-spacing:1.872000pt;}
.wsd4{word-spacing:1.877934pt;}
.ws91{word-spacing:2.064000pt;}
.wsc9{word-spacing:2.112480pt;}
.wsa6{word-spacing:2.160000pt;}
.wsaa{word-spacing:2.208480pt;}
.ws51{word-spacing:2.304000pt;}
.ws5c{word-spacing:2.400000pt;}
.ws8f{word-spacing:2.447520pt;}
.ws9f{word-spacing:2.496000pt;}
.wsa1{word-spacing:2.784000pt;}
.wsd3{word-spacing:2.832480pt;}
.ws7a{word-spacing:2.880000pt;}
.wsa5{word-spacing:2.928000pt;}
.ws14{word-spacing:2.959632pt;}
.wsbe{word-spacing:2.976000pt;}
.ws9c{word-spacing:3.120000pt;}
.wsd7{word-spacing:3.263520pt;}
.ws3f{word-spacing:3.360480pt;}
.wsc7{word-spacing:3.456480pt;}
.ws55{word-spacing:3.504000pt;}
.wsce{word-spacing:3.552480pt;}
.ws77{word-spacing:3.600000pt;}
.ws74{word-spacing:3.744000pt;}
.ws59{word-spacing:3.936000pt;}
.ws47{word-spacing:3.983520pt;}
.ws10{word-spacing:4.032000pt;}
.ws4d{word-spacing:4.080480pt;}
.ws9a{word-spacing:4.176480pt;}
.ws98{word-spacing:4.224000pt;}
.wsa2{word-spacing:4.272000pt;}
.wsb1{word-spacing:4.295922pt;}
.ws3b{word-spacing:4.416000pt;}
.ws13{word-spacing:4.464000pt;}
.wsbb{word-spacing:4.511520pt;}
.ws18{word-spacing:4.560000pt;}
.ws1d{word-spacing:4.607520pt;}
.wsb3{word-spacing:4.656000pt;}
.wse8{word-spacing:4.704480pt;}
.ws3d{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.800480pt;}
.ws8c{word-spacing:4.848000pt;}
.ws4f{word-spacing:4.896480pt;}
.wsdd{word-spacing:5.040000pt;}
.ws39{word-spacing:5.088000pt;}
.ws17{word-spacing:5.135520pt;}
.ws2f{word-spacing:5.184000pt;}
.ws42{word-spacing:5.231520pt;}
.ws90{word-spacing:5.280000pt;}
.ws5b{word-spacing:5.376000pt;}
.ws19{word-spacing:5.424480pt;}
.ws93{word-spacing:5.472000pt;}
.ws4e{word-spacing:5.568000pt;}
.wsa3{word-spacing:5.616000pt;}
.ws87{word-spacing:5.664000pt;}
.ws2b{word-spacing:5.712000pt;}
.wsd0{word-spacing:5.760000pt;}
.wsd6{word-spacing:5.808000pt;}
.ws7d{word-spacing:5.951520pt;}
.ws85{word-spacing:6.096000pt;}
.ws83{word-spacing:6.144480pt;}
.wse9{word-spacing:6.192000pt;}
.wsc2{word-spacing:6.336000pt;}
.ws52{word-spacing:6.432000pt;}
.wsb0{word-spacing:6.479520pt;}
.ws7f{word-spacing:6.528000pt;}
.ws73{word-spacing:6.624000pt;}
.ws57{word-spacing:6.672480pt;}
.wsb4{word-spacing:6.720000pt;}
.wse7{word-spacing:6.768480pt;}
.ws8e{word-spacing:6.816000pt;}
.wsaf{word-spacing:6.864480pt;}
.ws2a{word-spacing:6.912000pt;}
.ws89{word-spacing:7.103520pt;}
.ws8a{word-spacing:7.152000pt;}
.ws3a{word-spacing:7.248000pt;}
.wsca{word-spacing:7.295520pt;}
.wsa7{word-spacing:7.392480pt;}
.ws32{word-spacing:7.440000pt;}
.ws49{word-spacing:7.584000pt;}
.wsd8{word-spacing:7.872000pt;}
.wsdc{word-spacing:7.919520pt;}
.ws46{word-spacing:8.016480pt;}
.ws1a{word-spacing:8.064000pt;}
.ws79{word-spacing:8.112480pt;}
.ws75{word-spacing:8.160000pt;}
.ws54{word-spacing:8.208480pt;}
.ws97{word-spacing:8.400000pt;}
.ws92{word-spacing:8.447520pt;}
.ws66{word-spacing:8.496000pt;}
.ws60{word-spacing:8.543520pt;}
.wsa0{word-spacing:8.639520pt;}
.ws38{word-spacing:8.784000pt;}
.wsd9{word-spacing:8.880000pt;}
.ws5e{word-spacing:8.928000pt;}
.ws11{word-spacing:9.216000pt;}
.ws40{word-spacing:9.263520pt;}
.ws71{word-spacing:9.312000pt;}
.wsc6{word-spacing:9.504000pt;}
.wse5{word-spacing:9.791520pt;}
.ws33{word-spacing:9.887520pt;}
.ws15{word-spacing:9.936000pt;}
.ws5a{word-spacing:10.080480pt;}
.ws37{word-spacing:10.224000pt;}
.wsbd{word-spacing:10.320000pt;}
.ws61{word-spacing:10.368000pt;}
.ws58{word-spacing:10.560000pt;}
.ws50{word-spacing:10.704480pt;}
.wse3{word-spacing:10.752000pt;}
.ws1b{word-spacing:11.088000pt;}
.ws20{word-spacing:11.092907pt;}
.ws31{word-spacing:11.135520pt;}
.ws78{word-spacing:11.231520pt;}
.ws2d{word-spacing:11.280000pt;}
.ws7b{word-spacing:11.472000pt;}
.wsd2{word-spacing:11.808000pt;}
.ws1e{word-spacing:11.855520pt;}
.ws9e{word-spacing:12.048480pt;}
.ws82{word-spacing:12.096000pt;}
.wsc4{word-spacing:12.479520pt;}
.ws68{word-spacing:12.575520pt;}
.wsa9{word-spacing:12.864480pt;}
.ws1f{word-spacing:13.056000pt;}
.ws9b{word-spacing:13.248000pt;}
.wscb{word-spacing:13.440000pt;}
.ws48{word-spacing:13.536000pt;}
.ws3e{word-spacing:13.632000pt;}
.ws34{word-spacing:13.872000pt;}
.wsdb{word-spacing:14.160000pt;}
.ws53{word-spacing:14.304000pt;}
.wscf{word-spacing:14.543520pt;}
.ws3c{word-spacing:14.688000pt;}
.ws72{word-spacing:15.072000pt;}
.ws2e{word-spacing:15.791520pt;}
.ws30{word-spacing:16.320000pt;}
.ws43{word-spacing:16.607520pt;}
.ws16{word-spacing:16.944000pt;}
.wsd1{word-spacing:17.472000pt;}
.wsab{word-spacing:18.384000pt;}
.wsc1{word-spacing:21.791520pt;}
.wsda{word-spacing:22.944000pt;}
.wsa8{word-spacing:27.983520pt;}
.ws36{word-spacing:32.016480pt;}
.ws26{word-spacing:59.120000pt;}
.ws24{word-spacing:61.680000pt;}
.ws23{word-spacing:68.400000pt;}
.ws22{word-spacing:78.320000pt;}
.ws25{word-spacing:97.520000pt;}
.ws27{word-spacing:1392.633067pt;}
._4b{margin-left:-2726.803733pt;}
._e{margin-left:-2531.900160pt;}
._c{margin-left:-1994.645120pt;}
._d{margin-left:-1518.142560pt;}
._b{margin-left:-52.480000pt;}
._8{margin-left:-42.640000pt;}
._5c{margin-left:-21.839520pt;}
._4e{margin-left:-14.352000pt;}
._44{margin-left:-11.424000pt;}
._14{margin-left:-9.600000pt;}
._42{margin-left:-7.612800pt;}
._6{margin-left:-6.229333pt;}
._5{margin-left:-5.336960pt;}
._2{margin-left:-3.957333pt;}
._0{margin-left:-2.880000pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.948800pt;}
._a{width:1.160000pt;}
._46{width:2.750400pt;}
._4{width:3.814293pt;}
._43{width:4.709120pt;}
._41{width:5.923200pt;}
._40{width:7.190400pt;}
._47{width:8.189760pt;}
._48{width:9.202560pt;}
._4a{width:10.165013pt;}
._7{width:11.115093pt;}
._9{width:12.312000pt;}
._45{width:14.726400pt;}
._5d{width:15.632533pt;}
._4d{width:18.088533pt;}
._49{width:19.003200pt;}
._4c{width:22.829280pt;}
._1a{width:29.080000pt;}
._13{width:30.400000pt;}
._f{width:35.877333pt;}
._16{width:38.360000pt;}
._55{width:40.000000pt;}
._3b{width:57.760000pt;}
._1f{width:62.320000pt;}
._2b{width:68.720000pt;}
._15{width:76.760000pt;}
._18{width:82.840000pt;}
._27{width:84.440000pt;}
._36{width:85.840000pt;}
._1e{width:87.480000pt;}
._23{width:88.800000pt;}
._24{width:91.080000pt;}
._29{width:93.880000pt;}
._20{width:94.800000pt;}
._19{width:96.600000pt;}
._33{width:98.480400pt;}
._2a{width:99.720000pt;}
._35{width:101.840000pt;}
._30{width:104.520000pt;}
._31{width:106.600000pt;}
._2c{width:108.080000pt;}
._3c{width:115.480000pt;}
._12{width:116.760000pt;}
._22{width:121.520000pt;}
._5a{width:134.918640pt;}
._3d{width:137.040000pt;}
._32{width:156.720000pt;}
._4f{width:160.840000pt;}
._39{width:176.960000pt;}
._1d{width:188.800000pt;}
._52{width:199.880000pt;}
._57{width:204.080800pt;}
._5b{width:210.440800pt;}
._58{width:219.959440pt;}
._56{width:223.280800pt;}
._50{width:232.240000pt;}
._25{width:247.280000pt;}
._2e{width:248.640000pt;}
._17{width:250.640000pt;}
._26{width:258.680000pt;}
._54{width:262.480000pt;}
._2d{width:270.280000pt;}
._2f{width:294.280000pt;}
._59{width:296.480000pt;}
._51{width:329.880000pt;}
._1b{width:332.800000pt;}
._10{width:350.320000pt;}
._53{width:378.720000pt;}
._1c{width:389.480000pt;}
._28{width:444.160000pt;}
._3e{width:445.640000pt;}
._3a{width:460.160000pt;}
._21{width:484.040000pt;}
._38{width:486.239600pt;}
._37{width:492.160000pt;}
._34{width:518.000000pt;}
._3f{width:594.760000pt;}
._11{width:638.600000pt;}
.fsc{font-size:28.288000pt;}
.fs9{font-size:31.824000pt;}
.fs6{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:45.968000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:38.614400pt;}
.y9a{bottom:61.121067pt;}
.y4d{bottom:61.163733pt;}
.y256{bottom:61.163867pt;}
.y1ab{bottom:61.166533pt;}
.y1b1{bottom:61.168800pt;}
.y198{bottom:61.171867pt;}
.y163{bottom:61.174133pt;}
.y1b5{bottom:61.175467pt;}
.y284{bottom:61.187733pt;}
.y106{bottom:61.187867pt;}
.y208{bottom:61.190533pt;}
.y21a{bottom:61.210000pt;}
.y182{bottom:61.211333pt;}
.y141{bottom:61.278533pt;}
.y5c{bottom:61.319467pt;}
.y228{bottom:61.388800pt;}
.y12{bottom:65.792667pt;}
.y99{bottom:73.121067pt;}
.y283{bottom:73.390400pt;}
.y4c{bottom:75.827733pt;}
.y1b0{bottom:75.832800pt;}
.y197{bottom:75.835867pt;}
.y162{bottom:75.838133pt;}
.y1b4{bottom:75.839467pt;}
.y105{bottom:75.851867pt;}
.y207{bottom:75.854533pt;}
.y219{bottom:75.874000pt;}
.y181{bottom:75.875333pt;}
.y1aa{bottom:75.883867pt;}
.y140{bottom:75.942533pt;}
.y5b{bottom:76.271467pt;}
.y227{bottom:76.292800pt;}
.y11{bottom:77.792667pt;}
.y255{bottom:77.963867pt;}
.y98{bottom:85.121067pt;}
.y254{bottom:85.163867pt;}
.y282{bottom:85.593067pt;}
.y10{bottom:89.792667pt;}
.y4b{bottom:90.447067pt;}
.y196{bottom:90.499867pt;}
.y1af{bottom:90.500667pt;}
.y161{bottom:90.502133pt;}
.y1b3{bottom:90.503467pt;}
.y104{bottom:90.515867pt;}
.y206{bottom:90.518533pt;}
.y218{bottom:90.538000pt;}
.y180{bottom:90.539333pt;}
.y1a9{bottom:90.547867pt;}
.y13f{bottom:90.606533pt;}
.y226{bottom:91.196800pt;}
.y5a{bottom:91.223467pt;}
.y97{bottom:97.121067pt;}
.y281{bottom:97.795733pt;}
.yf{bottom:101.792667pt;}
.y253{bottom:101.963867pt;}
.y160{bottom:105.162800pt;}
.y195{bottom:105.163867pt;}
.y1ae{bottom:105.164667pt;}
.y1b2{bottom:105.167467pt;}
.y103{bottom:105.179867pt;}
.y205{bottom:105.182533pt;}
.y217{bottom:105.202000pt;}
.y17f{bottom:105.203333pt;}
.y1a8{bottom:105.211867pt;}
.y1e4{bottom:105.233200pt;}
.y13e{bottom:105.270533pt;}
.y225{bottom:106.100800pt;}
.y59{bottom:106.175467pt;}
.y96{bottom:109.121067pt;}
.y280{bottom:109.998400pt;}
.y252{bottom:113.963867pt;}
.y194{bottom:119.841200pt;}
.y204{bottom:119.846533pt;}
.y216{bottom:119.866000pt;}
.y17e{bottom:119.867333pt;}
.y1a7{bottom:119.875867pt;}
.y102{bottom:119.894533pt;}
.y1e3{bottom:119.897200pt;}
.y13d{bottom:119.934533pt;}
.y15f{bottom:120.502133pt;}
.y224{bottom:121.004800pt;}
.y95{bottom:121.121067pt;}
.y58{bottom:121.127467pt;}
.y27f{bottom:122.201067pt;}
.y26{bottom:123.463333pt;}
.y251{bottom:125.963867pt;}
.y94{bottom:133.121067pt;}
.y27e{bottom:134.403733pt;}
.y193{bottom:134.505200pt;}
.y203{bottom:134.510533pt;}
.y215{bottom:134.530000pt;}
.y17d{bottom:134.531333pt;}
.y1a6{bottom:134.539867pt;}
.y101{bottom:134.558533pt;}
.y1e2{bottom:134.561200pt;}
.y13c{bottom:134.598533pt;}
.y25{bottom:135.463333pt;}
.y223{bottom:135.908800pt;}
.y57{bottom:136.079467pt;}
.y4a{bottom:137.554400pt;}
.y250{bottom:137.963867pt;}
.y1ad{bottom:140.576667pt;}
.y93{bottom:145.121067pt;}
.y27d{bottom:146.606400pt;}
.y24{bottom:147.463333pt;}
.y192{bottom:149.169200pt;}
.y202{bottom:149.174533pt;}
.y214{bottom:149.194000pt;}
.y17c{bottom:149.195333pt;}
.y1a5{bottom:149.203867pt;}
.y100{bottom:149.222533pt;}
.y1e1{bottom:149.225200pt;}
.y13b{bottom:149.262533pt;}
.y24f{bottom:149.963867pt;}
.y222{bottom:150.812800pt;}
.y56{bottom:151.031467pt;}
.y15e{bottom:151.894133pt;}
.y49{bottom:152.222400pt;}
.y1ac{bottom:155.240667pt;}
.y92{bottom:157.121067pt;}
.y23{bottom:159.463333pt;}
.y24e{bottom:161.963867pt;}
.y191{bottom:163.833200pt;}
.y201{bottom:163.838533pt;}
.y213{bottom:163.858000pt;}
.y17b{bottom:163.859333pt;}
.y1a4{bottom:163.867867pt;}
.yff{bottom:163.886533pt;}
.y1e0{bottom:163.889200pt;}
.y13a{bottom:163.926533pt;}
.y27c{bottom:164.142400pt;}
.y221{bottom:165.719467pt;}
.y55{bottom:165.983467pt;}
.y15d{bottom:166.558133pt;}
.y48{bottom:166.890400pt;}
.y22{bottom:171.463333pt;}
.y91{bottom:172.621067pt;}
.y24d{bottom:173.963867pt;}
.y27b{bottom:176.345067pt;}
.y190{bottom:178.502533pt;}
.y212{bottom:178.522000pt;}
.y17a{bottom:178.523333pt;}
.y1a3{bottom:178.531867pt;}
.yfe{bottom:178.550533pt;}
.y1df{bottom:178.553200pt;}
.y139{bottom:178.590533pt;}
.y54{bottom:180.935467pt;}
.y15c{bottom:181.222133pt;}
.y47{bottom:181.558400pt;}
.y21{bottom:183.463333pt;}
.y24c{bottom:185.963867pt;}
.y90{bottom:190.791067pt;}
.y24b{bottom:193.163867pt;}
.y18f{bottom:193.166533pt;}
.y211{bottom:193.186000pt;}
.y179{bottom:193.187333pt;}
.y1a2{bottom:193.195867pt;}
.yfd{bottom:193.214533pt;}
.y1de{bottom:193.217200pt;}
.y138{bottom:193.254533pt;}
.y27a{bottom:193.881067pt;}
.y307{bottom:194.767733pt;}
.y2c4{bottom:194.787733pt;}
.y15b{bottom:195.886133pt;}
.y53{bottom:195.887467pt;}
.y46{bottom:196.226400pt;}
.y279{bottom:206.083733pt;}
.y220{bottom:206.686000pt;}
.y306{bottom:206.767733pt;}
.y2c3{bottom:206.787733pt;}
.y210{bottom:207.850000pt;}
.y178{bottom:207.851333pt;}
.y18e{bottom:207.854400pt;}
.y200{bottom:207.854533pt;}
.y1a1{bottom:207.859867pt;}
.yfc{bottom:207.878533pt;}
.y1dd{bottom:207.881200pt;}
.y137{bottom:207.918533pt;}
.y8f{bottom:208.961067pt;}
.y24a{bottom:209.963867pt;}
.y15a{bottom:210.550133pt;}
.y52{bottom:210.828933pt;}
.y45{bottom:210.894400pt;}
.y278{bottom:218.286400pt;}
.y305{bottom:218.767733pt;}
.y2c2{bottom:218.787733pt;}
.y21f{bottom:221.590000pt;}
.y249{bottom:221.963867pt;}
.y20f{bottom:222.514000pt;}
.y177{bottom:222.515333pt;}
.y18d{bottom:222.518400pt;}
.y1ff{bottom:222.518533pt;}
.y1a0{bottom:222.523867pt;}
.yfb{bottom:222.542533pt;}
.y1dc{bottom:222.545200pt;}
.y136{bottom:222.582533pt;}
.y159{bottom:225.214133pt;}
.y44{bottom:225.562400pt;}
.y51{bottom:225.780933pt;}
.y8e{bottom:227.131067pt;}
.y277{bottom:230.489067pt;}
.y304{bottom:230.767733pt;}
.y2c1{bottom:230.787733pt;}
.y248{bottom:233.963867pt;}
.y20{bottom:234.823333pt;}
.y21e{bottom:236.494000pt;}
.y20e{bottom:237.178000pt;}
.y176{bottom:237.182000pt;}
.y18c{bottom:237.182400pt;}
.y1fe{bottom:237.182533pt;}
.y19f{bottom:237.187867pt;}
.yfa{bottom:237.206533pt;}
.y1db{bottom:237.209200pt;}
.y135{bottom:237.246533pt;}
.y158{bottom:239.878133pt;}
.y43{bottom:240.230400pt;}
.y50{bottom:240.719733pt;}
.y276{bottom:242.691733pt;}
.y303{bottom:242.767733pt;}
.y2c0{bottom:242.787733pt;}
.y8d{bottom:245.301067pt;}
.y247{bottom:245.963867pt;}
.y1f{bottom:246.823333pt;}
.y21d{bottom:251.398000pt;}
.y20d{bottom:251.842000pt;}
.y18b{bottom:251.846400pt;}
.y1fd{bottom:251.846533pt;}
.y19e{bottom:251.851867pt;}
.yf9{bottom:251.870533pt;}
.y1da{bottom:251.873200pt;}
.y134{bottom:251.910533pt;}
.y157{bottom:254.542133pt;}
.y302{bottom:254.767733pt;}
.y2bf{bottom:254.787733pt;}
.y275{bottom:254.894400pt;}
.y42{bottom:254.898400pt;}
.y4f{bottom:255.671733pt;}
.y246{bottom:257.963867pt;}
.y8c{bottom:263.471067pt;}
.y21c{bottom:266.302000pt;}
.y18a{bottom:266.510400pt;}
.y1fc{bottom:266.510533pt;}
.y20c{bottom:266.513867pt;}
.y19d{bottom:266.515867pt;}
.yf8{bottom:266.534533pt;}
.y1d9{bottom:266.537200pt;}
.y133{bottom:266.574533pt;}
.y301{bottom:266.767733pt;}
.y2be{bottom:266.787733pt;}
.y274{bottom:267.097067pt;}
.y156{bottom:269.206133pt;}
.y41{bottom:269.566400pt;}
.y245{bottom:269.963867pt;}
.y4e{bottom:270.623733pt;}
.y175{bottom:276.186133pt;}
.y300{bottom:278.767733pt;}
.y2bd{bottom:278.787733pt;}
.y273{bottom:279.299733pt;}
.y189{bottom:281.174400pt;}
.y1fb{bottom:281.174533pt;}
.y20b{bottom:281.177867pt;}
.y19c{bottom:281.179867pt;}
.yf7{bottom:281.198533pt;}
.y1d8{bottom:281.201200pt;}
.y21b{bottom:281.206000pt;}
.y132{bottom:281.238533pt;}
.y8b{bottom:281.641067pt;}
.y244{bottom:281.963867pt;}
.y155{bottom:283.870133pt;}
.y40{bottom:284.234400pt;}
.y2ff{bottom:290.767733pt;}
.y2bc{bottom:290.787733pt;}
.y174{bottom:290.850133pt;}
.y272{bottom:291.502400pt;}
.y243{bottom:293.963867pt;}
.y188{bottom:295.838400pt;}
.y1fa{bottom:295.838533pt;}
.y19b{bottom:295.843867pt;}
.yf6{bottom:295.862533pt;}
.y1d7{bottom:295.865200pt;}
.y131{bottom:295.902533pt;}
.y154{bottom:298.534133pt;}
.y3f{bottom:298.902400pt;}
.y8a{bottom:299.811067pt;}
.y2fe{bottom:302.767733pt;}
.y2bb{bottom:302.787733pt;}
.y271{bottom:303.705067pt;}
.y173{bottom:305.514133pt;}
.y242{bottom:305.963867pt;}
.y187{bottom:310.502400pt;}
.y1f9{bottom:310.502533pt;}
.y19a{bottom:310.507867pt;}
.yf5{bottom:310.526533pt;}
.y1d6{bottom:310.529200pt;}
.y130{bottom:310.566533pt;}
.y153{bottom:313.198133pt;}
.y3e{bottom:313.570400pt;}
.y2fd{bottom:314.767733pt;}
.y2ba{bottom:314.787733pt;}
.y241{bottom:317.963867pt;}
.y89{bottom:317.981067pt;}
.y172{bottom:320.178133pt;}
.y20a{bottom:321.185867pt;}
.y270{bottom:321.241067pt;}
.y240{bottom:325.163867pt;}
.y186{bottom:325.166400pt;}
.y1f8{bottom:325.166533pt;}
.y199{bottom:325.171867pt;}
.yf4{bottom:325.190533pt;}
.y1d5{bottom:325.193200pt;}
.y12f{bottom:325.230533pt;}
.y2fc{bottom:326.767733pt;}
.y2b9{bottom:326.787733pt;}
.y70{bottom:326.788800pt;}
.y152{bottom:327.862133pt;}
.y3d{bottom:328.238400pt;}
.y26f{bottom:333.443733pt;}
.y171{bottom:334.842133pt;}
.y209{bottom:335.849867pt;}
.y88{bottom:336.151067pt;}
.y2fb{bottom:338.767733pt;}
.y2b8{bottom:338.787733pt;}
.yf3{bottom:339.854533pt;}
.y1d4{bottom:339.857200pt;}
.y12e{bottom:339.894533pt;}
.y6f{bottom:341.456800pt;}
.y151{bottom:342.526133pt;}
.y3c{bottom:342.906400pt;}
.y72{bottom:344.257240pt;}
.y26e{bottom:345.646400pt;}
.y170{bottom:349.508800pt;}
.y2fa{bottom:350.767733pt;}
.y2b7{bottom:350.787733pt;}
.y23f{bottom:353.214400pt;}
.y87{bottom:354.321067pt;}
.yf2{bottom:354.518533pt;}
.y1d3{bottom:354.521200pt;}
.y12d{bottom:354.558533pt;}
.y6e{bottom:356.124800pt;}
.y150{bottom:357.190133pt;}
.y3b{bottom:357.574400pt;}
.y26d{bottom:357.849067pt;}
.y185{bottom:361.526400pt;}
.y2f9{bottom:362.767733pt;}
.y2b6{bottom:362.787733pt;}
.y23e{bottom:367.878400pt;}
.yf1{bottom:369.182533pt;}
.y1d2{bottom:369.185200pt;}
.y12c{bottom:369.222533pt;}
.y26c{bottom:370.051733pt;}
.y6d{bottom:370.792800pt;}
.y14f{bottom:371.854133pt;}
.y3a{bottom:372.242400pt;}
.y86{bottom:372.491067pt;}
.y2f8{bottom:374.767733pt;}
.y2b5{bottom:374.787733pt;}
.y184{bottom:376.190400pt;}
.y26b{bottom:382.254400pt;}
.y23d{bottom:382.542400pt;}
.yf0{bottom:383.846533pt;}
.y1d1{bottom:383.849200pt;}
.y12b{bottom:383.886533pt;}
.y6c{bottom:385.460800pt;}
.y14e{bottom:386.518133pt;}
.y2f7{bottom:386.767733pt;}
.y2b4{bottom:386.787733pt;}
.y39{bottom:386.910400pt;}
.y16f{bottom:388.534133pt;}
.y85{bottom:390.661067pt;}
.y183{bottom:390.854400pt;}
.y26a{bottom:394.457067pt;}
.y23c{bottom:397.206400pt;}
.y1f7{bottom:398.510533pt;}
.y1d0{bottom:398.513200pt;}
.yef{bottom:398.531867pt;}
.y12a{bottom:398.550533pt;}
.y2f6{bottom:398.767733pt;}
.y2b3{bottom:398.787733pt;}
.y6b{bottom:400.128800pt;}
.y14d{bottom:401.182133pt;}
.y38{bottom:401.578400pt;}
.y16e{bottom:403.198133pt;}
.y269{bottom:406.659733pt;}
.y84{bottom:408.831067pt;}
.y2f5{bottom:410.767733pt;}
.y2b2{bottom:410.787733pt;}
.y23b{bottom:411.870400pt;}
.y1f6{bottom:413.174533pt;}
.y1cf{bottom:413.177200pt;}
.yee{bottom:413.195867pt;}
.y129{bottom:413.214533pt;}
.y6a{bottom:414.796800pt;}
.y14c{bottom:415.846133pt;}
.y37{bottom:416.246400pt;}
.y16d{bottom:417.862133pt;}
.y268{bottom:418.862400pt;}
.y2f4{bottom:422.767733pt;}
.y2b1{bottom:422.787733pt;}
.y23a{bottom:426.534400pt;}
.y81{bottom:426.661067pt;}
.y1f5{bottom:427.838533pt;}
.y1ce{bottom:427.841200pt;}
.yed{bottom:427.859867pt;}
.y128{bottom:427.878533pt;}
.y69{bottom:429.463467pt;}
.y14b{bottom:430.510133pt;}
.y36{bottom:430.914400pt;}
.y267{bottom:431.065067pt;}
.y16c{bottom:432.526133pt;}
.y2f3{bottom:434.767733pt;}
.y2b0{bottom:434.787733pt;}
.y239{bottom:441.198400pt;}
.y1f4{bottom:442.502533pt;}
.y1cd{bottom:442.505200pt;}
.yec{bottom:442.523867pt;}
.y127{bottom:442.542533pt;}
.y266{bottom:443.267733pt;}
.y82{bottom:444.831067pt;}
.y14a{bottom:445.174133pt;}
.y35{bottom:445.582400pt;}
.y2f2{bottom:446.767733pt;}
.y2af{bottom:446.787733pt;}
.y16b{bottom:447.190133pt;}
.y68{bottom:453.459467pt;}
.y265{bottom:455.470400pt;}
.y238{bottom:455.862400pt;}
.y83{bottom:456.831067pt;}
.y1f3{bottom:457.166533pt;}
.y1cc{bottom:457.169200pt;}
.yeb{bottom:457.187867pt;}
.y126{bottom:457.206533pt;}
.y2f1{bottom:458.767733pt;}
.y2ae{bottom:458.787733pt;}
.y149{bottom:459.838133pt;}
.y34{bottom:460.250400pt;}
.y16a{bottom:461.854133pt;}
.y67{bottom:468.127467pt;}
.y237{bottom:470.526400pt;}
.y2f0{bottom:470.767733pt;}
.y2ad{bottom:470.787733pt;}
.y1cb{bottom:471.833200pt;}
.yea{bottom:471.851867pt;}
.y125{bottom:471.870533pt;}
.y1f2{bottom:471.871867pt;}
.y264{bottom:473.006400pt;}
.y148{bottom:474.502133pt;}
.y33{bottom:474.918400pt;}
.y80{bottom:475.330400pt;}
.y169{bottom:476.518133pt;}
.y2ef{bottom:482.767733pt;}
.y2ac{bottom:482.787733pt;}
.y66{bottom:482.795467pt;}
.y236{bottom:485.190400pt;}
.y263{bottom:485.209067pt;}
.y1ca{bottom:486.510533pt;}
.ye9{bottom:486.515867pt;}
.y124{bottom:486.534533pt;}
.y1f1{bottom:486.535867pt;}
.y147{bottom:489.168800pt;}
.y32{bottom:489.586400pt;}
.y7f{bottom:489.994400pt;}
.y168{bottom:491.182133pt;}
.y1e{bottom:492.434400pt;}
.y2ee{bottom:494.767733pt;}
.y2ab{bottom:494.787733pt;}
.y262{bottom:497.411733pt;}
.y65{bottom:497.463467pt;}
.y235{bottom:499.854400pt;}
.y1c9{bottom:501.174533pt;}
.ye8{bottom:501.179867pt;}
.y123{bottom:501.198533pt;}
.y1f0{bottom:501.199867pt;}
.y31{bottom:504.254400pt;}
.y1d{bottom:504.434400pt;}
.y167{bottom:505.846133pt;}
.y2ed{bottom:506.767733pt;}
.y2aa{bottom:506.787733pt;}
.y64{bottom:512.130133pt;}
.y234{bottom:514.518400pt;}
.y1c8{bottom:515.838533pt;}
.ye7{bottom:515.854533pt;}
.y122{bottom:515.862533pt;}
.y1ef{bottom:515.863867pt;}
.y1c{bottom:516.434400pt;}
.y2ec{bottom:518.767733pt;}
.y2a9{bottom:518.787733pt;}
.y30{bottom:518.922400pt;}
.y166{bottom:520.510133pt;}
.y146{bottom:520.512533pt;}
.y1b{bottom:528.434400pt;}
.y233{bottom:529.182400pt;}
.y261{bottom:530.414400pt;}
.y1c7{bottom:530.502533pt;}
.ye6{bottom:530.518533pt;}
.y121{bottom:530.526533pt;}
.y1ee{bottom:530.527867pt;}
.y2eb{bottom:530.767733pt;}
.y2a8{bottom:530.787733pt;}
.yaa{bottom:532.086533pt;}
.yc9{bottom:532.299867pt;}
.y2f{bottom:533.590400pt;}
.y165{bottom:535.174133pt;}
.y145{bottom:535.176533pt;}
.y63{bottom:536.124800pt;}
.y260{bottom:537.811733pt;}
.y1a{bottom:540.434400pt;}
.y2ea{bottom:542.767733pt;}
.y2a7{bottom:542.787733pt;}
.y232{bottom:543.846400pt;}
.y1c6{bottom:545.166533pt;}
.ye5{bottom:545.182533pt;}
.y120{bottom:545.190533pt;}
.y1ed{bottom:545.191867pt;}
.ya9{bottom:546.782533pt;}
.yc8{bottom:547.395867pt;}
.y2e{bottom:548.258400pt;}
.y164{bottom:549.838133pt;}
.y144{bottom:549.840533pt;}
.y62{bottom:550.792800pt;}
.y2e9{bottom:554.767733pt;}
.y2a6{bottom:554.787733pt;}
.y25f{bottom:554.814400pt;}
.y231{bottom:558.510400pt;}
.y1c5{bottom:559.830533pt;}
.ye4{bottom:559.846533pt;}
.y11f{bottom:559.854533pt;}
.y1ec{bottom:559.855867pt;}
.ya8{bottom:561.446533pt;}
.y25e{bottom:562.211733pt;}
.yc7{bottom:562.491867pt;}
.y2d{bottom:562.926400pt;}
.y19{bottom:564.434400pt;}
.y61{bottom:565.460800pt;}
.y2e8{bottom:566.767733pt;}
.y2a5{bottom:566.787733pt;}
.y230{bottom:573.174400pt;}
.ye3{bottom:574.510533pt;}
.y1c4{bottom:574.513200pt;}
.y11e{bottom:574.518533pt;}
.y1eb{bottom:574.519867pt;}
.ya7{bottom:576.110533pt;}
.y18{bottom:576.434400pt;}
.yc6{bottom:577.587867pt;}
.y2c{bottom:577.594400pt;}
.y2e7{bottom:578.767733pt;}
.y2a4{bottom:578.787733pt;}
.y25d{bottom:579.214400pt;}
.y60{bottom:580.128800pt;}
.y25c{bottom:586.611733pt;}
.y22f{bottom:587.838400pt;}
.y17{bottom:588.434400pt;}
.ye2{bottom:589.177200pt;}
.y11d{bottom:589.182533pt;}
.y1ea{bottom:589.183867pt;}
.y2e6{bottom:590.767733pt;}
.ya6{bottom:590.774533pt;}
.y2a3{bottom:590.787733pt;}
.y2b{bottom:592.262400pt;}
.yc5{bottom:592.683867pt;}
.y143{bottom:593.568533pt;}
.y5f{bottom:594.796800pt;}
.y16{bottom:600.434400pt;}
.y22e{bottom:602.502400pt;}
.y2e5{bottom:602.767733pt;}
.y2a2{bottom:602.787733pt;}
.y25b{bottom:603.614400pt;}
.y1c3{bottom:603.841200pt;}
.y11c{bottom:603.846533pt;}
.y1e9{bottom:603.847867pt;}
.ya5{bottom:605.438533pt;}
.y2a{bottom:606.930400pt;}
.yc4{bottom:607.779867pt;}
.y142{bottom:608.232533pt;}
.y5e{bottom:609.463467pt;}
.y25a{bottom:611.011733pt;}
.y15{bottom:612.434400pt;}
.y2e4{bottom:614.767733pt;}
.y2a1{bottom:614.787733pt;}
.y22d{bottom:617.166400pt;}
.y1c2{bottom:618.505200pt;}
.y11b{bottom:618.510533pt;}
.y1e8{bottom:618.511867pt;}
.ya4{bottom:620.102533pt;}
.y29{bottom:621.598400pt;}
.yc3{bottom:622.875867pt;}
.ye1{bottom:625.526533pt;}
.y2e3{bottom:626.767733pt;}
.y2a0{bottom:626.787733pt;}
.y259{bottom:628.014400pt;}
.y22c{bottom:631.830400pt;}
.y1c1{bottom:633.169200pt;}
.y1e7{bottom:633.175867pt;}
.y11a{bottom:633.177200pt;}
.ya3{bottom:634.766533pt;}
.y258{bottom:635.411733pt;}
.y28{bottom:636.266400pt;}
.yc2{bottom:637.971867pt;}
.y2e2{bottom:638.767733pt;}
.y29f{bottom:638.787733pt;}
.ye0{bottom:640.190533pt;}
.y14{bottom:640.434400pt;}
.y5d{bottom:641.101200pt;}
.y22b{bottom:646.494400pt;}
.y1c0{bottom:647.833200pt;}
.y1e6{bottom:647.839867pt;}
.ya2{bottom:649.430533pt;}
.y2e1{bottom:650.767733pt;}
.y29e{bottom:650.787733pt;}
.y27{bottom:650.934400pt;}
.y257{bottom:652.414400pt;}
.y13{bottom:652.434400pt;}
.yc1{bottom:653.067867pt;}
.ydf{bottom:654.854533pt;}
.y1bf{bottom:662.497200pt;}
.y1e5{bottom:662.503867pt;}
.y2e0{bottom:662.767733pt;}
.y29d{bottom:662.787733pt;}
.ya1{bottom:664.094533pt;}
.yc0{bottom:668.163867pt;}
.yde{bottom:669.518533pt;}
.y119{bottom:669.838533pt;}
.y2df{bottom:674.767733pt;}
.y29c{bottom:674.787733pt;}
.ya0{bottom:678.758533pt;}
.ybf{bottom:683.259867pt;}
.ydd{bottom:684.182533pt;}
.y118{bottom:684.502533pt;}
.y2de{bottom:686.767733pt;}
.y29b{bottom:686.787733pt;}
.yd{bottom:687.598400pt;}
.y22a{bottom:690.750400pt;}
.y9f{bottom:693.422533pt;}
.y1be{bottom:697.227733pt;}
.ybe{bottom:698.355867pt;}
.y2dd{bottom:698.767733pt;}
.y29a{bottom:698.787733pt;}
.ydc{bottom:698.846533pt;}
.y117{bottom:699.166533pt;}
.y229{bottom:705.414400pt;}
.yc{bottom:707.598400pt;}
.y9e{bottom:708.086533pt;}
.y1bd{bottom:709.897733pt;}
.y2dc{bottom:710.767733pt;}
.y299{bottom:710.787733pt;}
.ybd{bottom:713.451867pt;}
.ydb{bottom:713.510533pt;}
.y116{bottom:713.854533pt;}
.y1bc{bottom:722.567733pt;}
.y9d{bottom:722.750533pt;}
.y2db{bottom:722.767733pt;}
.y298{bottom:722.787733pt;}
.yb{bottom:727.598400pt;}
.yda{bottom:728.174533pt;}
.y115{bottom:728.518533pt;}
.ybc{bottom:728.547867pt;}
.y2da{bottom:734.767733pt;}
.y297{bottom:734.787733pt;}
.y1bb{bottom:735.237733pt;}
.y9c{bottom:737.419867pt;}
.yd9{bottom:742.838533pt;}
.y114{bottom:743.182533pt;}
.ybb{bottom:743.643867pt;}
.y2d9{bottom:746.767733pt;}
.y296{bottom:746.787733pt;}
.ya{bottom:747.598400pt;}
.y1ba{bottom:747.907733pt;}
.y9b{bottom:752.083867pt;}
.yd8{bottom:757.502533pt;}
.y113{bottom:757.846533pt;}
.yba{bottom:758.739867pt;}
.y2d8{bottom:758.767733pt;}
.y295{bottom:758.787733pt;}
.y1b9{bottom:763.407733pt;}
.y9{bottom:767.598400pt;}
.y2d7{bottom:770.767733pt;}
.y294{bottom:770.787733pt;}
.yd7{bottom:772.166533pt;}
.y112{bottom:772.510533pt;}
.yb9{bottom:773.835867pt;}
.y1b8{bottom:781.577733pt;}
.y2d6{bottom:782.767733pt;}
.y293{bottom:782.787733pt;}
.yd6{bottom:786.843867pt;}
.y111{bottom:787.174533pt;}
.y8{bottom:787.598400pt;}
.yb8{bottom:788.931867pt;}
.y7e{bottom:792.577733pt;}
.y2d5{bottom:794.767733pt;}
.y292{bottom:794.787733pt;}
.y1b7{bottom:799.747733pt;}
.yd5{bottom:801.507867pt;}
.y110{bottom:801.838533pt;}
.yb7{bottom:804.027867pt;}
.y7d{bottom:805.247733pt;}
.y2d4{bottom:806.767733pt;}
.y291{bottom:806.787733pt;}
.y7{bottom:807.598400pt;}
.yd4{bottom:816.171867pt;}
.y10f{bottom:816.502533pt;}
.y1b6{bottom:817.917733pt;}
.y2d3{bottom:818.767733pt;}
.yb6{bottom:819.123867pt;}
.y7c{bottom:823.417733pt;}
.y6{bottom:827.598400pt;}
.y2d2{bottom:830.767733pt;}
.yd3{bottom:830.835867pt;}
.y10e{bottom:831.166533pt;}
.yb5{bottom:834.195867pt;}
.y7b{bottom:836.087733pt;}
.y290{bottom:838.267733pt;}
.y2d1{bottom:842.767733pt;}
.yd2{bottom:845.499867pt;}
.y10d{bottom:845.830533pt;}
.y5{bottom:847.601067pt;}
.yb4{bottom:849.291867pt;}
.y28f{bottom:850.267733pt;}
.y7a{bottom:854.257733pt;}
.y2d0{bottom:854.767733pt;}
.yd1{bottom:860.163867pt;}
.y10c{bottom:860.497200pt;}
.y28e{bottom:862.267733pt;}
.yb3{bottom:864.387867pt;}
.y2cf{bottom:866.767733pt;}
.y79{bottom:872.427733pt;}
.y28d{bottom:874.267733pt;}
.yd0{bottom:874.824533pt;}
.y2ce{bottom:878.767733pt;}
.yb2{bottom:879.483867pt;}
.y4{bottom:882.267733pt;}
.y28c{bottom:886.267733pt;}
.ycf{bottom:890.163867pt;}
.y78{bottom:890.597733pt;}
.y2cd{bottom:890.767733pt;}
.yb1{bottom:894.579867pt;}
.y10b{bottom:897.161200pt;}
.y28b{bottom:898.267733pt;}
.y2cc{bottom:902.767733pt;}
.y77{bottom:908.767733pt;}
.yb0{bottom:909.675867pt;}
.y10a{bottom:911.825200pt;}
.y3{bottom:914.267733pt;}
.y2cb{bottom:914.767733pt;}
.y28a{bottom:915.601067pt;}
.yaf{bottom:924.771867pt;}
.y109{bottom:926.489200pt;}
.yce{bottom:926.494533pt;}
.y2ca{bottom:926.767733pt;}
.y76{bottom:926.937733pt;}
.y289{bottom:932.934400pt;}
.y2c9{bottom:938.767733pt;}
.yae{bottom:939.867867pt;}
.y108{bottom:941.153200pt;}
.ycd{bottom:941.158533pt;}
.y75{bottom:944.767733pt;}
.y2{bottom:946.267733pt;}
.y288{bottom:950.267733pt;}
.y2c8{bottom:950.767733pt;}
.yad{bottom:954.963867pt;}
.ycc{bottom:955.822533pt;}
.y287{bottom:962.267733pt;}
.y2c7{bottom:962.767733pt;}
.y74{bottom:963.270400pt;}
.yac{bottom:970.062533pt;}
.ycb{bottom:970.486533pt;}
.y286{bottom:974.267733pt;}
.y2c6{bottom:974.767733pt;}
.y73{bottom:977.934400pt;}
.y1{bottom:982.267733pt;}
.yca{bottom:985.150533pt;}
.yab{bottom:985.158533pt;}
.y107{bottom:985.163867pt;}
.y285{bottom:986.267733pt;}
.y2c5{bottom:986.767733pt;}
.ye{bottom:1014.100933pt;}
.h22{height:21.555456pt;}
.h11{height:30.480000pt;}
.h8{height:32.512000pt;}
.ha{height:36.328125pt;}
.h10{height:36.576000pt;}
.h9{height:38.608000pt;}
.he{height:40.640000pt;}
.h7{height:44.704000pt;}
.h1f{height:45.408214pt;}
.h1c{height:45.472214pt;}
.h19{height:45.482880pt;}
.h20{height:45.520214pt;}
.h13{height:45.557547pt;}
.h1a{height:45.589547pt;}
.h1b{height:45.590080pt;}
.h18{height:45.600214pt;}
.h1e{height:45.621547pt;}
.h16{height:45.632214pt;}
.h17{height:45.642880pt;}
.h21{height:45.654080pt;}
.h14{height:45.664214pt;}
.h1d{height:45.670080pt;}
.h12{height:45.674880pt;}
.hc{height:45.727680pt;}
.hb{height:45.738347pt;}
.h15{height:45.770880pt;}
.hd{height:45.898880pt;}
.h2{height:48.768000pt;}
.hf{height:50.062500pt;}
.h6{height:52.832000pt;}
.h4{height:66.227616pt;}
.h5{height:66.238283pt;}
.h3{height:81.280000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.000000pt;}
.x3{left:60.666667pt;}
.x5{left:64.911200pt;}
.x10{left:68.000000pt;}
.x14{left:72.800000pt;}
.xd{left:94.482667pt;}
.x1{left:194.230000pt;}
.xc{left:241.333333pt;}
.xe{left:377.702667pt;}
.x11{left:408.923467pt;}
.x12{left:420.917733pt;}
.x15{left:425.720000pt;}
.xf{left:445.702667pt;}
.x6{left:474.298000pt;}
.x7{left:483.632000pt;}
.x8{left:494.189333pt;}
.x9{left:499.632000pt;}
.x2{left:555.756933pt;}
.xa{left:706.340933pt;}
.x13{left:722.340933pt;}
.xb{left:770.666667pt;}
}




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