
    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_ae812c55064a75a6cb6e6123.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_a63d30ae86821f5ee6702c66.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_681622310753f63b80b0b2b2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.872000;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_e4bb3266e68caf9519cd3c4a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b68eaf44c3a62541ad7629c9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.840332;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.228387,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.228387,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.228387,0.000000,-0.079057,0.237171,0,0);}
.m5{transform:matrix(0.236422,0.000000,-0.081270,0.236422,0,0);-ms-transform:matrix(0.236422,0.000000,-0.081270,0.236422,0,0);-webkit-transform:matrix(0.236422,0.000000,-0.081270,0.236422,0,0);}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m3{transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-ms-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-webkit-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);}
.m4{transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-ms-transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-webkit-transform:matrix(0.238620,0.000000,-0.074569,0.238620,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);}
.v6{vertical-align:-48.102000px;}
.v5{vertical-align:-32.706000px;}
.v7{vertical-align:-18.330000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.422000px;}
.v1{vertical-align:18.282000px;}
.v2{vertical-align:32.760000px;}
.v3{vertical-align:41.850000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.780000px;}
.ls6{letter-spacing:181.416480px;}
.ls2{letter-spacing:324.117552px;}
.ls4{letter-spacing:331.312224px;}
.ls3{letter-spacing:346.865856px;}
.ls5{letter-spacing:1287.632352px;}
.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;}
}
.ws122{word-spacing:-57.286656px;}
.ws4{word-spacing:-57.150900px;}
.ws213{word-spacing:-55.944000px;}
.ws10c{word-spacing:-55.496448px;}
.wsf8{word-spacing:-48.335616px;}
.wsfd{word-spacing:-46.545408px;}
.ws10d{word-spacing:-41.126403px;}
.wse6{word-spacing:-40.402944px;}
.ws108{word-spacing:-40.211712px;}
.wse2{word-spacing:-39.140352px;}
.ws147{word-spacing:-38.936700px;}
.wsba{word-spacing:-38.802900px;}
.ws74{word-spacing:-38.485500px;}
.ws0{word-spacing:-38.434800px;}
.ws1{word-spacing:-38.412300px;}
.ws17{word-spacing:-38.368800px;}
.ws129{word-spacing:-38.358000px;}
.ws2{word-spacing:-37.944000px;}
.ws14c{word-spacing:-37.529100px;}
.wsfa{word-spacing:-35.933998px;}
.wsf9{word-spacing:-35.023104px;}
.ws8{word-spacing:-34.560000px;}
.wsf5{word-spacing:-34.089984px;}
.wsfb{word-spacing:-33.725952px;}
.ws7{word-spacing:-33.611100px;}
.wse3{word-spacing:-33.417216px;}
.wsfc{word-spacing:-32.827392px;}
.ws179{word-spacing:-32.490900px;}
.ws10a{word-spacing:-32.372928px;}
.ws1a1{word-spacing:-31.977900px;}
.ws5{word-spacing:-31.631700px;}
.ws14a{word-spacing:-31.605600px;}
.wsd6{word-spacing:-31.545900px;}
.wsf6{word-spacing:-28.195776px;}
.ws14d{word-spacing:-27.192900px;}
.ws109{word-spacing:-23.456832px;}
.ws1e6{word-spacing:-21.090000px;}
.ws19{word-spacing:-21.084000px;}
.ws28{word-spacing:-20.097000px;}
.wsf4{word-spacing:-19.885824px;}
.wsd5{word-spacing:-19.841100px;}
.wscf{word-spacing:-19.831200px;}
.ws1a2{word-spacing:-19.806300px;}
.wsdf{word-spacing:-19.803900px;}
.ws1a0{word-spacing:-19.736100px;}
.ws1c8{word-spacing:-19.677300px;}
.ws2c{word-spacing:-19.659600px;}
.wsdd{word-spacing:-19.647000px;}
.ws1c2{word-spacing:-19.606200px;}
.ws11c{word-spacing:-19.592400px;}
.ws64{word-spacing:-19.590600px;}
.ws18d{word-spacing:-19.586400px;}
.wsc4{word-spacing:-19.551900px;}
.wsa9{word-spacing:-19.548000px;}
.ws4a{word-spacing:-19.524300px;}
.ws51{word-spacing:-19.515900px;}
.ws3f{word-spacing:-19.510200px;}
.ws15f{word-spacing:-19.509600px;}
.ws175{word-spacing:-19.484700px;}
.ws1d5{word-spacing:-19.470900px;}
.ws17a{word-spacing:-19.444800px;}
.ws169{word-spacing:-19.420800px;}
.ws86{word-spacing:-19.410900px;}
.ws7f{word-spacing:-19.392300px;}
.ws1bf{word-spacing:-19.391400px;}
.ws208{word-spacing:-19.384200px;}
.wsb9{word-spacing:-19.381500px;}
.ws178{word-spacing:-19.370700px;}
.ws212{word-spacing:-19.355700px;}
.ws1b5{word-spacing:-19.355400px;}
.ws95{word-spacing:-19.349700px;}
.ws90{word-spacing:-19.339500px;}
.ws13e{word-spacing:-19.313100px;}
.ws183{word-spacing:-19.305300px;}
.ws1c3{word-spacing:-19.304700px;}
.wsc2{word-spacing:-19.280400px;}
.ws1e5{word-spacing:-19.275000px;}
.wsa6{word-spacing:-19.243800px;}
.ws106{word-spacing:-19.236900px;}
.ws107{word-spacing:-19.231800px;}
.ws115{word-spacing:-19.218300px;}
.wse9{word-spacing:-19.212000px;}
.wsa5{word-spacing:-19.188900px;}
.ws1a3{word-spacing:-19.169400px;}
.ws1f4{word-spacing:-19.161000px;}
.ws1a4{word-spacing:-19.128000px;}
.ws73{word-spacing:-19.110900px;}
.ws1cc{word-spacing:-19.109100px;}
.ws18{word-spacing:-19.037100px;}
.wsd0{word-spacing:-19.012800px;}
.ws100{word-spacing:-19.006800px;}
.ws1e4{word-spacing:-19.005000px;}
.wse{word-spacing:-19.001100px;}
.ws13b{word-spacing:-18.897300px;}
.ws6{word-spacing:-18.895200px;}
.wsc{word-spacing:-18.886800px;}
.ws9d{word-spacing:-18.864300px;}
.ws20b{word-spacing:-18.822300px;}
.ws16{word-spacing:-18.691200px;}
.ws6e{word-spacing:-18.690900px;}
.ws29{word-spacing:-18.681300px;}
.ws42{word-spacing:-18.666600px;}
.ws58{word-spacing:-18.663000px;}
.wsa1{word-spacing:-18.622500px;}
.ws83{word-spacing:-18.611700px;}
.ws14b{word-spacing:-18.599100px;}
.ws1ca{word-spacing:-18.598500px;}
.ws156{word-spacing:-18.590400px;}
.wsd7{word-spacing:-18.566400px;}
.ws135{word-spacing:-18.544800px;}
.ws2a{word-spacing:-18.544200px;}
.ws143{word-spacing:-18.445200px;}
.ws76{word-spacing:-18.380700px;}
.wsb5{word-spacing:-18.309600px;}
.wsd8{word-spacing:-18.292800px;}
.ws1c6{word-spacing:-18.221700px;}
.ws94{word-spacing:-18.156900px;}
.ws43{word-spacing:-18.071100px;}
.ws3b{word-spacing:-18.066900px;}
.ws186{word-spacing:-18.063000px;}
.ws198{word-spacing:-17.980800px;}
.ws151{word-spacing:-17.970900px;}
.ws1b8{word-spacing:-17.927100px;}
.ws75{word-spacing:-17.914500px;}
.wsaa{word-spacing:-17.909700px;}
.wsd9{word-spacing:-17.865300px;}
.ws38{word-spacing:-17.823300px;}
.ws15b{word-spacing:-17.784900px;}
.ws1b1{word-spacing:-17.755200px;}
.wsad{word-spacing:-17.725800px;}
.ws14e{word-spacing:-17.688000px;}
.ws133{word-spacing:-17.662500px;}
.ws1dc{word-spacing:-17.586300px;}
.ws9e{word-spacing:-17.566800px;}
.ws27{word-spacing:-17.314500px;}
.ws206{word-spacing:-17.277300px;}
.wsf3{word-spacing:-17.231400px;}
.ws190{word-spacing:-17.210400px;}
.ws193{word-spacing:-17.195400px;}
.ws111{word-spacing:-17.189700px;}
.ws15{word-spacing:-17.136900px;}
.ws67{word-spacing:-17.124300px;}
.ws81{word-spacing:-17.083200px;}
.ws1d3{word-spacing:-17.079300px;}
.ws171{word-spacing:-17.059500px;}
.ws124{word-spacing:-17.045700px;}
.ws12e{word-spacing:-16.957200px;}
.ws197{word-spacing:-16.951200px;}
.wsff{word-spacing:-16.886100px;}
.ws1d{word-spacing:-16.780200px;}
.ws11{word-spacing:-16.736700px;}
.wse8{word-spacing:-16.728000px;}
.ws189{word-spacing:-16.575600px;}
.wsf0{word-spacing:-16.570800px;}
.ws1bc{word-spacing:-16.569600px;}
.wsa3{word-spacing:-16.539300px;}
.ws8f{word-spacing:-16.530900px;}
.ws1c7{word-spacing:-16.469700px;}
.ws101{word-spacing:-16.451700px;}
.wsef{word-spacing:-16.450200px;}
.ws1d8{word-spacing:-16.281000px;}
.ws1e8{word-spacing:-16.229100px;}
.ws1ff{word-spacing:-16.217100px;}
.ws205{word-spacing:-16.110900px;}
.ws6d{word-spacing:-16.086900px;}
.ws9{word-spacing:-16.055700px;}
.ws77{word-spacing:-15.960900px;}
.ws1f9{word-spacing:-15.948000px;}
.ws21f{word-spacing:-15.741300px;}
.ws230{word-spacing:-15.735300px;}
.ws226{word-spacing:-15.682800px;}
.ws31{word-spacing:-15.672900px;}
.ws217{word-spacing:-15.666600px;}
.ws1d1{word-spacing:-15.664200px;}
.ws187{word-spacing:-15.606600px;}
.ws222{word-spacing:-15.606000px;}
.ws233{word-spacing:-15.603900px;}
.ws1d7{word-spacing:-15.556200px;}
.ws60{word-spacing:-15.554100px;}
.ws130{word-spacing:-15.517200px;}
.ws22e{word-spacing:-15.492900px;}
.ws229{word-spacing:-15.486600px;}
.ws1fa{word-spacing:-15.462000px;}
.ws25{word-spacing:-15.406800px;}
.ws21d{word-spacing:-15.379800px;}
.ws21a{word-spacing:-15.372000px;}
.ws21e{word-spacing:-15.353700px;}
.ws137{word-spacing:-15.326400px;}
.ws1de{word-spacing:-15.241800px;}
.ws191{word-spacing:-15.236700px;}
.ws18f{word-spacing:-15.199500px;}
.ws1b3{word-spacing:-15.197100px;}
.ws19a{word-spacing:-15.025200px;}
.ws182{word-spacing:-14.955000px;}
.ws139{word-spacing:-14.944800px;}
.ws18c{word-spacing:-14.898000px;}
.ws200{word-spacing:-14.800500px;}
.ws7d{word-spacing:-14.726100px;}
.wsa0{word-spacing:-14.707800px;}
.wse7{word-spacing:-14.704200px;}
.ws10{word-spacing:-14.686200px;}
.wsd{word-spacing:-14.566800px;}
.wsf{word-spacing:-14.560800px;}
.ws2d{word-spacing:-14.505000px;}
.ws165{word-spacing:-14.467800px;}
.wsc8{word-spacing:-14.417700px;}
.ws8e{word-spacing:-14.364900px;}
.wsb0{word-spacing:-14.344200px;}
.ws96{word-spacing:-14.071200px;}
.ws223{word-spacing:-14.036100px;}
.ws20f{word-spacing:-14.033400px;}
.ws131{word-spacing:-14.011800px;}
.ws1b{word-spacing:-13.984200px;}
.wsa4{word-spacing:-13.966800px;}
.ws1cb{word-spacing:-13.961100px;}
.wsf2{word-spacing:-13.710900px;}
.ws20c{word-spacing:-13.695900px;}
.ws1a{word-spacing:-13.648200px;}
.wsee{word-spacing:-13.644900px;}
.ws1a9{word-spacing:-13.614300px;}
.ws18e{word-spacing:-13.589700px;}
.ws8d{word-spacing:-13.571400px;}
.ws22{word-spacing:-13.458300px;}
.wsf1{word-spacing:-13.457700px;}
.ws17e{word-spacing:-13.355100px;}
.ws181{word-spacing:-13.258200px;}
.ws30{word-spacing:-13.253400px;}
.wsab{word-spacing:-13.021200px;}
.ws105{word-spacing:-12.849600px;}
.ws23{word-spacing:-12.820200px;}
.ws22a{word-spacing:-12.787200px;}
.ws104{word-spacing:-12.651900px;}
.ws1aa{word-spacing:-12.529800px;}
.ws1c0{word-spacing:-12.526800px;}
.ws194{word-spacing:-12.517800px;}
.ws161{word-spacing:-12.510900px;}
.ws17d{word-spacing:-12.436800px;}
.ws1be{word-spacing:-12.382800px;}
.ws50{word-spacing:-12.356700px;}
.ws7a{word-spacing:-12.292800px;}
.ws22b{word-spacing:-12.199500px;}
.wsb{word-spacing:-12.179700px;}
.ws158{word-spacing:-12.149400px;}
.ws93{word-spacing:-12.047700px;}
.wsea{word-spacing:-12.025200px;}
.ws220{word-spacing:-12.012000px;}
.ws1c1{word-spacing:-11.928300px;}
.ws188{word-spacing:-11.887200px;}
.wsc5{word-spacing:-11.628000px;}
.ws19e{word-spacing:-11.606400px;}
.wsb2{word-spacing:-11.490900px;}
.ws71{word-spacing:-11.429400px;}
.ws17f{word-spacing:-11.408100px;}
.wsd3{word-spacing:-11.284200px;}
.ws82{word-spacing:-11.191200px;}
.ws4b{word-spacing:-11.109600px;}
.ws24{word-spacing:-11.098200px;}
.ws88{word-spacing:-11.013300px;}
.ws234{word-spacing:-10.988100px;}
.ws1fe{word-spacing:-10.518000px;}
.ws1af{word-spacing:-10.507500px;}
.ws203{word-spacing:-10.504500px;}
.ws68{word-spacing:-10.471200px;}
.ws1ae{word-spacing:-10.469100px;}
.ws199{word-spacing:-10.372800px;}
.ws148{word-spacing:-10.366800px;}
.ws46{word-spacing:-10.309500px;}
.ws15d{word-spacing:-10.262100px;}
.ws159{word-spacing:-10.188000px;}
.ws2f{word-spacing:-10.164300px;}
.ws3d{word-spacing:-10.067700px;}
.ws9b{word-spacing:-9.989700px;}
.ws11e{word-spacing:-9.971700px;}
.ws219{word-spacing:-9.958200px;}
.ws87{word-spacing:-9.749100px;}
.ws1a6{word-spacing:-9.724200px;}
.ws1fc{word-spacing:-9.658200px;}
.ws16a{word-spacing:-9.641100px;}
.ws3c{word-spacing:-9.624900px;}
.ws1b6{word-spacing:-9.583200px;}
.ws14f{word-spacing:-9.550800px;}
.ws176{word-spacing:-9.490800px;}
.wsfe{word-spacing:-9.455100px;}
.ws1a8{word-spacing:-9.404700px;}
.ws1ce{word-spacing:-9.324900px;}
.ws224{word-spacing:-9.264900px;}
.ws164{word-spacing:-9.132000px;}
.wscd{word-spacing:-9.123000px;}
.ws19f{word-spacing:-9.083400px;}
.ws13c{word-spacing:-8.988000px;}
.ws1df{word-spacing:-8.985300px;}
.ws1d9{word-spacing:-8.968200px;}
.wsa7{word-spacing:-8.949000px;}
.ws7c{word-spacing:-8.921100px;}
.ws1c4{word-spacing:-8.747100px;}
.ws40{word-spacing:-8.709600px;}
.ws2b{word-spacing:-8.543700px;}
.ws163{word-spacing:-8.218200px;}
.wsc6{word-spacing:-8.213400px;}
.wsdc{word-spacing:-8.212800px;}
.ws48{word-spacing:-8.201100px;}
.ws70{word-spacing:-8.091300px;}
.ws4c{word-spacing:-8.028000px;}
.wsbf{word-spacing:-8.006400px;}
.ws4f{word-spacing:-7.984500px;}
.ws174{word-spacing:-7.810200px;}
.ws16e{word-spacing:-7.693500px;}
.ws221{word-spacing:-7.526700px;}
.ws34{word-spacing:-7.487100px;}
.ws7b{word-spacing:-7.265400px;}
.ws12d{word-spacing:-7.176900px;}
.ws1ad{word-spacing:-7.170600px;}
.ws1ab{word-spacing:-7.167900px;}
.ws22c{word-spacing:-6.972000px;}
.wsd4{word-spacing:-6.927300px;}
.wsc9{word-spacing:-6.905700px;}
.wsc1{word-spacing:-6.872700px;}
.ws54{word-spacing:-6.850200px;}
.ws79{word-spacing:-6.844200px;}
.wsde{word-spacing:-6.837600px;}
.ws170{word-spacing:-6.825900px;}
.ws6c{word-spacing:-6.807900px;}
.ws85{word-spacing:-6.766800px;}
.ws91{word-spacing:-6.750900px;}
.ws16b{word-spacing:-6.639900px;}
.wscb{word-spacing:-6.576600px;}
.ws1e0{word-spacing:-6.524700px;}
.ws5e{word-spacing:-6.460800px;}
.ws57{word-spacing:-6.450900px;}
.ws99{word-spacing:-6.393600px;}
.ws227{word-spacing:-6.347700px;}
.ws1c5{word-spacing:-6.344700px;}
.ws11d{word-spacing:-6.137700px;}
.ws136{word-spacing:-6.097500px;}
.ws9a{word-spacing:-6.014100px;}
.ws14{word-spacing:-5.926800px;}
.ws21b{word-spacing:-5.763600px;}
.ws9c{word-spacing:-5.745000px;}
.ws1a7{word-spacing:-5.514300px;}
.ws19c{word-spacing:-5.448000px;}
.ws1b2{word-spacing:-5.431200px;}
.ws1fb{word-spacing:-5.349600px;}
.ws6b{word-spacing:-5.326800px;}
.wsc7{word-spacing:-5.192400px;}
.ws103{word-spacing:-5.162400px;}
.wsed{word-spacing:-4.965300px;}
.wsa8{word-spacing:-4.949400px;}
.ws16c{word-spacing:-4.942200px;}
.wsa2{word-spacing:-4.937700px;}
.ws218{word-spacing:-4.763100px;}
.ws125{word-spacing:-4.606800px;}
.ws167{word-spacing:-4.398300px;}
.ws98{word-spacing:-4.397100px;}
.ws232{word-spacing:-4.383000px;}
.ws180{word-spacing:-4.329600px;}
.ws56{word-spacing:-4.328100px;}
.wsaf{word-spacing:-4.251900px;}
.ws8a{word-spacing:-4.247400px;}
.ws102{word-spacing:-4.152000px;}
.ws20d{word-spacing:-4.051200px;}
.ws65{word-spacing:-3.898200px;}
.ws1c9{word-spacing:-3.680400px;}
.ws128{word-spacing:-3.399600px;}
.ws214{word-spacing:-3.342900px;}
.ws1d6{word-spacing:-3.321900px;}
.ws15e{word-spacing:-3.207900px;}
.ws215{word-spacing:-3.162600px;}
.ws141{word-spacing:-3.117900px;}
.ws21c{word-spacing:-3.070500px;}
.ws231{word-spacing:-3.068100px;}
.ws9f{word-spacing:-3.032400px;}
.ws22f{word-spacing:-2.998500px;}
.ws80{word-spacing:-2.906400px;}
.ws154{word-spacing:-2.866800px;}
.wsae{word-spacing:-2.853300px;}
.ws20a{word-spacing:-2.658000px;}
.ws1e2{word-spacing:-2.605500px;}
.ws10f{word-spacing:-2.475900px;}
.ws110{word-spacing:-2.452800px;}
.ws53{word-spacing:-2.208300px;}
.ws211{word-spacing:-2.090400px;}
.ws1cd{word-spacing:-1.974900px;}
.ws47{word-spacing:-1.719600px;}
.ws13d{word-spacing:-1.648200px;}
.ws63{word-spacing:-1.560300px;}
.ws132{word-spacing:-1.515900px;}
.ws184{word-spacing:-1.416900px;}
.wsbe{word-spacing:-1.212000px;}
.ws1ef{word-spacing:-1.128300px;}
.ws84{word-spacing:-1.068900px;}
.ws123{word-spacing:-1.012800px;}
.ws49{word-spacing:-0.888900px;}
.ws207{word-spacing:-0.869400px;}
.ws120{word-spacing:-0.836700px;}
.ws1ed{word-spacing:-0.700800px;}
.ws89{word-spacing:-0.657000px;}
.ws1b7{word-spacing:-0.645300px;}
.ws44{word-spacing:-0.523200px;}
.ws185{word-spacing:-0.391200px;}
.wsbd{word-spacing:-0.333000px;}
.ws1ba{word-spacing:-0.309600px;}
.ws52{word-spacing:0.000000px;}
.ws19b{word-spacing:0.134700px;}
.ws1da{word-spacing:0.470400px;}
.ws196{word-spacing:0.474900px;}
.wsca{word-spacing:0.498900px;}
.ws3{word-spacing:0.536100px;}
.wsa{word-spacing:0.740100px;}
.ws13a{word-spacing:1.075800px;}
.wsb4{word-spacing:1.119900px;}
.ws1b4{word-spacing:1.166100px;}
.ws1e{word-spacing:1.193100px;}
.ws1b0{word-spacing:1.268700px;}
.ws5f{word-spacing:1.367700px;}
.ws97{word-spacing:1.383900px;}
.ws13{word-spacing:1.455300px;}
.ws12b{word-spacing:1.566900px;}
.ws7e{word-spacing:1.668000px;}
.ws149{word-spacing:1.873200px;}
.ws1f{word-spacing:1.988100px;}
.ws216{word-spacing:1.998300px;}
.ws228{word-spacing:2.047500px;}
.ws201{word-spacing:2.084100px;}
.wsce{word-spacing:2.145600px;}
.ws1ec{word-spacing:2.586600px;}
.ws5a{word-spacing:2.965500px;}
.ws12{word-spacing:3.052200px;}
.ws1f0{word-spacing:3.080400px;}
.ws1a5{word-spacing:3.124800px;}
.ws32{word-spacing:3.208800px;}
.wseb{word-spacing:3.312900px;}
.wsb1{word-spacing:3.318600px;}
.ws142{word-spacing:3.498600px;}
.ws1b9{word-spacing:3.667800px;}
.ws55{word-spacing:3.725400px;}
.ws150{word-spacing:4.032600px;}
.ws12f{word-spacing:4.203300px;}
.ws3e{word-spacing:4.520400px;}
.ws1f7{word-spacing:4.577700px;}
.wsbc{word-spacing:4.818300px;}
.ws5d{word-spacing:5.069100px;}
.ws19d{word-spacing:5.427000px;}
.wsb6{word-spacing:5.613600px;}
.ws11a{word-spacing:5.695500px;}
.ws2e{word-spacing:5.777400px;}
.ws92{word-spacing:5.980500px;}
.ws1f6{word-spacing:6.265200px;}
.ws114{word-spacing:6.905700px;}
.ws192{word-spacing:6.910200px;}
.wsd2{word-spacing:6.912600px;}
.ws202{word-spacing:6.921900px;}
.ws113{word-spacing:7.169100px;}
.ws112{word-spacing:7.259400px;}
.ws41{word-spacing:7.290300px;}
.ws1cf{word-spacing:7.353900px;}
.ws4e{word-spacing:7.466400px;}
.ws13f{word-spacing:7.574700px;}
.ws177{word-spacing:7.638900px;}
.ws15c{word-spacing:7.833600px;}
.ws146{word-spacing:7.902000px;}
.ws1d0{word-spacing:7.904400px;}
.ws1c{word-spacing:8.010300px;}
.ws162{word-spacing:8.749800px;}
.wsb8{word-spacing:8.862000px;}
.ws16d{word-spacing:8.881500px;}
.ws21{word-spacing:9.343500px;}
.ws1f5{word-spacing:9.406200px;}
.ws15a{word-spacing:9.643800px;}
.ws172{word-spacing:9.654300px;}
.ws157{word-spacing:9.799200px;}
.ws144{word-spacing:9.928500px;}
.ws17b{word-spacing:9.933600px;}
.ws45{word-spacing:10.058400px;}
.ws1ac{word-spacing:10.170300px;}
.wsc3{word-spacing:10.302000px;}
.ws1d2{word-spacing:10.528800px;}
.wsac{word-spacing:10.535100px;}
.ws225{word-spacing:10.559400px;}
.ws59{word-spacing:10.829100px;}
.ws37{word-spacing:11.122800px;}
.ws1f2{word-spacing:11.444100px;}
.ws3a{word-spacing:11.533200px;}
.ws8b{word-spacing:11.848800px;}
.ws33{word-spacing:11.853300px;}
.ws1e3{word-spacing:12.093600px;}
.wsc0{word-spacing:12.189000px;}
.ws1eb{word-spacing:12.396600px;}
.ws5b{word-spacing:12.402300px;}
.ws36{word-spacing:12.442500px;}
.ws119{word-spacing:12.568800px;}
.ws17c{word-spacing:12.678900px;}
.wsbb{word-spacing:13.407900px;}
.ws1db{word-spacing:13.650600px;}
.ws61{word-spacing:13.867200px;}
.ws12a{word-spacing:14.295000px;}
.ws1dd{word-spacing:14.322000px;}
.ws155{word-spacing:14.824200px;}
.wscc{word-spacing:14.983500px;}
.ws153{word-spacing:15.038100px;}
.ws1e1{word-spacing:15.209100px;}
.ws152{word-spacing:15.869100px;}
.ws20e{word-spacing:16.177800px;}
.ws209{word-spacing:16.275000px;}
.ws160{word-spacing:16.305600px;}
.ws1fd{word-spacing:16.583100px;}
.ws1e7{word-spacing:16.915200px;}
.ws6a{word-spacing:17.247000px;}
.ws10e{word-spacing:17.484900px;}
.ws1d4{word-spacing:17.608800px;}
.ws20{word-spacing:17.711700px;}
.ws78{word-spacing:17.713200px;}
.ws204{word-spacing:18.380700px;}
.ws168{word-spacing:18.426600px;}
.ws26{word-spacing:18.506700px;}
.ws166{word-spacing:18.725400px;}
.ws1ea{word-spacing:19.191900px;}
.ws4d{word-spacing:20.107500px;}
.ws140{word-spacing:20.294700px;}
.ws138{word-spacing:20.677800px;}
.ws1bb{word-spacing:20.775000px;}
.ws145{word-spacing:20.885400px;}
.ws210{word-spacing:21.619200px;}
.ws1f8{word-spacing:21.813900px;}
.ws12c{word-spacing:22.364700px;}
.ws62{word-spacing:22.752600px;}
.ws127{word-spacing:23.009100px;}
.ws39{word-spacing:23.345700px;}
.ws8c{word-spacing:23.850300px;}
.wsb3{word-spacing:24.039000px;}
.ws35{word-spacing:24.440100px;}
.ws66{word-spacing:25.222200px;}
.ws69{word-spacing:25.395000px;}
.ws126{word-spacing:25.415700px;}
.ws72{word-spacing:26.586000px;}
.ws1f1{word-spacing:27.171600px;}
.ws1f3{word-spacing:27.172800px;}
.ws1e9{word-spacing:29.749500px;}
.ws195{word-spacing:30.449100px;}
.ws1ee{word-spacing:30.866400px;}
.wsec{word-spacing:30.903900px;}
.ws18b{word-spacing:31.891500px;}
.wsd1{word-spacing:34.102200px;}
.ws5c{word-spacing:36.311700px;}
.ws22d{word-spacing:37.608000px;}
.ws173{word-spacing:38.893200px;}
.ws16f{word-spacing:39.306600px;}
.ws11b{word-spacing:40.033200px;}
.ws1bd{word-spacing:40.590600px;}
.ws6f{word-spacing:40.662300px;}
.ws18a{word-spacing:40.975800px;}
.ws235{word-spacing:51.339600px;}
.wsdb{word-spacing:51.750720px;}
.ws134{word-spacing:55.456500px;}
.wsb7{word-spacing:57.619200px;}
.ws121{word-spacing:103.043712px;}
.wse4{word-spacing:164.322336px;}
.wsda{word-spacing:221.797344px;}
.wse1{word-spacing:222.003552px;}
.wse5{word-spacing:232.609920px;}
.ws10b{word-spacing:305.400144px;}
.wse0{word-spacing:353.490960px;}
.ws11f{word-spacing:366.187878px;}
.ws118{word-spacing:617.591616px;}
.ws116{word-spacing:621.282096px;}
.ws117{word-spacing:690.874620px;}
.wsf7{word-spacing:1061.356224px;}
._37{margin-left:-663.794867px;}
._2b{margin-left:-623.011824px;}
._2e{margin-left:-545.701776px;}
._32{margin-left:-513.844704px;}
._55{margin-left:-499.649712px;}
._41{margin-left:-476.790192px;}
._57{margin-left:-446.204640px;}
._51{margin-left:-421.250352px;}
._3b{margin-left:-352.836192px;}
._40{margin-left:-349.883856px;}
._50{margin-left:-302.205552px;}
._1d{margin-left:-292.644336px;}
._36{margin-left:-278.289408px;}
._43{margin-left:-275.262192px;}
._26{margin-left:-257.054352px;}
._42{margin-left:-245.775982px;}
._35{margin-left:-218.009280px;}
._29{margin-left:-210.604080px;}
._25{margin-left:-204.516192px;}
._21{margin-left:-194.561184px;}
._23{margin-left:-185.310192px;}
._1c{margin-left:-183.808080px;}
._1a{margin-left:-176.494080px;}
._1f{margin-left:-174.959040px;}
._2a{margin-left:-173.273424px;}
._4b{margin-left:-170.174928px;}
._4d{margin-left:-167.838000px;}
._4c{margin-left:-166.309404px;}
._44{margin-left:-159.760464px;}
._4e{margin-left:-152.808000px;}
._48{margin-left:-151.190928px;}
._1b{margin-left:-145.494000px;}
._4f{margin-left:-143.790000px;}
._31{margin-left:-139.254000px;}
._46{margin-left:-138.131520px;}
._28{margin-left:-136.778880px;}
._3f{margin-left:-134.984928px;}
._49{margin-left:-133.836336px;}
._4a{margin-left:-128.636928px;}
._22{margin-left:-126.492000px;}
._24{margin-left:-124.422000px;}
._39{margin-left:-121.966032px;}
._45{margin-left:-119.727600px;}
._47{margin-left:-116.494080px;}
._56{margin-left:-110.953614px;}
._34{margin-left:-104.619264px;}
._30{margin-left:-98.209584px;}
._52{margin-left:-95.558352px;}
._1e{margin-left:-91.145040px;}
._20{margin-left:-86.825184px;}
._2d{margin-left:-85.183776px;}
._2c{margin-left:-81.939984px;}
._2f{margin-left:-77.527776px;}
._27{margin-left:-70.590000px;}
._3e{margin-left:-68.830224px;}
._3d{margin-left:-62.756928px;}
._3a{margin-left:-59.338032px;}
._38{margin-left:-52.834032px;}
._53{margin-left:-50.174112px;}
._33{margin-left:-47.515104px;}
._3c{margin-left:-45.392112px;}
._54{margin-left:-41.442000px;}
._a{margin-left:-1.181400px;}
._1{width:1.044600px;}
._5e{width:12.971100px;}
._19{width:14.018400px;}
._5{width:15.930600px;}
._9{width:17.513700px;}
._0{width:18.850800px;}
._6{width:20.397300px;}
._4{width:22.434000px;}
._11{width:23.609400px;}
._e{width:24.658200px;}
._d{width:26.151300px;}
._c{width:27.352200px;}
._17{width:28.607400px;}
._8{width:29.633400px;}
._12{width:30.808200px;}
._59{width:33.063300px;}
._15{width:34.560000px;}
._3{width:36.182400px;}
._7{width:37.766100px;}
._5d{width:39.306600px;}
._16{width:40.781700px;}
._10{width:41.994900px;}
._5a{width:44.954700px;}
._5c{width:46.118400px;}
._f{width:47.286300px;}
._18{width:48.566100px;}
._13{width:51.858300px;}
._b{width:53.174400px;}
._58{width:55.348200px;}
._14{width:61.305900px;}
._5b{width:66.795300px;}
._2{width:85.615200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.288000px;}
.fs5{font-size:41.664000px;}
.fs3{font-size:43.008000px;}
.fs10{font-size:48.300000px;}
.fs2{font-size:59.700000px;}
.fsb{font-size:59.904000px;}
.fs9{font-size:62.208000px;}
.fsa{font-size:65.572990px;}
.fs6{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:73.728000px;}
.fsd{font-size:75.048180px;}
.fse{font-size:77.244156px;}
.fsf{font-size:77.962403px;}
.fs7{font-size:93.312000px;}
.fsc{font-size:107.136000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y143{bottom:2.475000px;}
.y141{bottom:2.505000px;}
.y149{bottom:2.565000px;}
.y147{bottom:2.595000px;}
.y145{bottom:2.625000px;}
.ybf{bottom:3.022500px;}
.y14b{bottom:3.361500px;}
.yeb{bottom:3.484500px;}
.yf4{bottom:3.904500px;}
.yb3{bottom:4.170000px;}
.y178{bottom:4.215000px;}
.yd1{bottom:4.228500px;}
.yc6{bottom:4.299000px;}
.yd4{bottom:4.309500px;}
.y100{bottom:4.390500px;}
.yc2{bottom:4.453500px;}
.y10f{bottom:4.468500px;}
.yb9{bottom:4.524000px;}
.y1f3{bottom:4.546500px;}
.ye2{bottom:4.569000px;}
.yf7{bottom:5.241000px;}
.y115{bottom:5.250000px;}
.y19c{bottom:5.265000px;}
.yd9{bottom:5.653500px;}
.y119{bottom:5.746500px;}
.yfc{bottom:5.896500px;}
.y10a{bottom:5.968500px;}
.ye8{bottom:6.045000px;}
.y8a{bottom:6.165000px;}
.y34{bottom:6.525000px;}
.y1d0{bottom:7.065000px;}
.y10d{bottom:7.303500px;}
.yde{bottom:7.455000px;}
.yc0{bottom:7.629000px;}
.yd2{bottom:8.728500px;}
.yc7{bottom:8.869500px;}
.yd5{bottom:8.893500px;}
.y104{bottom:9.094500px;}
.y13a{bottom:9.405000px;}
.y20c{bottom:9.825000px;}
.ydc{bottom:10.125000px;}
.yda{bottom:10.153500px;}
.y11a{bottom:10.318500px;}
.yfd{bottom:10.468500px;}
.y109{bottom:10.479000px;}
.y11d{bottom:10.495500px;}
.ye0{bottom:11.023500px;}
.yc5{bottom:17.059500px;}
.yd3{bottom:17.104500px;}
.yb8{bottom:17.284500px;}
.yf9{bottom:17.920500px;}
.y116{bottom:17.953500px;}
.yd8{bottom:18.216000px;}
.y113{bottom:18.282000px;}
.ye4{bottom:19.200000px;}
.yb2{bottom:20.550000px;}
.y173{bottom:20.565000px;}
.y177{bottom:20.775000px;}
.y1f2{bottom:20.925000px;}
.y19b{bottom:21.825000px;}
.yf6{bottom:22.413000px;}
.y114{bottom:22.453500px;}
.y89{bottom:22.546500px;}
.y33{bottom:22.905000px;}
.ye1{bottom:23.049000px;}
.y50{bottom:23.086500px;}
.y20b{bottom:23.325000px;}
.y1cf{bottom:23.446500px;}
.y1a9{bottom:24.886500px;}
.y139{bottom:25.786500px;}
.ydb{bottom:26.505000px;}
.ye3{bottom:28.941000px;}
.yf8{bottom:30.460500px;}
.ye5{bottom:32.788500px;}
.y20a{bottom:36.825000px;}
.yb1{bottom:36.930000px;}
.y172{bottom:36.946500px;}
.y176{bottom:36.975000px;}
.y1f1{bottom:37.305000px;}
.y19a{bottom:38.025000px;}
.y226{bottom:38.446500px;}
.y88{bottom:38.925000px;}
.y32{bottom:39.286500px;}
.y4f{bottom:39.465000px;}
.ydf{bottom:39.684000px;}
.y1ce{bottom:39.825000px;}
.y1a8{bottom:41.265000px;}
.y138{bottom:42.165000px;}
.yd6{bottom:50.265000px;}
.y225{bottom:51.946500px;}
.y171{bottom:53.325000px;}
.y175{bottom:53.355000px;}
.yb0{bottom:53.490000px;}
.y1f0{bottom:53.865000px;}
.y209{bottom:54.105000px;}
.y199{bottom:54.586500px;}
.y87{bottom:55.305000px;}
.y31{bottom:55.665000px;}
.y4e{bottom:55.846500px;}
.y1cd{bottom:56.205000px;}
.y1a7{bottom:57.645000px;}
.y137{bottom:58.546500px;}
.y224{bottom:65.446500px;}
.y208{bottom:67.605000px;}
.yaf{bottom:69.690000px;}
.y170{bottom:69.705000px;}
.y1ef{bottom:70.065000px;}
.y198{bottom:70.965000px;}
.y86{bottom:71.865000px;}
.y30{bottom:72.046500px;}
.y4d{bottom:72.225000px;}
.y1cc{bottom:72.586500px;}
.y1a6{bottom:74.025000px;}
.y136{bottom:74.925000px;}
.ycf{bottom:77.805000px;}
.y102{bottom:79.425000px;}
.y207{bottom:81.105000px;}
.y223{bottom:82.725000px;}
.y16f{bottom:86.086500px;}
.yae{bottom:86.250000px;}
.y1ee{bottom:86.625000px;}
.y197{bottom:87.346500px;}
.y85{bottom:88.065000px;}
.y2f{bottom:88.425000px;}
.y4c{bottom:88.605000px;}
.y1cb{bottom:88.965000px;}
.y1a5{bottom:90.405000px;}
.y135{bottom:91.305000px;}
.y222{bottom:96.225000px;}
.y206{bottom:98.386500px;}
.yce{bottom:100.305000px;}
.y101{bottom:101.746500px;}
.yad{bottom:102.450000px;}
.y16e{bottom:102.465000px;}
.y1ed{bottom:102.825000px;}
.yaa{bottom:104.625000px;}
.y2e{bottom:104.805000px;}
.y4b{bottom:104.986500px;}
.y1ca{bottom:105.346500px;}
.y1a4{bottom:106.786500px;}
.y18{bottom:106.800000px;}
.y134{bottom:107.865000px;}
.y221{bottom:109.725000px;}
.y205{bottom:111.886500px;}
.y196{bottom:112.725000px;}
.y84{bottom:113.625000px;}
.ycd{bottom:116.686500px;}
.yac{bottom:118.830000px;}
.y16d{bottom:118.846500px;}
.yfe{bottom:119.386500px;}
.ya9{bottom:120.825000px;}
.y2d{bottom:121.186500px;}
.y4a{bottom:121.365000px;}
.y1a3{bottom:123.165000px;}
.y204{bottom:125.386500px;}
.y220{bottom:126.825000px;}
.y195{bottom:129.105000px;}
.y83{bottom:129.825000px;}
.y1c9{bottom:130.725000px;}
.ycc{bottom:133.065000px;}
.y16c{bottom:135.225000px;}
.ya8{bottom:137.386500px;}
.y2c{bottom:137.565000px;}
.y49{bottom:137.746500px;}
.y203{bottom:138.886500px;}
.y1a2{bottom:139.546500px;}
.y21f{bottom:140.325000px;}
.yfa{bottom:143.145000px;}
.y1ec{bottom:144.765000px;}
.y194{bottom:145.486500px;}
.y82{bottom:146.386500px;}
.yd7{bottom:146.850000px;}
.y1c8{bottom:147.105000px;}
.ycb{bottom:149.446500px;}
.y133{bottom:149.625000px;}
.ya7{bottom:153.765000px;}
.y48{bottom:154.125000px;}
.y21e{bottom:157.605000px;}
.y16b{bottom:160.605000px;}
.y1eb{bottom:161.145000px;}
.y193{bottom:161.865000px;}
.y202{bottom:162.465000px;}
.y81{bottom:162.765000px;}
.y2b{bottom:162.946500px;}
.y1c7{bottom:163.665000px;}
.y1a1{bottom:164.925000px;}
.yca{bottom:165.825000px;}
.ya6{bottom:170.145000px;}
.y47{bottom:170.505000px;}
.y21d{bottom:171.105000px;}
.yd0{bottom:175.875000px;}
.y16a{bottom:176.986500px;}
.y103{bottom:177.150000px;}
.y1ea{bottom:177.525000px;}
.y192{bottom:178.246500px;}
.y80{bottom:179.145000px;}
.y2a{bottom:179.325000px;}
.y1c6{bottom:179.865000px;}
.y1a0{bottom:181.305000px;}
.y132{bottom:182.386500px;}
.y21c{bottom:184.605000px;}
.ya5{bottom:186.525000px;}
.y46{bottom:186.886500px;}
.yc9{bottom:191.205000px;}
.y169{bottom:193.365000px;}
.y1e9{bottom:193.905000px;}
.y191{bottom:194.625000px;}
.y7f{bottom:195.525000px;}
.y1c5{bottom:196.425000px;}
.y29{bottom:197.325000px;}
.y201{bottom:197.745000px;}
.y131{bottom:198.765000px;}
.y21b{bottom:201.886500px;}
.y45{bottom:203.265000px;}
.yc8{bottom:207.586500px;}
.y168{bottom:209.746500px;}
.y1e8{bottom:210.286500px;}
.y190{bottom:211.005000px;}
.y7e{bottom:211.905000px;}
.ya4{bottom:212.446500px;}
.y1c4{bottom:212.625000px;}
.y200{bottom:214.125000px;}
.y130{bottom:215.145000px;}
.y21a{bottom:215.386500px;}
.y28{bottom:215.865000px;}
.y44{bottom:219.645000px;}
.yff{bottom:222.000000px;}
.yf2{bottom:224.325000px;}
.y167{bottom:226.125000px;}
.y1e7{bottom:226.665000px;}
.y18f{bottom:227.386500px;}
.y7d{bottom:228.286500px;}
.y219{bottom:228.886500px;}
.y1c3{bottom:229.186500px;}
.yc3{bottom:229.725000px;}
.y1ff{bottom:230.505000px;}
.y12f{bottom:231.525000px;}
.y27{bottom:232.786500px;}
.y43{bottom:236.025000px;}
.yfb{bottom:239.550000px;}
.y166{bottom:242.505000px;}
.y1e6{bottom:243.046500px;}
.y18e{bottom:243.765000px;}
.y7c{bottom:244.665000px;}
.yf0{bottom:245.025000px;}
.y1c2{bottom:245.565000px;}
.y218{bottom:246.165000px;}
.y1fe{bottom:246.886500px;}
.ya3{bottom:247.905000px;}
.y26{bottom:249.165000px;}
.y42{bottom:252.405000px;}
.y165{bottom:259.065000px;}
.y1e5{bottom:259.425000px;}
.y217{bottom:259.665000px;}
.y18d{bottom:260.145000px;}
.y7b{bottom:261.046500px;}
.yef{bottom:261.405000px;}
.y1c1{bottom:261.946500px;}
.y1fd{bottom:263.265000px;}
.ya2{bottom:264.286500px;}
.y25{bottom:265.546500px;}
.y41{bottom:268.965000px;}
.y216{bottom:273.165000px;}
.y164{bottom:275.265000px;}
.y1e4{bottom:275.805000px;}
.yf5{bottom:276.675000px;}
.y7a{bottom:277.425000px;}
.yee{bottom:277.786500px;}
.y1c0{bottom:278.325000px;}
.y1fc{bottom:279.645000px;}
.ya1{bottom:280.665000px;}
.y24{bottom:281.925000px;}
.y40{bottom:285.165000px;}
.y18c{bottom:285.525000px;}
.y215{bottom:290.445000px;}
.y163{bottom:291.825000px;}
.y1e3{bottom:292.186500px;}
.y79{bottom:293.805000px;}
.yed{bottom:294.165000px;}
.y1fb{bottom:296.025000px;}
.ya0{bottom:297.046500px;}
.y23{bottom:298.305000px;}
.ybd{bottom:300.465000px;}
.y3f{bottom:301.725000px;}
.y18b{bottom:301.905000px;}
.y1bf{bottom:303.525000px;}
.y214{bottom:303.945000px;}
.y12e{bottom:306.046500px;}
.y162{bottom:308.025000px;}
.y1e2{bottom:308.565000px;}
.y78{bottom:310.186500px;}
.y1fa{bottom:312.405000px;}
.y9f{bottom:313.425000px;}
.y22{bottom:314.686500px;}
.y213{bottom:317.445000px;}
.y18a{bottom:318.286500px;}
.yec{bottom:319.545000px;}
.y1be{bottom:320.086500px;}
.ybc{bottom:321.525000px;}
.y12d{bottom:322.425000px;}
.y161{bottom:324.405000px;}
.y1e1{bottom:324.946500px;}
.y77{bottom:326.565000px;}
.yf3{bottom:326.700000px;}
.y3e{bottom:326.925000px;}
.yc4{bottom:327.825000px;}
.y1f9{bottom:328.965000px;}
.y9e{bottom:329.805000px;}
.y212{bottom:330.945000px;}
.y21{bottom:331.065000px;}
.y189{bottom:334.665000px;}
.ye9{bottom:337.186500px;}
.ybb{bottom:337.725000px;}
.y12c{bottom:338.805000px;}
.y1e0{bottom:341.325000px;}
.y76{bottom:342.946500px;}
.y3d{bottom:343.486500px;}
.yf1{bottom:344.700000px;}
.y1f8{bottom:345.165000px;}
.y9d{bottom:346.186500px;}
.y20{bottom:347.446500px;}
.y211{bottom:348.225000px;}
.y160{bottom:349.965000px;}
.y188{bottom:351.045000px;}
.y12b{bottom:355.186500px;}
.ye6{bottom:357.886500px;}
.y75{bottom:359.325000px;}
.y3c{bottom:359.865000px;}
.yba{bottom:360.045000px;}
.y210{bottom:361.725000px;}
.y9c{bottom:362.565000px;}
.y1f{bottom:363.825000px;}
.yc1{bottom:364.650000px;}
.y15f{bottom:366.165000px;}
.y1df{bottom:366.705000px;}
.y187{bottom:367.425000px;}
.y1f7{bottom:370.725000px;}
.y12a{bottom:371.565000px;}
.y20f{bottom:375.225000px;}
.y74{bottom:375.705000px;}
.y3b{bottom:376.246500px;}
.y9b{bottom:378.946500px;}
.y1e{bottom:380.205000px;}
.yb6{bottom:382.365000px;}
.y15e{bottom:382.725000px;}
.y1de{bottom:383.086500px;}
.y186{bottom:383.805000px;}
.y1f6{bottom:386.925000px;}
.y129{bottom:387.946500px;}
.y73{bottom:392.086500px;}
.y20e{bottom:392.325000px;}
.y3a{bottom:392.625000px;}
.y9a{bottom:395.325000px;}
.y1d{bottom:396.765000px;}
.yb5{bottom:398.746500px;}
.y15d{bottom:398.925000px;}
.y1dd{bottom:399.465000px;}
.ybe{bottom:399.750000px;}
.y185{bottom:400.186500px;}
.y1f5{bottom:403.305000px;}
.y128{bottom:404.325000px;}
.y20d{bottom:405.825000px;}
.y39{bottom:409.005000px;}
.y99{bottom:411.705000px;}
.y1c{bottom:412.965000px;}
.y15c{bottom:415.486500px;}
.y1dc{bottom:415.846500px;}
.y184{bottom:416.565000px;}
.y72{bottom:418.186500px;}
.y127{bottom:420.705000px;}
.y38{bottom:425.386500px;}
.y98{bottom:428.265000px;}
.y1b{bottom:429.525000px;}
.y15b{bottom:431.865000px;}
.y1db{bottom:432.225000px;}
.y183{bottom:432.946500px;}
.y126{bottom:437.086500px;}
.yea{bottom:439.875000px;}
.y37{bottom:441.765000px;}
.y97{bottom:444.465000px;}
.y1a{bottom:445.725000px;}
.y15a{bottom:448.246500px;}
.y1da{bottom:448.605000px;}
.y71{bottom:453.465000px;}
.ye7{bottom:457.350000px;}
.yb7{bottom:457.950000px;}
.y36{bottom:458.145000px;}
.y182{bottom:458.325000px;}
.y96{bottom:461.025000px;}
.y159{bottom:464.625000px;}
.y1d9{bottom:464.986500px;}
.y19f{bottom:465.705000px;}
.y125{bottom:469.846500px;}
.y70{bottom:470.025000px;}
.y19{bottom:471.825000px;}
.y35{bottom:474.525000px;}
.y181{bottom:474.705000px;}
.y95{bottom:477.225000px;}
.y158{bottom:481.005000px;}
.y1d8{bottom:481.365000px;}
.y19e{bottom:482.265000px;}
.y6f{bottom:486.225000px;}
.ydd{bottom:486.750000px;}
.y180{bottom:491.265000px;}
.y94{bottom:493.786500px;}
.y157{bottom:497.386500px;}
.y1d7{bottom:497.746500px;}
.y19d{bottom:498.465000px;}
.y6e{bottom:502.786500px;}
.y17f{bottom:507.465000px;}
.y124{bottom:512.325000px;}
.y1d6{bottom:514.125000px;}
.y6d{bottom:519.165000px;}
.y156{bottom:522.765000px;}
.y17e{bottom:524.025000px;}
.y1d5{bottom:530.505000px;}
.y6c{bottom:535.545000px;}
.y155{bottom:539.145000px;}
.yb4{bottom:539.386500px;}
.y17d{bottom:540.225000px;}
.y1d4{bottom:547.065000px;}
.y123{bottom:551.025000px;}
.y6b{bottom:551.925000px;}
.y154{bottom:555.525000px;}
.y17c{bottom:556.786500px;}
.y1d3{bottom:563.265000px;}
.y1bd{bottom:566.686500px;}
.y122{bottom:567.405000px;}
.y6a{bottom:568.125000px;}
.y153{bottom:571.905000px;}
.y17b{bottom:573.165000px;}
.y1d2{bottom:579.825000px;}
.y1bc{bottom:583.065000px;}
.y121{bottom:583.786500px;}
.y69{bottom:584.686500px;}
.y152{bottom:588.286500px;}
.y17a{bottom:589.365000px;}
.y1bb{bottom:599.446500px;}
.y120{bottom:600.165000px;}
.y68{bottom:601.065000px;}
.y151{bottom:604.665000px;}
.y1d1{bottom:605.745000px;}
.y17{bottom:615.886500px;}
.y11f{bottom:616.545000px;}
.y67{bottom:617.446500px;}
.y150{bottom:621.045000px;}
.y1ba{bottom:624.825000px;}
.y11e{bottom:632.925000px;}
.y66{bottom:633.825000px;}
.y14f{bottom:637.425000px;}
.y1b9{bottom:641.205000px;}
.y65{bottom:650.205000px;}
.y16{bottom:650.805000px;}
.y14e{bottom:653.805000px;}
.y11b{bottom:656.505000px;}
.y1b8{bottom:657.586500px;}
.y64{bottom:666.586500px;}
.y15{bottom:668.086500px;}
.y14d{bottom:670.186500px;}
.y1b7{bottom:673.965000px;}
.y63{bottom:682.965000px;}
.y117{bottom:684.765000px;}
.y14{bottom:685.365000px;}
.y14c{bottom:686.565000px;}
.y1f4{bottom:690.300000px;}
.y1b6{bottom:690.346500px;}
.y93{bottom:699.345000px;}
.y13{bottom:702.646500px;}
.y1b5{bottom:706.725000px;}
.y62{bottom:708.345000px;}
.y92{bottom:715.725000px;}
.y12{bottom:719.925000px;}
.y179{bottom:721.725000px;}
.y1b4{bottom:723.105000px;}
.y61{bottom:724.725000px;}
.y91{bottom:732.105000px;}
.y11{bottom:737.025000px;}
.y1b3{bottom:739.486500px;}
.y60{bottom:741.105000px;}
.y90{bottom:748.486500px;}
.y11c{bottom:753.075000px;}
.y10{bottom:754.305000px;}
.y1b2{bottom:755.865000px;}
.y5f{bottom:757.486500px;}
.y8f{bottom:764.865000px;}
.yf{bottom:771.586500px;}
.y1b1{bottom:772.245000px;}
.y5e{bottom:773.865000px;}
.y111{bottom:781.065000px;}
.y8e{bottom:781.245000px;}
.y118{bottom:781.350000px;}
.ye{bottom:788.865000px;}
.y5d{bottom:790.245000px;}
.y8d{bottom:797.625000px;}
.yd{bottom:806.145000px;}
.y5c{bottom:806.625000px;}
.y8c{bottom:814.005000px;}
.y112{bottom:818.250000px;}
.y110{bottom:822.825000px;}
.y5b{bottom:823.005000px;}
.yc{bottom:823.425000px;}
.y8b{bottom:830.386500px;}
.y14a{bottom:832.125000px;}
.y13f{bottom:833.805000px;}
.y5a{bottom:839.386500px;}
.yb{bottom:840.525000px;}
.y1b0{bottom:846.765000px;}
.y148{bottom:847.500000px;}
.y59{bottom:855.765000px;}
.ya{bottom:857.805000px;}
.y13e{bottom:859.905000px;}
.y146{bottom:862.050000px;}
.y1af{bottom:863.145000px;}
.y58{bottom:872.145000px;}
.y9{bottom:875.625000px;}
.y13d{bottom:876.286500px;}
.y10b{bottom:876.465000px;}
.y144{bottom:876.600000px;}
.y1ae{bottom:879.525000px;}
.y57{bottom:888.525000px;}
.y142{bottom:891.150000px;}
.y13c{bottom:892.665000px;}
.y1ad{bottom:895.905000px;}
.y56{bottom:904.905000px;}
.y140{bottom:905.700000px;}
.y1ac{bottom:912.465000px;}
.y8{bottom:913.065000px;}
.y13b{bottom:918.765000px;}
.y55{bottom:921.465000px;}
.y1ab{bottom:928.665000px;}
.y7{bottom:930.345000px;}
.y54{bottom:937.665000px;}
.y107{bottom:942.345000px;}
.y1aa{bottom:945.225000px;}
.y6{bottom:947.625000px;}
.y53{bottom:954.225000px;}
.y105{bottom:965.925000px;}
.y52{bottom:970.425000px;}
.yab{bottom:974.775000px;}
.y10c{bottom:975.900000px;}
.y10e{bottom:978.675000px;}
.y5{bottom:984.705000px;}
.y51{bottom:986.805000px;}
.y108{bottom:1007.625000px;}
.y4{bottom:1015.665000px;}
.y174{bottom:1040.250000px;}
.y3{bottom:1055.265000px;}
.y106{bottom:1062.525000px;}
.y2{bottom:1086.225000px;}
.y1{bottom:1117.186500px;}
.h24{height:13.725000px;}
.h3c{height:14.475000px;}
.h3f{height:15.300000px;}
.h2f{height:16.875000px;}
.h26{height:17.100000px;}
.h22{height:19.800000px;}
.h37{height:20.400000px;}
.h36{height:23.175000px;}
.h1e{height:25.196063px;}
.hd{height:25.500000px;}
.hf{height:26.475000px;}
.h13{height:26.775000px;}
.h1b{height:26.879344px;}
.ha{height:28.200000px;}
.h31{height:28.350000px;}
.h14{height:28.928813px;}
.h29{height:28.949156px;}
.h17{height:29.175000px;}
.h33{height:29.550000px;}
.hb{height:29.862000px;}
.h32{height:29.883000px;}
.h2a{height:30.512063px;}
.h18{height:30.861469px;}
.h16{height:31.857000px;}
.h3d{height:32.734570px;}
.h3e{height:33.560010px;}
.h1d{height:35.618063px;}
.h3{height:40.460742px;}
.h27{height:41.175000px;}
.h38{height:41.250000px;}
.h4{height:41.481006px;}
.h25{height:41.622750px;}
.h6{height:43.103400px;}
.h1f{height:43.193250px;}
.h20{height:43.223625px;}
.h23{height:44.372250px;}
.h1c{height:46.078875px;}
.h21{height:48.571399px;}
.h1{height:48.796875px;}
.h19{height:49.350000px;}
.h15{height:49.592250px;}
.h28{height:49.627125px;}
.he{height:51.192000px;}
.h3b{height:51.228000px;}
.h2b{height:52.905375px;}
.h12{height:54.612000px;}
.h2d{height:55.589888px;}
.h2e{height:57.216496px;}
.h30{height:57.748518px;}
.h34{height:61.283156px;}
.h2c{height:67.562250px;}
.h3a{height:67.592250px;}
.h40{height:67.950000px;}
.h1a{height:69.118313px;}
.h10{height:70.905375px;}
.h35{height:70.947375px;}
.hc{height:72.894000px;}
.h2{height:73.195313px;}
.h39{height:79.358063px;}
.h11{height:82.899000px;}
.h8{height:133.425000px;}
.h42{height:417.900000px;}
.h9{height:430.500000px;}
.h5{height:489.000000px;}
.h41{height:603.975000px;}
.h7{height:1001.400000px;}
.h0{height:1188.000000px;}
.wc{width:9.000000px;}
.w10{width:9.900000px;}
.wa{width:12.975000px;}
.w6{width:18.000000px;}
.w11{width:19.950000px;}
.w7{width:21.975000px;}
.we{width:23.925000px;}
.w3{width:26.100000px;}
.wb{width:32.025000px;}
.w9{width:39.975000px;}
.w17{width:74.475000px;}
.w13{width:75.075000px;}
.w15{width:76.425000px;}
.w16{width:88.575000px;}
.w5{width:104.925000px;}
.w2{width:120.075000px;}
.w14{width:122.925000px;}
.w4{width:134.100000px;}
.wd{width:138.075000px;}
.w12{width:176.025000px;}
.wf{width:218.025000px;}
.w8{width:342.000000px;}
.w1{width:460.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:1.308000px;}
.xf{left:2.782500px;}
.x4e{left:4.303500px;}
.x42{left:7.968000px;}
.xb{left:10.459500px;}
.xe{left:11.514000px;}
.x1d{left:12.727500px;}
.x4{left:14.700000px;}
.x39{left:20.121000px;}
.x4f{left:22.992000px;}
.x32{left:24.900000px;}
.x2d{left:32.560500px;}
.x5{left:36.300000px;}
.x57{left:38.460000px;}
.x23{left:40.795500px;}
.x15{left:42.625500px;}
.x2b{left:44.400000px;}
.x50{left:47.391000px;}
.xa{left:49.671000px;}
.x28{left:51.084000px;}
.x16{left:54.664500px;}
.x4a{left:56.277000px;}
.x38{left:57.874500px;}
.x30{left:65.820000px;}
.x1{left:66.960000px;}
.x4c{left:68.454000px;}
.x9{left:72.795000px;}
.x52{left:74.460000px;}
.x3a{left:78.183000px;}
.x3b{left:80.011500px;}
.x35{left:82.380000px;}
.x2{left:88.560000px;}
.x14{left:94.900500px;}
.x7{left:96.660000px;}
.x59{left:104.400000px;}
.x58{left:107.938500px;}
.x8{left:109.708500px;}
.x12{left:122.752500px;}
.x40{left:123.960000px;}
.x37{left:128.835000px;}
.x46{left:140.925000px;}
.x13{left:144.900000px;}
.x2e{left:146.280000px;}
.x4d{left:148.144500px;}
.x18{left:149.400000px;}
.xd{left:158.250000px;}
.x44{left:162.150000px;}
.x4b{left:166.339500px;}
.x47{left:174.238500px;}
.x19{left:176.220000px;}
.x49{left:183.225000px;}
.x22{left:190.381500px;}
.x10{left:191.520000px;}
.xc{left:199.800000px;}
.x20{left:201.507000px;}
.x11{left:204.300000px;}
.x1a{left:205.725000px;}
.x45{left:210.412500px;}
.x41{left:212.025000px;}
.x33{left:218.100000px;}
.x24{left:219.771000px;}
.x26{left:220.888500px;}
.x25{left:227.748000px;}
.x21{left:229.383000px;}
.x1b{left:236.520000px;}
.x2a{left:248.962500px;}
.x43{left:250.560000px;}
.x27{left:258.055500px;}
.x17{left:259.560000px;}
.x1c{left:273.750000px;}
.x51{left:295.560000px;}
.x1e{left:306.000000px;}
.x6{left:321.480000px;}
.x29{left:324.253500px;}
.x48{left:425.550000px;}
.x3{left:457.800000px;}
.x53{left:480.675000px;}
.x1f{left:490.650000px;}
.x2f{left:501.825000px;}
.x34{left:531.150000px;}
.x2c{left:551.700000px;}
.x3c{left:558.375000px;}
.x3f{left:563.775000px;}
.x54{left:603.525000px;}
.x36{left:607.650000px;}
.x31{left:633.225000px;}
.x3e{left:651.075000px;}
.x55{left:679.875000px;}
.x56{left:768.375000px;}
@media print{
.v6{vertical-align:-42.757333pt;}
.v5{vertical-align:-29.072000pt;}
.v7{vertical-align:-16.293333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.264000pt;}
.v1{vertical-align:16.250667pt;}
.v2{vertical-align:29.120000pt;}
.v3{vertical-align:37.200000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.693333pt;}
.ls6{letter-spacing:161.259093pt;}
.ls2{letter-spacing:288.104491pt;}
.ls4{letter-spacing:294.499755pt;}
.ls3{letter-spacing:308.325205pt;}
.ls5{letter-spacing:1144.562091pt;}
.ws122{word-spacing:-50.921472pt;}
.ws4{word-spacing:-50.800800pt;}
.ws213{word-spacing:-49.728000pt;}
.ws10c{word-spacing:-49.330176pt;}
.wsf8{word-spacing:-42.964992pt;}
.wsfd{word-spacing:-41.373696pt;}
.ws10d{word-spacing:-36.556803pt;}
.wse6{word-spacing:-35.913728pt;}
.ws108{word-spacing:-35.743744pt;}
.wse2{word-spacing:-34.791424pt;}
.ws147{word-spacing:-34.610400pt;}
.wsba{word-spacing:-34.491467pt;}
.ws74{word-spacing:-34.209333pt;}
.ws0{word-spacing:-34.164267pt;}
.ws1{word-spacing:-34.144267pt;}
.ws17{word-spacing:-34.105600pt;}
.ws129{word-spacing:-34.096000pt;}
.ws2{word-spacing:-33.728000pt;}
.ws14c{word-spacing:-33.359200pt;}
.wsfa{word-spacing:-31.941332pt;}
.wsf9{word-spacing:-31.131648pt;}
.ws8{word-spacing:-30.720000pt;}
.wsf5{word-spacing:-30.302208pt;}
.wsfb{word-spacing:-29.978624pt;}
.ws7{word-spacing:-29.876533pt;}
.wse3{word-spacing:-29.704192pt;}
.wsfc{word-spacing:-29.179904pt;}
.ws179{word-spacing:-28.880800pt;}
.ws10a{word-spacing:-28.775936pt;}
.ws1a1{word-spacing:-28.424800pt;}
.ws5{word-spacing:-28.117067pt;}
.ws14a{word-spacing:-28.093867pt;}
.wsd6{word-spacing:-28.040800pt;}
.wsf6{word-spacing:-25.062912pt;}
.ws14d{word-spacing:-24.171467pt;}
.ws109{word-spacing:-20.850517pt;}
.ws1e6{word-spacing:-18.746667pt;}
.ws19{word-spacing:-18.741333pt;}
.ws28{word-spacing:-17.864000pt;}
.wsf4{word-spacing:-17.676288pt;}
.wsd5{word-spacing:-17.636533pt;}
.wscf{word-spacing:-17.627733pt;}
.ws1a2{word-spacing:-17.605600pt;}
.wsdf{word-spacing:-17.603467pt;}
.ws1a0{word-spacing:-17.543200pt;}
.ws1c8{word-spacing:-17.490933pt;}
.ws2c{word-spacing:-17.475200pt;}
.wsdd{word-spacing:-17.464000pt;}
.ws1c2{word-spacing:-17.427733pt;}
.ws11c{word-spacing:-17.415467pt;}
.ws64{word-spacing:-17.413867pt;}
.ws18d{word-spacing:-17.410133pt;}
.wsc4{word-spacing:-17.379467pt;}
.wsa9{word-spacing:-17.376000pt;}
.ws4a{word-spacing:-17.354933pt;}
.ws51{word-spacing:-17.347467pt;}
.ws3f{word-spacing:-17.342400pt;}
.ws15f{word-spacing:-17.341867pt;}
.ws175{word-spacing:-17.319733pt;}
.ws1d5{word-spacing:-17.307467pt;}
.ws17a{word-spacing:-17.284267pt;}
.ws169{word-spacing:-17.262933pt;}
.ws86{word-spacing:-17.254133pt;}
.ws7f{word-spacing:-17.237600pt;}
.ws1bf{word-spacing:-17.236800pt;}
.ws208{word-spacing:-17.230400pt;}
.wsb9{word-spacing:-17.228000pt;}
.ws178{word-spacing:-17.218400pt;}
.ws212{word-spacing:-17.205067pt;}
.ws1b5{word-spacing:-17.204800pt;}
.ws95{word-spacing:-17.199733pt;}
.ws90{word-spacing:-17.190667pt;}
.ws13e{word-spacing:-17.167200pt;}
.ws183{word-spacing:-17.160267pt;}
.ws1c3{word-spacing:-17.159733pt;}
.wsc2{word-spacing:-17.138133pt;}
.ws1e5{word-spacing:-17.133333pt;}
.wsa6{word-spacing:-17.105600pt;}
.ws106{word-spacing:-17.099467pt;}
.ws107{word-spacing:-17.094933pt;}
.ws115{word-spacing:-17.082933pt;}
.wse9{word-spacing:-17.077333pt;}
.wsa5{word-spacing:-17.056800pt;}
.ws1a3{word-spacing:-17.039467pt;}
.ws1f4{word-spacing:-17.032000pt;}
.ws1a4{word-spacing:-17.002667pt;}
.ws73{word-spacing:-16.987467pt;}
.ws1cc{word-spacing:-16.985867pt;}
.ws18{word-spacing:-16.921867pt;}
.wsd0{word-spacing:-16.900267pt;}
.ws100{word-spacing:-16.894933pt;}
.ws1e4{word-spacing:-16.893333pt;}
.wse{word-spacing:-16.889867pt;}
.ws13b{word-spacing:-16.797600pt;}
.ws6{word-spacing:-16.795733pt;}
.wsc{word-spacing:-16.788267pt;}
.ws9d{word-spacing:-16.768267pt;}
.ws20b{word-spacing:-16.730933pt;}
.ws16{word-spacing:-16.614400pt;}
.ws6e{word-spacing:-16.614133pt;}
.ws29{word-spacing:-16.605600pt;}
.ws42{word-spacing:-16.592533pt;}
.ws58{word-spacing:-16.589333pt;}
.wsa1{word-spacing:-16.553333pt;}
.ws83{word-spacing:-16.543733pt;}
.ws14b{word-spacing:-16.532533pt;}
.ws1ca{word-spacing:-16.532000pt;}
.ws156{word-spacing:-16.524800pt;}
.wsd7{word-spacing:-16.503467pt;}
.ws135{word-spacing:-16.484267pt;}
.ws2a{word-spacing:-16.483733pt;}
.ws143{word-spacing:-16.395733pt;}
.ws76{word-spacing:-16.338400pt;}
.wsb5{word-spacing:-16.275200pt;}
.wsd8{word-spacing:-16.260267pt;}
.ws1c6{word-spacing:-16.197067pt;}
.ws94{word-spacing:-16.139467pt;}
.ws43{word-spacing:-16.063200pt;}
.ws3b{word-spacing:-16.059467pt;}
.ws186{word-spacing:-16.056000pt;}
.ws198{word-spacing:-15.982933pt;}
.ws151{word-spacing:-15.974133pt;}
.ws1b8{word-spacing:-15.935200pt;}
.ws75{word-spacing:-15.924000pt;}
.wsaa{word-spacing:-15.919733pt;}
.wsd9{word-spacing:-15.880267pt;}
.ws38{word-spacing:-15.842933pt;}
.ws15b{word-spacing:-15.808800pt;}
.ws1b1{word-spacing:-15.782400pt;}
.wsad{word-spacing:-15.756267pt;}
.ws14e{word-spacing:-15.722667pt;}
.ws133{word-spacing:-15.700000pt;}
.ws1dc{word-spacing:-15.632267pt;}
.ws9e{word-spacing:-15.614933pt;}
.ws27{word-spacing:-15.390667pt;}
.ws206{word-spacing:-15.357600pt;}
.wsf3{word-spacing:-15.316800pt;}
.ws190{word-spacing:-15.298133pt;}
.ws193{word-spacing:-15.284800pt;}
.ws111{word-spacing:-15.279733pt;}
.ws15{word-spacing:-15.232800pt;}
.ws67{word-spacing:-15.221600pt;}
.ws81{word-spacing:-15.185067pt;}
.ws1d3{word-spacing:-15.181600pt;}
.ws171{word-spacing:-15.164000pt;}
.ws124{word-spacing:-15.151733pt;}
.ws12e{word-spacing:-15.073067pt;}
.ws197{word-spacing:-15.067733pt;}
.wsff{word-spacing:-15.009867pt;}
.ws1d{word-spacing:-14.915733pt;}
.ws11{word-spacing:-14.877067pt;}
.wse8{word-spacing:-14.869333pt;}
.ws189{word-spacing:-14.733867pt;}
.wsf0{word-spacing:-14.729600pt;}
.ws1bc{word-spacing:-14.728533pt;}
.wsa3{word-spacing:-14.701600pt;}
.ws8f{word-spacing:-14.694133pt;}
.ws1c7{word-spacing:-14.639733pt;}
.ws101{word-spacing:-14.623733pt;}
.wsef{word-spacing:-14.622400pt;}
.ws1d8{word-spacing:-14.472000pt;}
.ws1e8{word-spacing:-14.425867pt;}
.ws1ff{word-spacing:-14.415200pt;}
.ws205{word-spacing:-14.320800pt;}
.ws6d{word-spacing:-14.299467pt;}
.ws9{word-spacing:-14.271733pt;}
.ws77{word-spacing:-14.187467pt;}
.ws1f9{word-spacing:-14.176000pt;}
.ws21f{word-spacing:-13.992267pt;}
.ws230{word-spacing:-13.986933pt;}
.ws226{word-spacing:-13.940267pt;}
.ws31{word-spacing:-13.931467pt;}
.ws217{word-spacing:-13.925867pt;}
.ws1d1{word-spacing:-13.923733pt;}
.ws187{word-spacing:-13.872533pt;}
.ws222{word-spacing:-13.872000pt;}
.ws233{word-spacing:-13.870133pt;}
.ws1d7{word-spacing:-13.827733pt;}
.ws60{word-spacing:-13.825867pt;}
.ws130{word-spacing:-13.793067pt;}
.ws22e{word-spacing:-13.771467pt;}
.ws229{word-spacing:-13.765867pt;}
.ws1fa{word-spacing:-13.744000pt;}
.ws25{word-spacing:-13.694933pt;}
.ws21d{word-spacing:-13.670933pt;}
.ws21a{word-spacing:-13.664000pt;}
.ws21e{word-spacing:-13.647733pt;}
.ws137{word-spacing:-13.623467pt;}
.ws1de{word-spacing:-13.548267pt;}
.ws191{word-spacing:-13.543733pt;}
.ws18f{word-spacing:-13.510667pt;}
.ws1b3{word-spacing:-13.508533pt;}
.ws19a{word-spacing:-13.355733pt;}
.ws182{word-spacing:-13.293333pt;}
.ws139{word-spacing:-13.284267pt;}
.ws18c{word-spacing:-13.242667pt;}
.ws200{word-spacing:-13.156000pt;}
.ws7d{word-spacing:-13.089867pt;}
.wsa0{word-spacing:-13.073600pt;}
.wse7{word-spacing:-13.070400pt;}
.ws10{word-spacing:-13.054400pt;}
.wsd{word-spacing:-12.948267pt;}
.wsf{word-spacing:-12.942933pt;}
.ws2d{word-spacing:-12.893333pt;}
.ws165{word-spacing:-12.860267pt;}
.wsc8{word-spacing:-12.815733pt;}
.ws8e{word-spacing:-12.768800pt;}
.wsb0{word-spacing:-12.750400pt;}
.ws96{word-spacing:-12.507733pt;}
.ws223{word-spacing:-12.476533pt;}
.ws20f{word-spacing:-12.474133pt;}
.ws131{word-spacing:-12.454933pt;}
.ws1b{word-spacing:-12.430400pt;}
.wsa4{word-spacing:-12.414933pt;}
.ws1cb{word-spacing:-12.409867pt;}
.wsf2{word-spacing:-12.187467pt;}
.ws20c{word-spacing:-12.174133pt;}
.ws1a{word-spacing:-12.131733pt;}
.wsee{word-spacing:-12.128800pt;}
.ws1a9{word-spacing:-12.101600pt;}
.ws18e{word-spacing:-12.079733pt;}
.ws8d{word-spacing:-12.063467pt;}
.ws22{word-spacing:-11.962933pt;}
.wsf1{word-spacing:-11.962400pt;}
.ws17e{word-spacing:-11.871200pt;}
.ws181{word-spacing:-11.785067pt;}
.ws30{word-spacing:-11.780800pt;}
.wsab{word-spacing:-11.574400pt;}
.ws105{word-spacing:-11.421867pt;}
.ws23{word-spacing:-11.395733pt;}
.ws22a{word-spacing:-11.366400pt;}
.ws104{word-spacing:-11.246133pt;}
.ws1aa{word-spacing:-11.137600pt;}
.ws1c0{word-spacing:-11.134933pt;}
.ws194{word-spacing:-11.126933pt;}
.ws161{word-spacing:-11.120800pt;}
.ws17d{word-spacing:-11.054933pt;}
.ws1be{word-spacing:-11.006933pt;}
.ws50{word-spacing:-10.983733pt;}
.ws7a{word-spacing:-10.926933pt;}
.ws22b{word-spacing:-10.844000pt;}
.wsb{word-spacing:-10.826400pt;}
.ws158{word-spacing:-10.799467pt;}
.ws93{word-spacing:-10.709067pt;}
.wsea{word-spacing:-10.689067pt;}
.ws220{word-spacing:-10.677333pt;}
.ws1c1{word-spacing:-10.602933pt;}
.ws188{word-spacing:-10.566400pt;}
.wsc5{word-spacing:-10.336000pt;}
.ws19e{word-spacing:-10.316800pt;}
.wsb2{word-spacing:-10.214133pt;}
.ws71{word-spacing:-10.159467pt;}
.ws17f{word-spacing:-10.140533pt;}
.wsd3{word-spacing:-10.030400pt;}
.ws82{word-spacing:-9.947733pt;}
.ws4b{word-spacing:-9.875200pt;}
.ws24{word-spacing:-9.865067pt;}
.ws88{word-spacing:-9.789600pt;}
.ws234{word-spacing:-9.767200pt;}
.ws1fe{word-spacing:-9.349333pt;}
.ws1af{word-spacing:-9.340000pt;}
.ws203{word-spacing:-9.337333pt;}
.ws68{word-spacing:-9.307733pt;}
.ws1ae{word-spacing:-9.305867pt;}
.ws199{word-spacing:-9.220267pt;}
.ws148{word-spacing:-9.214933pt;}
.ws46{word-spacing:-9.164000pt;}
.ws15d{word-spacing:-9.121867pt;}
.ws159{word-spacing:-9.056000pt;}
.ws2f{word-spacing:-9.034933pt;}
.ws3d{word-spacing:-8.949067pt;}
.ws9b{word-spacing:-8.879733pt;}
.ws11e{word-spacing:-8.863733pt;}
.ws219{word-spacing:-8.851733pt;}
.ws87{word-spacing:-8.665867pt;}
.ws1a6{word-spacing:-8.643733pt;}
.ws1fc{word-spacing:-8.585067pt;}
.ws16a{word-spacing:-8.569867pt;}
.ws3c{word-spacing:-8.555467pt;}
.ws1b6{word-spacing:-8.518400pt;}
.ws14f{word-spacing:-8.489600pt;}
.ws176{word-spacing:-8.436267pt;}
.wsfe{word-spacing:-8.404533pt;}
.ws1a8{word-spacing:-8.359733pt;}
.ws1ce{word-spacing:-8.288800pt;}
.ws224{word-spacing:-8.235467pt;}
.ws164{word-spacing:-8.117333pt;}
.wscd{word-spacing:-8.109333pt;}
.ws19f{word-spacing:-8.074133pt;}
.ws13c{word-spacing:-7.989333pt;}
.ws1df{word-spacing:-7.986933pt;}
.ws1d9{word-spacing:-7.971733pt;}
.wsa7{word-spacing:-7.954667pt;}
.ws7c{word-spacing:-7.929867pt;}
.ws1c4{word-spacing:-7.775200pt;}
.ws40{word-spacing:-7.741867pt;}
.ws2b{word-spacing:-7.594400pt;}
.ws163{word-spacing:-7.305067pt;}
.wsc6{word-spacing:-7.300800pt;}
.wsdc{word-spacing:-7.300267pt;}
.ws48{word-spacing:-7.289867pt;}
.ws70{word-spacing:-7.192267pt;}
.ws4c{word-spacing:-7.136000pt;}
.wsbf{word-spacing:-7.116800pt;}
.ws4f{word-spacing:-7.097333pt;}
.ws174{word-spacing:-6.942400pt;}
.ws16e{word-spacing:-6.838667pt;}
.ws221{word-spacing:-6.690400pt;}
.ws34{word-spacing:-6.655200pt;}
.ws7b{word-spacing:-6.458133pt;}
.ws12d{word-spacing:-6.379467pt;}
.ws1ad{word-spacing:-6.373867pt;}
.ws1ab{word-spacing:-6.371467pt;}
.ws22c{word-spacing:-6.197333pt;}
.wsd4{word-spacing:-6.157600pt;}
.wsc9{word-spacing:-6.138400pt;}
.wsc1{word-spacing:-6.109067pt;}
.ws54{word-spacing:-6.089067pt;}
.ws79{word-spacing:-6.083733pt;}
.wsde{word-spacing:-6.077867pt;}
.ws170{word-spacing:-6.067467pt;}
.ws6c{word-spacing:-6.051467pt;}
.ws85{word-spacing:-6.014933pt;}
.ws91{word-spacing:-6.000800pt;}
.ws16b{word-spacing:-5.902133pt;}
.wscb{word-spacing:-5.845867pt;}
.ws1e0{word-spacing:-5.799733pt;}
.ws5e{word-spacing:-5.742933pt;}
.ws57{word-spacing:-5.734133pt;}
.ws99{word-spacing:-5.683200pt;}
.ws227{word-spacing:-5.642400pt;}
.ws1c5{word-spacing:-5.639733pt;}
.ws11d{word-spacing:-5.455733pt;}
.ws136{word-spacing:-5.420000pt;}
.ws9a{word-spacing:-5.345867pt;}
.ws14{word-spacing:-5.268267pt;}
.ws21b{word-spacing:-5.123200pt;}
.ws9c{word-spacing:-5.106667pt;}
.ws1a7{word-spacing:-4.901600pt;}
.ws19c{word-spacing:-4.842667pt;}
.ws1b2{word-spacing:-4.827733pt;}
.ws1fb{word-spacing:-4.755200pt;}
.ws6b{word-spacing:-4.734933pt;}
.wsc7{word-spacing:-4.615467pt;}
.ws103{word-spacing:-4.588800pt;}
.wsed{word-spacing:-4.413600pt;}
.wsa8{word-spacing:-4.399467pt;}
.ws16c{word-spacing:-4.393067pt;}
.wsa2{word-spacing:-4.389067pt;}
.ws218{word-spacing:-4.233867pt;}
.ws125{word-spacing:-4.094933pt;}
.ws167{word-spacing:-3.909600pt;}
.ws98{word-spacing:-3.908533pt;}
.ws232{word-spacing:-3.896000pt;}
.ws180{word-spacing:-3.848533pt;}
.ws56{word-spacing:-3.847200pt;}
.wsaf{word-spacing:-3.779467pt;}
.ws8a{word-spacing:-3.775467pt;}
.ws102{word-spacing:-3.690667pt;}
.ws20d{word-spacing:-3.601067pt;}
.ws65{word-spacing:-3.465067pt;}
.ws1c9{word-spacing:-3.271467pt;}
.ws128{word-spacing:-3.021867pt;}
.ws214{word-spacing:-2.971467pt;}
.ws1d6{word-spacing:-2.952800pt;}
.ws15e{word-spacing:-2.851467pt;}
.ws215{word-spacing:-2.811200pt;}
.ws141{word-spacing:-2.771467pt;}
.ws21c{word-spacing:-2.729333pt;}
.ws231{word-spacing:-2.727200pt;}
.ws9f{word-spacing:-2.695467pt;}
.ws22f{word-spacing:-2.665333pt;}
.ws80{word-spacing:-2.583467pt;}
.ws154{word-spacing:-2.548267pt;}
.wsae{word-spacing:-2.536267pt;}
.ws20a{word-spacing:-2.362667pt;}
.ws1e2{word-spacing:-2.316000pt;}
.ws10f{word-spacing:-2.200800pt;}
.ws110{word-spacing:-2.180267pt;}
.ws53{word-spacing:-1.962933pt;}
.ws211{word-spacing:-1.858133pt;}
.ws1cd{word-spacing:-1.755467pt;}
.ws47{word-spacing:-1.528533pt;}
.ws13d{word-spacing:-1.465067pt;}
.ws63{word-spacing:-1.386933pt;}
.ws132{word-spacing:-1.347467pt;}
.ws184{word-spacing:-1.259467pt;}
.wsbe{word-spacing:-1.077333pt;}
.ws1ef{word-spacing:-1.002933pt;}
.ws84{word-spacing:-0.950133pt;}
.ws123{word-spacing:-0.900267pt;}
.ws49{word-spacing:-0.790133pt;}
.ws207{word-spacing:-0.772800pt;}
.ws120{word-spacing:-0.743733pt;}
.ws1ed{word-spacing:-0.622933pt;}
.ws89{word-spacing:-0.584000pt;}
.ws1b7{word-spacing:-0.573600pt;}
.ws44{word-spacing:-0.465067pt;}
.ws185{word-spacing:-0.347733pt;}
.wsbd{word-spacing:-0.296000pt;}
.ws1ba{word-spacing:-0.275200pt;}
.ws52{word-spacing:0.000000pt;}
.ws19b{word-spacing:0.119733pt;}
.ws1da{word-spacing:0.418133pt;}
.ws196{word-spacing:0.422133pt;}
.wsca{word-spacing:0.443467pt;}
.ws3{word-spacing:0.476533pt;}
.wsa{word-spacing:0.657867pt;}
.ws13a{word-spacing:0.956267pt;}
.wsb4{word-spacing:0.995467pt;}
.ws1b4{word-spacing:1.036533pt;}
.ws1e{word-spacing:1.060533pt;}
.ws1b0{word-spacing:1.127733pt;}
.ws5f{word-spacing:1.215733pt;}
.ws97{word-spacing:1.230133pt;}
.ws13{word-spacing:1.293600pt;}
.ws12b{word-spacing:1.392800pt;}
.ws7e{word-spacing:1.482667pt;}
.ws149{word-spacing:1.665067pt;}
.ws1f{word-spacing:1.767200pt;}
.ws216{word-spacing:1.776267pt;}
.ws228{word-spacing:1.820000pt;}
.ws201{word-spacing:1.852533pt;}
.wsce{word-spacing:1.907200pt;}
.ws1ec{word-spacing:2.299200pt;}
.ws5a{word-spacing:2.636000pt;}
.ws12{word-spacing:2.713067pt;}
.ws1f0{word-spacing:2.738133pt;}
.ws1a5{word-spacing:2.777600pt;}
.ws32{word-spacing:2.852267pt;}
.wseb{word-spacing:2.944800pt;}
.wsb1{word-spacing:2.949867pt;}
.ws142{word-spacing:3.109867pt;}
.ws1b9{word-spacing:3.260267pt;}
.ws55{word-spacing:3.311467pt;}
.ws150{word-spacing:3.584533pt;}
.ws12f{word-spacing:3.736267pt;}
.ws3e{word-spacing:4.018133pt;}
.ws1f7{word-spacing:4.069067pt;}
.wsbc{word-spacing:4.282933pt;}
.ws5d{word-spacing:4.505867pt;}
.ws19d{word-spacing:4.824000pt;}
.wsb6{word-spacing:4.989867pt;}
.ws11a{word-spacing:5.062667pt;}
.ws2e{word-spacing:5.135467pt;}
.ws92{word-spacing:5.316000pt;}
.ws1f6{word-spacing:5.569067pt;}
.ws114{word-spacing:6.138400pt;}
.ws192{word-spacing:6.142400pt;}
.wsd2{word-spacing:6.144533pt;}
.ws202{word-spacing:6.152800pt;}
.ws113{word-spacing:6.372533pt;}
.ws112{word-spacing:6.452800pt;}
.ws41{word-spacing:6.480267pt;}
.ws1cf{word-spacing:6.536800pt;}
.ws4e{word-spacing:6.636800pt;}
.ws13f{word-spacing:6.733067pt;}
.ws177{word-spacing:6.790133pt;}
.ws15c{word-spacing:6.963200pt;}
.ws146{word-spacing:7.024000pt;}
.ws1d0{word-spacing:7.026133pt;}
.ws1c{word-spacing:7.120267pt;}
.ws162{word-spacing:7.777600pt;}
.wsb8{word-spacing:7.877333pt;}
.ws16d{word-spacing:7.894667pt;}
.ws21{word-spacing:8.305333pt;}
.ws1f5{word-spacing:8.361067pt;}
.ws15a{word-spacing:8.572267pt;}
.ws172{word-spacing:8.581600pt;}
.ws157{word-spacing:8.710400pt;}
.ws144{word-spacing:8.825333pt;}
.ws17b{word-spacing:8.829867pt;}
.ws45{word-spacing:8.940800pt;}
.ws1ac{word-spacing:9.040267pt;}
.wsc3{word-spacing:9.157333pt;}
.ws1d2{word-spacing:9.358933pt;}
.wsac{word-spacing:9.364533pt;}
.ws225{word-spacing:9.386133pt;}
.ws59{word-spacing:9.625867pt;}
.ws37{word-spacing:9.886933pt;}
.ws1f2{word-spacing:10.172533pt;}
.ws3a{word-spacing:10.251733pt;}
.ws8b{word-spacing:10.532267pt;}
.ws33{word-spacing:10.536267pt;}
.ws1e3{word-spacing:10.749867pt;}
.wsc0{word-spacing:10.834667pt;}
.ws1eb{word-spacing:11.019200pt;}
.ws5b{word-spacing:11.024267pt;}
.ws36{word-spacing:11.060000pt;}
.ws119{word-spacing:11.172267pt;}
.ws17c{word-spacing:11.270133pt;}
.wsbb{word-spacing:11.918133pt;}
.ws1db{word-spacing:12.133867pt;}
.ws61{word-spacing:12.326400pt;}
.ws12a{word-spacing:12.706667pt;}
.ws1dd{word-spacing:12.730667pt;}
.ws155{word-spacing:13.177067pt;}
.wscc{word-spacing:13.318667pt;}
.ws153{word-spacing:13.367200pt;}
.ws1e1{word-spacing:13.519200pt;}
.ws152{word-spacing:14.105867pt;}
.ws20e{word-spacing:14.380267pt;}
.ws209{word-spacing:14.466667pt;}
.ws160{word-spacing:14.493867pt;}
.ws1fd{word-spacing:14.740533pt;}
.ws1e7{word-spacing:15.035733pt;}
.ws6a{word-spacing:15.330667pt;}
.ws10e{word-spacing:15.542133pt;}
.ws1d4{word-spacing:15.652267pt;}
.ws20{word-spacing:15.743733pt;}
.ws78{word-spacing:15.745067pt;}
.ws204{word-spacing:16.338400pt;}
.ws168{word-spacing:16.379200pt;}
.ws26{word-spacing:16.450400pt;}
.ws166{word-spacing:16.644800pt;}
.ws1ea{word-spacing:17.059467pt;}
.ws4d{word-spacing:17.873333pt;}
.ws140{word-spacing:18.039733pt;}
.ws138{word-spacing:18.380267pt;}
.ws1bb{word-spacing:18.466667pt;}
.ws145{word-spacing:18.564800pt;}
.ws210{word-spacing:19.217067pt;}
.ws1f8{word-spacing:19.390133pt;}
.ws12c{word-spacing:19.879733pt;}
.ws62{word-spacing:20.224533pt;}
.ws127{word-spacing:20.452533pt;}
.ws39{word-spacing:20.751733pt;}
.ws8c{word-spacing:21.200267pt;}
.wsb3{word-spacing:21.368000pt;}
.ws35{word-spacing:21.724533pt;}
.ws66{word-spacing:22.419733pt;}
.ws69{word-spacing:22.573333pt;}
.ws126{word-spacing:22.591733pt;}
.ws72{word-spacing:23.632000pt;}
.ws1f1{word-spacing:24.152533pt;}
.ws1f3{word-spacing:24.153600pt;}
.ws1e9{word-spacing:26.444000pt;}
.ws195{word-spacing:27.065867pt;}
.ws1ee{word-spacing:27.436800pt;}
.wsec{word-spacing:27.470133pt;}
.ws18b{word-spacing:28.348000pt;}
.wsd1{word-spacing:30.313067pt;}
.ws5c{word-spacing:32.277067pt;}
.ws22d{word-spacing:33.429333pt;}
.ws173{word-spacing:34.571733pt;}
.ws16f{word-spacing:34.939200pt;}
.ws11b{word-spacing:35.585067pt;}
.ws1bd{word-spacing:36.080533pt;}
.ws6f{word-spacing:36.144267pt;}
.ws18a{word-spacing:36.422933pt;}
.ws235{word-spacing:45.635200pt;}
.wsdb{word-spacing:46.000640pt;}
.ws134{word-spacing:49.294667pt;}
.wsb7{word-spacing:51.217067pt;}
.ws121{word-spacing:91.594411pt;}
.wse4{word-spacing:146.064299pt;}
.wsda{word-spacing:197.153195pt;}
.wse1{word-spacing:197.336491pt;}
.wse5{word-spacing:206.764373pt;}
.ws10b{word-spacing:271.466795pt;}
.wse0{word-spacing:314.214187pt;}
.ws11f{word-spacing:325.500336pt;}
.ws118{word-spacing:548.970325pt;}
.ws116{word-spacing:552.250752pt;}
.ws117{word-spacing:614.110773pt;}
.wsf7{word-spacing:943.427755pt;}
._37{margin-left:-590.039882pt;}
._2b{margin-left:-553.788288pt;}
._2e{margin-left:-485.068245pt;}
._32{margin-left:-456.750848pt;}
._55{margin-left:-444.133077pt;}
._41{margin-left:-423.813504pt;}
._57{margin-left:-396.626347pt;}
._51{margin-left:-374.444757pt;}
._3b{margin-left:-313.632171pt;}
._40{margin-left:-311.007872pt;}
._50{margin-left:-268.627157pt;}
._1d{margin-left:-260.128299pt;}
._36{margin-left:-247.368363pt;}
._43{margin-left:-244.677504pt;}
._26{margin-left:-228.492757pt;}
._42{margin-left:-218.467539pt;}
._35{margin-left:-193.786027pt;}
._29{margin-left:-187.203627pt;}
._25{margin-left:-181.792171pt;}
._21{margin-left:-172.943275pt;}
._23{margin-left:-164.720171pt;}
._1c{margin-left:-163.384960pt;}
._1a{margin-left:-156.883627pt;}
._1f{margin-left:-155.519147pt;}
._2a{margin-left:-154.020821pt;}
._4b{margin-left:-151.266603pt;}
._4d{margin-left:-149.189333pt;}
._4c{margin-left:-147.830581pt;}
._44{margin-left:-142.009301pt;}
._4e{margin-left:-135.829333pt;}
._48{margin-left:-134.391936pt;}
._1b{margin-left:-129.328000pt;}
._4f{margin-left:-127.813333pt;}
._31{margin-left:-123.781333pt;}
._46{margin-left:-122.783573pt;}
._28{margin-left:-121.581227pt;}
._3f{margin-left:-119.986603pt;}
._49{margin-left:-118.965632pt;}
._4a{margin-left:-114.343936pt;}
._22{margin-left:-112.437333pt;}
._24{margin-left:-110.597333pt;}
._39{margin-left:-108.414251pt;}
._45{margin-left:-106.424533pt;}
._47{margin-left:-103.550293pt;}
._56{margin-left:-98.625435pt;}
._34{margin-left:-92.994901pt;}
._30{margin-left:-87.297408pt;}
._52{margin-left:-84.940757pt;}
._1e{margin-left:-81.017813pt;}
._20{margin-left:-77.177941pt;}
._2d{margin-left:-75.718912pt;}
._2c{margin-left:-72.835541pt;}
._2f{margin-left:-68.913579pt;}
._27{margin-left:-62.746667pt;}
._3e{margin-left:-61.182421pt;}
._3d{margin-left:-55.783936pt;}
._3a{margin-left:-52.744917pt;}
._38{margin-left:-46.963584pt;}
._53{margin-left:-44.599211pt;}
._33{margin-left:-42.235648pt;}
._3c{margin-left:-40.348544pt;}
._54{margin-left:-36.837333pt;}
._a{margin-left:-1.050133pt;}
._1{width:0.928533pt;}
._5e{width:11.529867pt;}
._19{width:12.460800pt;}
._5{width:14.160533pt;}
._9{width:15.567733pt;}
._0{width:16.756267pt;}
._6{width:18.130933pt;}
._4{width:19.941333pt;}
._11{width:20.986133pt;}
._e{width:21.918400pt;}
._d{width:23.245600pt;}
._c{width:24.313067pt;}
._17{width:25.428800pt;}
._8{width:26.340800pt;}
._12{width:27.385067pt;}
._59{width:29.389600pt;}
._15{width:30.720000pt;}
._3{width:32.162133pt;}
._7{width:33.569867pt;}
._5d{width:34.939200pt;}
._16{width:36.250400pt;}
._10{width:37.328800pt;}
._5a{width:39.959733pt;}
._5c{width:40.994133pt;}
._f{width:42.032267pt;}
._18{width:43.169867pt;}
._13{width:46.096267pt;}
._b{width:47.266133pt;}
._58{width:49.198400pt;}
._14{width:54.494133pt;}
._5b{width:59.373600pt;}
._2{width:76.102400pt;}
.fs8{font-size:32.256000pt;}
.fs5{font-size:37.034667pt;}
.fs3{font-size:38.229333pt;}
.fs10{font-size:42.933333pt;}
.fs2{font-size:53.066667pt;}
.fsb{font-size:53.248000pt;}
.fs9{font-size:55.296000pt;}
.fsa{font-size:58.287102pt;}
.fs6{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:65.536000pt;}
.fsd{font-size:66.709494pt;}
.fse{font-size:68.661472pt;}
.fsf{font-size:69.299914pt;}
.fs7{font-size:82.944000pt;}
.fsc{font-size:95.232000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y143{bottom:2.200000pt;}
.y141{bottom:2.226667pt;}
.y149{bottom:2.280000pt;}
.y147{bottom:2.306667pt;}
.y145{bottom:2.333333pt;}
.ybf{bottom:2.686667pt;}
.y14b{bottom:2.988000pt;}
.yeb{bottom:3.097333pt;}
.yf4{bottom:3.470667pt;}
.yb3{bottom:3.706667pt;}
.y178{bottom:3.746667pt;}
.yd1{bottom:3.758667pt;}
.yc6{bottom:3.821333pt;}
.yd4{bottom:3.830667pt;}
.y100{bottom:3.902667pt;}
.yc2{bottom:3.958667pt;}
.y10f{bottom:3.972000pt;}
.yb9{bottom:4.021333pt;}
.y1f3{bottom:4.041333pt;}
.ye2{bottom:4.061333pt;}
.yf7{bottom:4.658667pt;}
.y115{bottom:4.666667pt;}
.y19c{bottom:4.680000pt;}
.yd9{bottom:5.025333pt;}
.y119{bottom:5.108000pt;}
.yfc{bottom:5.241333pt;}
.y10a{bottom:5.305333pt;}
.ye8{bottom:5.373333pt;}
.y8a{bottom:5.480000pt;}
.y34{bottom:5.800000pt;}
.y1d0{bottom:6.280000pt;}
.y10d{bottom:6.492000pt;}
.yde{bottom:6.626667pt;}
.yc0{bottom:6.781333pt;}
.yd2{bottom:7.758667pt;}
.yc7{bottom:7.884000pt;}
.yd5{bottom:7.905333pt;}
.y104{bottom:8.084000pt;}
.y13a{bottom:8.360000pt;}
.y20c{bottom:8.733333pt;}
.ydc{bottom:9.000000pt;}
.yda{bottom:9.025333pt;}
.y11a{bottom:9.172000pt;}
.yfd{bottom:9.305333pt;}
.y109{bottom:9.314667pt;}
.y11d{bottom:9.329333pt;}
.ye0{bottom:9.798667pt;}
.yc5{bottom:15.164000pt;}
.yd3{bottom:15.204000pt;}
.yb8{bottom:15.364000pt;}
.yf9{bottom:15.929333pt;}
.y116{bottom:15.958667pt;}
.yd8{bottom:16.192000pt;}
.y113{bottom:16.250667pt;}
.ye4{bottom:17.066667pt;}
.yb2{bottom:18.266667pt;}
.y173{bottom:18.280000pt;}
.y177{bottom:18.466667pt;}
.y1f2{bottom:18.600000pt;}
.y19b{bottom:19.400000pt;}
.yf6{bottom:19.922667pt;}
.y114{bottom:19.958667pt;}
.y89{bottom:20.041333pt;}
.y33{bottom:20.360000pt;}
.ye1{bottom:20.488000pt;}
.y50{bottom:20.521333pt;}
.y20b{bottom:20.733333pt;}
.y1cf{bottom:20.841333pt;}
.y1a9{bottom:22.121333pt;}
.y139{bottom:22.921333pt;}
.ydb{bottom:23.560000pt;}
.ye3{bottom:25.725333pt;}
.yf8{bottom:27.076000pt;}
.ye5{bottom:29.145333pt;}
.y20a{bottom:32.733333pt;}
.yb1{bottom:32.826667pt;}
.y172{bottom:32.841333pt;}
.y176{bottom:32.866667pt;}
.y1f1{bottom:33.160000pt;}
.y19a{bottom:33.800000pt;}
.y226{bottom:34.174667pt;}
.y88{bottom:34.600000pt;}
.y32{bottom:34.921333pt;}
.y4f{bottom:35.080000pt;}
.ydf{bottom:35.274667pt;}
.y1ce{bottom:35.400000pt;}
.y1a8{bottom:36.680000pt;}
.y138{bottom:37.480000pt;}
.yd6{bottom:44.680000pt;}
.y225{bottom:46.174667pt;}
.y171{bottom:47.400000pt;}
.y175{bottom:47.426667pt;}
.yb0{bottom:47.546667pt;}
.y1f0{bottom:47.880000pt;}
.y209{bottom:48.093333pt;}
.y199{bottom:48.521333pt;}
.y87{bottom:49.160000pt;}
.y31{bottom:49.480000pt;}
.y4e{bottom:49.641333pt;}
.y1cd{bottom:49.960000pt;}
.y1a7{bottom:51.240000pt;}
.y137{bottom:52.041333pt;}
.y224{bottom:58.174667pt;}
.y208{bottom:60.093333pt;}
.yaf{bottom:61.946667pt;}
.y170{bottom:61.960000pt;}
.y1ef{bottom:62.280000pt;}
.y198{bottom:63.080000pt;}
.y86{bottom:63.880000pt;}
.y30{bottom:64.041333pt;}
.y4d{bottom:64.200000pt;}
.y1cc{bottom:64.521333pt;}
.y1a6{bottom:65.800000pt;}
.y136{bottom:66.600000pt;}
.ycf{bottom:69.160000pt;}
.y102{bottom:70.600000pt;}
.y207{bottom:72.093333pt;}
.y223{bottom:73.533333pt;}
.y16f{bottom:76.521333pt;}
.yae{bottom:76.666667pt;}
.y1ee{bottom:77.000000pt;}
.y197{bottom:77.641333pt;}
.y85{bottom:78.280000pt;}
.y2f{bottom:78.600000pt;}
.y4c{bottom:78.760000pt;}
.y1cb{bottom:79.080000pt;}
.y1a5{bottom:80.360000pt;}
.y135{bottom:81.160000pt;}
.y222{bottom:85.533333pt;}
.y206{bottom:87.454667pt;}
.yce{bottom:89.160000pt;}
.y101{bottom:90.441333pt;}
.yad{bottom:91.066667pt;}
.y16e{bottom:91.080000pt;}
.y1ed{bottom:91.400000pt;}
.yaa{bottom:93.000000pt;}
.y2e{bottom:93.160000pt;}
.y4b{bottom:93.321333pt;}
.y1ca{bottom:93.641333pt;}
.y1a4{bottom:94.921333pt;}
.y18{bottom:94.933333pt;}
.y134{bottom:95.880000pt;}
.y221{bottom:97.533333pt;}
.y205{bottom:99.454667pt;}
.y196{bottom:100.200000pt;}
.y84{bottom:101.000000pt;}
.ycd{bottom:103.721333pt;}
.yac{bottom:105.626667pt;}
.y16d{bottom:105.641333pt;}
.yfe{bottom:106.121333pt;}
.ya9{bottom:107.400000pt;}
.y2d{bottom:107.721333pt;}
.y4a{bottom:107.880000pt;}
.y1a3{bottom:109.480000pt;}
.y204{bottom:111.454667pt;}
.y220{bottom:112.733333pt;}
.y195{bottom:114.760000pt;}
.y83{bottom:115.400000pt;}
.y1c9{bottom:116.200000pt;}
.ycc{bottom:118.280000pt;}
.y16c{bottom:120.200000pt;}
.ya8{bottom:122.121333pt;}
.y2c{bottom:122.280000pt;}
.y49{bottom:122.441333pt;}
.y203{bottom:123.454667pt;}
.y1a2{bottom:124.041333pt;}
.y21f{bottom:124.733333pt;}
.yfa{bottom:127.240000pt;}
.y1ec{bottom:128.680000pt;}
.y194{bottom:129.321333pt;}
.y82{bottom:130.121333pt;}
.yd7{bottom:130.533333pt;}
.y1c8{bottom:130.760000pt;}
.ycb{bottom:132.841333pt;}
.y133{bottom:133.000000pt;}
.ya7{bottom:136.680000pt;}
.y48{bottom:137.000000pt;}
.y21e{bottom:140.093333pt;}
.y16b{bottom:142.760000pt;}
.y1eb{bottom:143.240000pt;}
.y193{bottom:143.880000pt;}
.y202{bottom:144.413333pt;}
.y81{bottom:144.680000pt;}
.y2b{bottom:144.841333pt;}
.y1c7{bottom:145.480000pt;}
.y1a1{bottom:146.600000pt;}
.yca{bottom:147.400000pt;}
.ya6{bottom:151.240000pt;}
.y47{bottom:151.560000pt;}
.y21d{bottom:152.093333pt;}
.yd0{bottom:156.333333pt;}
.y16a{bottom:157.321333pt;}
.y103{bottom:157.466667pt;}
.y1ea{bottom:157.800000pt;}
.y192{bottom:158.441333pt;}
.y80{bottom:159.240000pt;}
.y2a{bottom:159.400000pt;}
.y1c6{bottom:159.880000pt;}
.y1a0{bottom:161.160000pt;}
.y132{bottom:162.121333pt;}
.y21c{bottom:164.093333pt;}
.ya5{bottom:165.800000pt;}
.y46{bottom:166.121333pt;}
.yc9{bottom:169.960000pt;}
.y169{bottom:171.880000pt;}
.y1e9{bottom:172.360000pt;}
.y191{bottom:173.000000pt;}
.y7f{bottom:173.800000pt;}
.y1c5{bottom:174.600000pt;}
.y29{bottom:175.400000pt;}
.y201{bottom:175.773333pt;}
.y131{bottom:176.680000pt;}
.y21b{bottom:179.454667pt;}
.y45{bottom:180.680000pt;}
.yc8{bottom:184.521333pt;}
.y168{bottom:186.441333pt;}
.y1e8{bottom:186.921333pt;}
.y190{bottom:187.560000pt;}
.y7e{bottom:188.360000pt;}
.ya4{bottom:188.841333pt;}
.y1c4{bottom:189.000000pt;}
.y200{bottom:190.333333pt;}
.y130{bottom:191.240000pt;}
.y21a{bottom:191.454667pt;}
.y28{bottom:191.880000pt;}
.y44{bottom:195.240000pt;}
.yff{bottom:197.333333pt;}
.yf2{bottom:199.400000pt;}
.y167{bottom:201.000000pt;}
.y1e7{bottom:201.480000pt;}
.y18f{bottom:202.121333pt;}
.y7d{bottom:202.921333pt;}
.y219{bottom:203.454667pt;}
.y1c3{bottom:203.721333pt;}
.yc3{bottom:204.200000pt;}
.y1ff{bottom:204.893333pt;}
.y12f{bottom:205.800000pt;}
.y27{bottom:206.921333pt;}
.y43{bottom:209.800000pt;}
.yfb{bottom:212.933333pt;}
.y166{bottom:215.560000pt;}
.y1e6{bottom:216.041333pt;}
.y18e{bottom:216.680000pt;}
.y7c{bottom:217.480000pt;}
.yf0{bottom:217.800000pt;}
.y1c2{bottom:218.280000pt;}
.y218{bottom:218.813333pt;}
.y1fe{bottom:219.454667pt;}
.ya3{bottom:220.360000pt;}
.y26{bottom:221.480000pt;}
.y42{bottom:224.360000pt;}
.y165{bottom:230.280000pt;}
.y1e5{bottom:230.600000pt;}
.y217{bottom:230.813333pt;}
.y18d{bottom:231.240000pt;}
.y7b{bottom:232.041333pt;}
.yef{bottom:232.360000pt;}
.y1c1{bottom:232.841333pt;}
.y1fd{bottom:234.013333pt;}
.ya2{bottom:234.921333pt;}
.y25{bottom:236.041333pt;}
.y41{bottom:239.080000pt;}
.y216{bottom:242.813333pt;}
.y164{bottom:244.680000pt;}
.y1e4{bottom:245.160000pt;}
.yf5{bottom:245.933333pt;}
.y7a{bottom:246.600000pt;}
.yee{bottom:246.921333pt;}
.y1c0{bottom:247.400000pt;}
.y1fc{bottom:248.573333pt;}
.ya1{bottom:249.480000pt;}
.y24{bottom:250.600000pt;}
.y40{bottom:253.480000pt;}
.y18c{bottom:253.800000pt;}
.y215{bottom:258.173333pt;}
.y163{bottom:259.400000pt;}
.y1e3{bottom:259.721333pt;}
.y79{bottom:261.160000pt;}
.yed{bottom:261.480000pt;}
.y1fb{bottom:263.133333pt;}
.ya0{bottom:264.041333pt;}
.y23{bottom:265.160000pt;}
.ybd{bottom:267.080000pt;}
.y3f{bottom:268.200000pt;}
.y18b{bottom:268.360000pt;}
.y1bf{bottom:269.800000pt;}
.y214{bottom:270.173333pt;}
.y12e{bottom:272.041333pt;}
.y162{bottom:273.800000pt;}
.y1e2{bottom:274.280000pt;}
.y78{bottom:275.721333pt;}
.y1fa{bottom:277.693333pt;}
.y9f{bottom:278.600000pt;}
.y22{bottom:279.721333pt;}
.y213{bottom:282.173333pt;}
.y18a{bottom:282.921333pt;}
.yec{bottom:284.040000pt;}
.y1be{bottom:284.521333pt;}
.ybc{bottom:285.800000pt;}
.y12d{bottom:286.600000pt;}
.y161{bottom:288.360000pt;}
.y1e1{bottom:288.841333pt;}
.y77{bottom:290.280000pt;}
.yf3{bottom:290.400000pt;}
.y3e{bottom:290.600000pt;}
.yc4{bottom:291.400000pt;}
.y1f9{bottom:292.413333pt;}
.y9e{bottom:293.160000pt;}
.y212{bottom:294.173333pt;}
.y21{bottom:294.280000pt;}
.y189{bottom:297.480000pt;}
.ye9{bottom:299.721333pt;}
.ybb{bottom:300.200000pt;}
.y12c{bottom:301.160000pt;}
.y1e0{bottom:303.400000pt;}
.y76{bottom:304.841333pt;}
.y3d{bottom:305.321333pt;}
.yf1{bottom:306.400000pt;}
.y1f8{bottom:306.813333pt;}
.y9d{bottom:307.721333pt;}
.y20{bottom:308.841333pt;}
.y211{bottom:309.533333pt;}
.y160{bottom:311.080000pt;}
.y188{bottom:312.040000pt;}
.y12b{bottom:315.721333pt;}
.ye6{bottom:318.121333pt;}
.y75{bottom:319.400000pt;}
.y3c{bottom:319.880000pt;}
.yba{bottom:320.040000pt;}
.y210{bottom:321.533333pt;}
.y9c{bottom:322.280000pt;}
.y1f{bottom:323.400000pt;}
.yc1{bottom:324.133333pt;}
.y15f{bottom:325.480000pt;}
.y1df{bottom:325.960000pt;}
.y187{bottom:326.600000pt;}
.y1f7{bottom:329.533333pt;}
.y12a{bottom:330.280000pt;}
.y20f{bottom:333.533333pt;}
.y74{bottom:333.960000pt;}
.y3b{bottom:334.441333pt;}
.y9b{bottom:336.841333pt;}
.y1e{bottom:337.960000pt;}
.yb6{bottom:339.880000pt;}
.y15e{bottom:340.200000pt;}
.y1de{bottom:340.521333pt;}
.y186{bottom:341.160000pt;}
.y1f6{bottom:343.933333pt;}
.y129{bottom:344.841333pt;}
.y73{bottom:348.521333pt;}
.y20e{bottom:348.733333pt;}
.y3a{bottom:349.000000pt;}
.y9a{bottom:351.400000pt;}
.y1d{bottom:352.680000pt;}
.yb5{bottom:354.441333pt;}
.y15d{bottom:354.600000pt;}
.y1dd{bottom:355.080000pt;}
.ybe{bottom:355.333333pt;}
.y185{bottom:355.721333pt;}
.y1f5{bottom:358.493333pt;}
.y128{bottom:359.400000pt;}
.y20d{bottom:360.733333pt;}
.y39{bottom:363.560000pt;}
.y99{bottom:365.960000pt;}
.y1c{bottom:367.080000pt;}
.y15c{bottom:369.321333pt;}
.y1dc{bottom:369.641333pt;}
.y184{bottom:370.280000pt;}
.y72{bottom:371.721333pt;}
.y127{bottom:373.960000pt;}
.y38{bottom:378.121333pt;}
.y98{bottom:380.680000pt;}
.y1b{bottom:381.800000pt;}
.y15b{bottom:383.880000pt;}
.y1db{bottom:384.200000pt;}
.y183{bottom:384.841333pt;}
.y126{bottom:388.521333pt;}
.yea{bottom:391.000000pt;}
.y37{bottom:392.680000pt;}
.y97{bottom:395.080000pt;}
.y1a{bottom:396.200000pt;}
.y15a{bottom:398.441333pt;}
.y1da{bottom:398.760000pt;}
.y71{bottom:403.080000pt;}
.ye7{bottom:406.533333pt;}
.yb7{bottom:407.066667pt;}
.y36{bottom:407.240000pt;}
.y182{bottom:407.400000pt;}
.y96{bottom:409.800000pt;}
.y159{bottom:413.000000pt;}
.y1d9{bottom:413.321333pt;}
.y19f{bottom:413.960000pt;}
.y125{bottom:417.641333pt;}
.y70{bottom:417.800000pt;}
.y19{bottom:419.400000pt;}
.y35{bottom:421.800000pt;}
.y181{bottom:421.960000pt;}
.y95{bottom:424.200000pt;}
.y158{bottom:427.560000pt;}
.y1d8{bottom:427.880000pt;}
.y19e{bottom:428.680000pt;}
.y6f{bottom:432.200000pt;}
.ydd{bottom:432.666667pt;}
.y180{bottom:436.680000pt;}
.y94{bottom:438.921333pt;}
.y157{bottom:442.121333pt;}
.y1d7{bottom:442.441333pt;}
.y19d{bottom:443.080000pt;}
.y6e{bottom:446.921333pt;}
.y17f{bottom:451.080000pt;}
.y124{bottom:455.400000pt;}
.y1d6{bottom:457.000000pt;}
.y6d{bottom:461.480000pt;}
.y156{bottom:464.680000pt;}
.y17e{bottom:465.800000pt;}
.y1d5{bottom:471.560000pt;}
.y6c{bottom:476.040000pt;}
.y155{bottom:479.240000pt;}
.yb4{bottom:479.454667pt;}
.y17d{bottom:480.200000pt;}
.y1d4{bottom:486.280000pt;}
.y123{bottom:489.800000pt;}
.y6b{bottom:490.600000pt;}
.y154{bottom:493.800000pt;}
.y17c{bottom:494.921333pt;}
.y1d3{bottom:500.680000pt;}
.y1bd{bottom:503.721333pt;}
.y122{bottom:504.360000pt;}
.y6a{bottom:505.000000pt;}
.y153{bottom:508.360000pt;}
.y17b{bottom:509.480000pt;}
.y1d2{bottom:515.400000pt;}
.y1bc{bottom:518.280000pt;}
.y121{bottom:518.921333pt;}
.y69{bottom:519.721333pt;}
.y152{bottom:522.921333pt;}
.y17a{bottom:523.880000pt;}
.y1bb{bottom:532.841333pt;}
.y120{bottom:533.480000pt;}
.y68{bottom:534.280000pt;}
.y151{bottom:537.480000pt;}
.y1d1{bottom:538.440000pt;}
.y17{bottom:547.454667pt;}
.y11f{bottom:548.040000pt;}
.y67{bottom:548.841333pt;}
.y150{bottom:552.040000pt;}
.y1ba{bottom:555.400000pt;}
.y11e{bottom:562.600000pt;}
.y66{bottom:563.400000pt;}
.y14f{bottom:566.600000pt;}
.y1b9{bottom:569.960000pt;}
.y65{bottom:577.960000pt;}
.y16{bottom:578.493333pt;}
.y14e{bottom:581.160000pt;}
.y11b{bottom:583.560000pt;}
.y1b8{bottom:584.521333pt;}
.y64{bottom:592.521333pt;}
.y15{bottom:593.854667pt;}
.y14d{bottom:595.721333pt;}
.y1b7{bottom:599.080000pt;}
.y63{bottom:607.080000pt;}
.y117{bottom:608.680000pt;}
.y14{bottom:609.213333pt;}
.y14c{bottom:610.280000pt;}
.y1f4{bottom:613.600000pt;}
.y1b6{bottom:613.641333pt;}
.y93{bottom:621.640000pt;}
.y13{bottom:624.574667pt;}
.y1b5{bottom:628.200000pt;}
.y62{bottom:629.640000pt;}
.y92{bottom:636.200000pt;}
.y12{bottom:639.933333pt;}
.y179{bottom:641.533333pt;}
.y1b4{bottom:642.760000pt;}
.y61{bottom:644.200000pt;}
.y91{bottom:650.760000pt;}
.y11{bottom:655.133333pt;}
.y1b3{bottom:657.321333pt;}
.y60{bottom:658.760000pt;}
.y90{bottom:665.321333pt;}
.y11c{bottom:669.400000pt;}
.y10{bottom:670.493333pt;}
.y1b2{bottom:671.880000pt;}
.y5f{bottom:673.321333pt;}
.y8f{bottom:679.880000pt;}
.yf{bottom:685.854667pt;}
.y1b1{bottom:686.440000pt;}
.y5e{bottom:687.880000pt;}
.y111{bottom:694.280000pt;}
.y8e{bottom:694.440000pt;}
.y118{bottom:694.533333pt;}
.ye{bottom:701.213333pt;}
.y5d{bottom:702.440000pt;}
.y8d{bottom:709.000000pt;}
.yd{bottom:716.573333pt;}
.y5c{bottom:717.000000pt;}
.y8c{bottom:723.560000pt;}
.y112{bottom:727.333333pt;}
.y110{bottom:731.400000pt;}
.y5b{bottom:731.560000pt;}
.yc{bottom:731.933333pt;}
.y8b{bottom:738.121333pt;}
.y14a{bottom:739.666667pt;}
.y13f{bottom:741.160000pt;}
.y5a{bottom:746.121333pt;}
.yb{bottom:747.133333pt;}
.y1b0{bottom:752.680000pt;}
.y148{bottom:753.333333pt;}
.y59{bottom:760.680000pt;}
.ya{bottom:762.493333pt;}
.y13e{bottom:764.360000pt;}
.y146{bottom:766.266667pt;}
.y1af{bottom:767.240000pt;}
.y58{bottom:775.240000pt;}
.y9{bottom:778.333333pt;}
.y13d{bottom:778.921333pt;}
.y10b{bottom:779.080000pt;}
.y144{bottom:779.200000pt;}
.y1ae{bottom:781.800000pt;}
.y57{bottom:789.800000pt;}
.y142{bottom:792.133333pt;}
.y13c{bottom:793.480000pt;}
.y1ad{bottom:796.360000pt;}
.y56{bottom:804.360000pt;}
.y140{bottom:805.066667pt;}
.y1ac{bottom:811.080000pt;}
.y8{bottom:811.613333pt;}
.y13b{bottom:816.680000pt;}
.y55{bottom:819.080000pt;}
.y1ab{bottom:825.480000pt;}
.y7{bottom:826.973333pt;}
.y54{bottom:833.480000pt;}
.y107{bottom:837.640000pt;}
.y1aa{bottom:840.200000pt;}
.y6{bottom:842.333333pt;}
.y53{bottom:848.200000pt;}
.y105{bottom:858.600000pt;}
.y52{bottom:862.600000pt;}
.yab{bottom:866.466667pt;}
.y10c{bottom:867.466667pt;}
.y10e{bottom:869.933333pt;}
.y5{bottom:875.293333pt;}
.y51{bottom:877.160000pt;}
.y108{bottom:895.666667pt;}
.y4{bottom:902.813333pt;}
.y174{bottom:924.666667pt;}
.y3{bottom:938.013333pt;}
.y106{bottom:944.466667pt;}
.y2{bottom:965.533333pt;}
.y1{bottom:993.054667pt;}
.h24{height:12.200000pt;}
.h3c{height:12.866667pt;}
.h3f{height:13.600000pt;}
.h2f{height:15.000000pt;}
.h26{height:15.200000pt;}
.h22{height:17.600000pt;}
.h37{height:18.133333pt;}
.h36{height:20.600000pt;}
.h1e{height:22.396500pt;}
.hd{height:22.666667pt;}
.hf{height:23.533333pt;}
.h13{height:23.800000pt;}
.h1b{height:23.892750pt;}
.ha{height:25.066667pt;}
.h31{height:25.200000pt;}
.h14{height:25.714500pt;}
.h29{height:25.732583pt;}
.h17{height:25.933333pt;}
.h33{height:26.266667pt;}
.hb{height:26.544000pt;}
.h32{height:26.562667pt;}
.h2a{height:27.121833pt;}
.h18{height:27.432417pt;}
.h16{height:28.317333pt;}
.h3d{height:29.097396pt;}
.h3e{height:29.831120pt;}
.h1d{height:31.660500pt;}
.h3{height:35.965104pt;}
.h27{height:36.600000pt;}
.h38{height:36.666667pt;}
.h4{height:36.872005pt;}
.h25{height:36.998000pt;}
.h6{height:38.314133pt;}
.h1f{height:38.394000pt;}
.h20{height:38.421000pt;}
.h23{height:39.442000pt;}
.h1c{height:40.959000pt;}
.h21{height:43.174577pt;}
.h1{height:43.375000pt;}
.h19{height:43.866667pt;}
.h15{height:44.082000pt;}
.h28{height:44.113000pt;}
.he{height:45.504000pt;}
.h3b{height:45.536000pt;}
.h2b{height:47.027000pt;}
.h12{height:48.544000pt;}
.h2d{height:49.413233pt;}
.h2e{height:50.859108pt;}
.h30{height:51.332016pt;}
.h34{height:54.473917pt;}
.h2c{height:60.055333pt;}
.h3a{height:60.082000pt;}
.h40{height:60.400000pt;}
.h1a{height:61.438500pt;}
.h10{height:63.027000pt;}
.h35{height:63.064333pt;}
.hc{height:64.794667pt;}
.h2{height:65.062500pt;}
.h39{height:70.540500pt;}
.h11{height:73.688000pt;}
.h8{height:118.600000pt;}
.h42{height:371.466667pt;}
.h9{height:382.666667pt;}
.h5{height:434.666667pt;}
.h41{height:536.866667pt;}
.h7{height:890.133333pt;}
.h0{height:1056.000000pt;}
.wc{width:8.000000pt;}
.w10{width:8.800000pt;}
.wa{width:11.533333pt;}
.w6{width:16.000000pt;}
.w11{width:17.733333pt;}
.w7{width:19.533333pt;}
.we{width:21.266667pt;}
.w3{width:23.200000pt;}
.wb{width:28.466667pt;}
.w9{width:35.533333pt;}
.w17{width:66.200000pt;}
.w13{width:66.733333pt;}
.w15{width:67.933333pt;}
.w16{width:78.733333pt;}
.w5{width:93.266667pt;}
.w2{width:106.733333pt;}
.w14{width:109.266667pt;}
.w4{width:119.200000pt;}
.wd{width:122.733333pt;}
.w12{width:156.466667pt;}
.wf{width:193.800000pt;}
.w8{width:304.000000pt;}
.w1{width:409.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:1.162667pt;}
.xf{left:2.473333pt;}
.x4e{left:3.825333pt;}
.x42{left:7.082667pt;}
.xb{left:9.297333pt;}
.xe{left:10.234667pt;}
.x1d{left:11.313333pt;}
.x4{left:13.066667pt;}
.x39{left:17.885333pt;}
.x4f{left:20.437333pt;}
.x32{left:22.133333pt;}
.x2d{left:28.942667pt;}
.x5{left:32.266667pt;}
.x57{left:34.186667pt;}
.x23{left:36.262667pt;}
.x15{left:37.889333pt;}
.x2b{left:39.466667pt;}
.x50{left:42.125333pt;}
.xa{left:44.152000pt;}
.x28{left:45.408000pt;}
.x16{left:48.590667pt;}
.x4a{left:50.024000pt;}
.x38{left:51.444000pt;}
.x30{left:58.506667pt;}
.x1{left:59.520000pt;}
.x4c{left:60.848000pt;}
.x9{left:64.706667pt;}
.x52{left:66.186667pt;}
.x3a{left:69.496000pt;}
.x3b{left:71.121333pt;}
.x35{left:73.226667pt;}
.x2{left:78.720000pt;}
.x14{left:84.356000pt;}
.x7{left:85.920000pt;}
.x59{left:92.800000pt;}
.x58{left:95.945333pt;}
.x8{left:97.518667pt;}
.x12{left:109.113333pt;}
.x40{left:110.186667pt;}
.x37{left:114.520000pt;}
.x46{left:125.266667pt;}
.x13{left:128.800000pt;}
.x2e{left:130.026667pt;}
.x4d{left:131.684000pt;}
.x18{left:132.800000pt;}
.xd{left:140.666667pt;}
.x44{left:144.133333pt;}
.x4b{left:147.857333pt;}
.x47{left:154.878667pt;}
.x19{left:156.640000pt;}
.x49{left:162.866667pt;}
.x22{left:169.228000pt;}
.x10{left:170.240000pt;}
.xc{left:177.600000pt;}
.x20{left:179.117333pt;}
.x11{left:181.600000pt;}
.x1a{left:182.866667pt;}
.x45{left:187.033333pt;}
.x41{left:188.466667pt;}
.x33{left:193.866667pt;}
.x24{left:195.352000pt;}
.x26{left:196.345333pt;}
.x25{left:202.442667pt;}
.x21{left:203.896000pt;}
.x1b{left:210.240000pt;}
.x2a{left:221.300000pt;}
.x43{left:222.720000pt;}
.x27{left:229.382667pt;}
.x17{left:230.720000pt;}
.x1c{left:243.333333pt;}
.x51{left:262.720000pt;}
.x1e{left:272.000000pt;}
.x6{left:285.760000pt;}
.x29{left:288.225333pt;}
.x48{left:378.266667pt;}
.x3{left:406.933333pt;}
.x53{left:427.266667pt;}
.x1f{left:436.133333pt;}
.x2f{left:446.066667pt;}
.x34{left:472.133333pt;}
.x2c{left:490.400000pt;}
.x3c{left:496.333333pt;}
.x3f{left:501.133333pt;}
.x54{left:536.466667pt;}
.x36{left:540.133333pt;}
.x31{left:562.866667pt;}
.x3e{left:578.733333pt;}
.x55{left:604.333333pt;}
.x56{left:683.000000pt;}
}




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