
    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_725544cb48fd4a596af3ffc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b9e4a59050ffa228d09cad77.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50e87576b212cbeedc4a1ad6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_328f6116adc406056c1c95b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_673bb51e8254cadf79af582f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_47373929732fd0e64f235357.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3fd8b15f94f855ef019fba3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_73e69e372c73a52b7825ce81.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_43835a1f787d74ed0e838719.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fc3b2d906221f133c65d9cda.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b9e4a59050ffa228d09cad77.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_50e87576b212cbeedc4a1ad6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_328f6116adc406056c1c95b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0508d5ac7bf809df4caece8e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b9e4a59050ffa228d09cad77.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_50e87576b212cbeedc4a1ad6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_328f6116adc406056c1c95b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f9735036762302355ee41da1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9c53cd619908b163cb33d34f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.882324;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:ff14;src:url('chunks/assets/font_41fb34ee68861764594025d6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.976000px;}
.v2{vertical-align:24.372000px;}
.v1{vertical-align:35.100000px;}
.v3{vertical-align:54.000000px;}
.lsb{letter-spacing:-5.940000px;}
.lsd{letter-spacing:-3.644550px;}
.ls6{letter-spacing:-1.776000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.004800px;}
.ls9{letter-spacing:0.005688px;}
.lsa{letter-spacing:0.063600px;}
.ls3{letter-spacing:0.569430px;}
.ls7{letter-spacing:1.424430px;}
.ls1{letter-spacing:3.696000px;}
.ls2{letter-spacing:17.200200px;}
.ls0{letter-spacing:21.320640px;}
.ls4{letter-spacing:24.492000px;}
.ls8{letter-spacing:1395.163800px;}
.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;}
}
.ws86{word-spacing:-54.000000px;}
.ws2{word-spacing:-20.856000px;}
.ws3{word-spacing:-16.244430px;}
.ws6{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.820000px;}
.ws4{word-spacing:-14.249430px;}
.ws5{word-spacing:-13.680000px;}
.wsd{word-spacing:-12.411877px;}
.ws1{word-spacing:-12.411360px;}
.wsd4{word-spacing:-11.700000px;}
.wse{word-spacing:-11.520480px;}
.ws83{word-spacing:-11.520000px;}
.wse0{word-spacing:-10.800450px;}
.ws84{word-spacing:-10.140000px;}
.ws7{word-spacing:-9.952956px;}
.ws85{word-spacing:-9.360000px;}
.ws107{word-spacing:-7.637760px;}
.wse1{word-spacing:-7.155000px;}
.wsf9{word-spacing:-6.074550px;}
.wse2{word-spacing:-5.175450px;}
.ws10d{word-spacing:-4.481460px;}
.wsc{word-spacing:-4.289220px;}
.wsb{word-spacing:-3.959280px;}
.wsd0{word-spacing:-3.563460px;}
.wse6{word-spacing:-3.078540px;}
.ws104{word-spacing:-3.024000px;}
.ws2b{word-spacing:-2.969460px;}
.wsaa{word-spacing:-2.861460px;}
.wsa9{word-spacing:-2.808000px;}
.ws103{word-spacing:-2.753460px;}
.ws101{word-spacing:-2.700000px;}
.wse4{word-spacing:-2.646000px;}
.wsf{word-spacing:-2.639520px;}
.ws7f{word-spacing:-2.592000px;}
.ws21{word-spacing:-2.484540px;}
.wsf8{word-spacing:-2.474550px;}
.wscf{word-spacing:-2.376540px;}
.ws7e{word-spacing:-2.159460px;}
.ws88{word-spacing:-2.144610px;}
.wsb0{word-spacing:-2.106000px;}
.ws6b{word-spacing:-2.051460px;}
.ws115{word-spacing:-2.025000px;}
.ws16{word-spacing:-1.998000px;}
.ws27{word-spacing:-1.944000px;}
.wsc9{word-spacing:-1.890000px;}
.wsfe{word-spacing:-1.836000px;}
.ws5b{word-spacing:-1.728000px;}
.ws49{word-spacing:-1.674540px;}
.wsc1{word-spacing:-1.620000px;}
.ws5a{word-spacing:-1.566540px;}
.ws1b{word-spacing:-1.457460px;}
.ws95{word-spacing:-1.404000px;}
.wsb9{word-spacing:-1.349460px;}
.ws17{word-spacing:-1.324674px;}
.ws4c{word-spacing:-1.296000px;}
.wsea{word-spacing:-1.188000px;}
.ws77{word-spacing:-1.134000px;}
.ws38{word-spacing:-1.080000px;}
.ws66{word-spacing:-0.972540px;}
.ws58{word-spacing:-0.966296px;}
.ws87{word-spacing:-0.936000px;}
.wsb3{word-spacing:-0.918000px;}
.ws111{word-spacing:-0.864540px;}
.ws114{word-spacing:-0.810450px;}
.ws59{word-spacing:-0.810000px;}
.wsc2{word-spacing:-0.756540px;}
.ws89{word-spacing:-0.663000px;}
.wsff{word-spacing:-0.647460px;}
.ws10{word-spacing:-0.569430px;}
.ws80{word-spacing:-0.539460px;}
.wsb7{word-spacing:-0.486000px;}
.ws69{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.324000px;}
.ws5c{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.228000px;}
.ws4b{word-spacing:-0.216000px;}
.ws62{word-spacing:-0.162540px;}
.ws8a{word-spacing:-0.117390px;}
.ws19{word-spacing:-0.108000px;}
.ws112{word-spacing:-0.096000px;}
.ws31{word-spacing:-0.054540px;}
.ws9c{word-spacing:-0.054000px;}
.ws113{word-spacing:-0.048480px;}
.ws9{word-spacing:0.000000px;}
.ws75{word-spacing:0.054540px;}
.wsc8{word-spacing:0.216000px;}
.ws9d{word-spacing:0.324000px;}
.ws70{word-spacing:0.594000px;}
.wsb8{word-spacing:0.647460px;}
.wse5{word-spacing:0.810000px;}
.ws35{word-spacing:0.918000px;}
.wsa5{word-spacing:0.972540px;}
.wsac{word-spacing:1.026000px;}
.ws71{word-spacing:1.080000px;}
.ws67{word-spacing:1.241460px;}
.ws6f{word-spacing:1.296000px;}
.wseb{word-spacing:1.349460px;}
.ws1a{word-spacing:1.404000px;}
.wsbc{word-spacing:1.457460px;}
.ws7a{word-spacing:1.512000px;}
.ws34{word-spacing:1.674540px;}
.wsaf{word-spacing:1.728000px;}
.wsa{word-spacing:1.776000px;}
.wsef{word-spacing:1.782000px;}
.ws6a{word-spacing:1.836000px;}
.wsad{word-spacing:2.051460px;}
.wsbe{word-spacing:2.106000px;}
.wsbb{word-spacing:2.159460px;}
.ws9f{word-spacing:2.268540px;}
.ws20{word-spacing:2.376540px;}
.ws10c{word-spacing:2.430000px;}
.ws7d{word-spacing:2.484540px;}
.ws61{word-spacing:2.592000px;}
.ws30{word-spacing:2.646000px;}
.ws92{word-spacing:2.753460px;}
.ws1d{word-spacing:2.916000px;}
.ws26{word-spacing:2.969460px;}
.ws2d{word-spacing:3.007368px;}
.wsa2{word-spacing:3.024000px;}
.ws7b{word-spacing:3.078540px;}
.ws47{word-spacing:3.132000px;}
.ws68{word-spacing:3.186540px;}
.wsb1{word-spacing:3.240000px;}
.wsfd{word-spacing:3.294000px;}
.wse3{word-spacing:3.348000px;}
.wsba{word-spacing:3.402000px;}
.ws6d{word-spacing:3.456000px;}
.ws96{word-spacing:3.510000px;}
.ws57{word-spacing:3.563460px;}
.ws14{word-spacing:3.618000px;}
.ws4d{word-spacing:3.671460px;}
.wsab{word-spacing:3.726000px;}
.ws7c{word-spacing:3.780540px;}
.wsb4{word-spacing:3.834000px;}
.wsd1{word-spacing:3.888540px;}
.ws54{word-spacing:3.942000px;}
.ws91{word-spacing:4.104000px;}
.ws13{word-spacing:4.158000px;}
.ws90{word-spacing:4.212000px;}
.ws98{word-spacing:4.265460px;}
.ws65{word-spacing:4.320000px;}
.wsce{word-spacing:4.373460px;}
.ws18{word-spacing:4.428000px;}
.wsa4{word-spacing:4.481460px;}
.ws2c{word-spacing:4.536000px;}
.ws4f{word-spacing:4.590540px;}
.ws2a{word-spacing:4.644000px;}
.ws74{word-spacing:4.752000px;}
.ws51{word-spacing:4.806000px;}
.wsd3{word-spacing:4.860000px;}
.wsb2{word-spacing:4.968000px;}
.ws40{word-spacing:5.022000px;}
.wsa6{word-spacing:5.075460px;}
.wsca{word-spacing:5.130000px;}
.ws3c{word-spacing:5.183460px;}
.ws9a{word-spacing:5.238000px;}
.ws3b{word-spacing:5.292540px;}
.ws55{word-spacing:5.346000px;}
.wsed{word-spacing:5.400540px;}
.ws4a{word-spacing:5.454000px;}
.ws10b{word-spacing:5.562000px;}
.ws25{word-spacing:5.616000px;}
.wsa1{word-spacing:5.670000px;}
.ws60{word-spacing:5.777460px;}
.ws39{word-spacing:5.885460px;}
.wscd{word-spacing:5.906972px;}
.ws8c{word-spacing:5.940000px;}
.ws43{word-spacing:5.993460px;}
.ws53{word-spacing:6.048000px;}
.wsfb{word-spacing:6.156000px;}
.ws64{word-spacing:6.210540px;}
.ws44{word-spacing:6.264000px;}
.ws3d{word-spacing:6.587460px;}
.wsa8{word-spacing:6.642000px;}
.wsf1{word-spacing:6.695460px;}
.ws72{word-spacing:6.804540px;}
.ws33{word-spacing:6.858000px;}
.ws5f{word-spacing:6.966000px;}
.ws105{word-spacing:7.020000px;}
.ws9b{word-spacing:7.074000px;}
.ws10e{word-spacing:7.128000px;}
.wsee{word-spacing:7.182000px;}
.wse9{word-spacing:7.344000px;}
.ws50{word-spacing:7.397460px;}
.wsb5{word-spacing:7.452000px;}
.ws4e{word-spacing:7.560000px;}
.ws36{word-spacing:7.614540px;}
.wscb{word-spacing:7.668000px;}
.ws5d{word-spacing:7.830000px;}
.ws94{word-spacing:7.884000px;}
.ws32{word-spacing:7.991460px;}
.ws9e{word-spacing:8.046000px;}
.ws48{word-spacing:8.154000px;}
.ws3a{word-spacing:8.207460px;}
.ws106{word-spacing:8.262000px;}
.ws3e{word-spacing:8.316540px;}
.wsa0{word-spacing:8.424540px;}
.wsb6{word-spacing:8.478000px;}
.ws6e{word-spacing:8.640000px;}
.ws46{word-spacing:8.694000px;}
.wse8{word-spacing:8.856000px;}
.ws45{word-spacing:8.909460px;}
.ws22{word-spacing:8.964000px;}
.ws1e{word-spacing:9.072000px;}
.ws28{word-spacing:9.126540px;}
.wsc6{word-spacing:9.180000px;}
.ws37{word-spacing:9.234540px;}
.wsae{word-spacing:9.342000px;}
.ws10a{word-spacing:9.450000px;}
.ws93{word-spacing:10.098000px;}
.ws41{word-spacing:10.152000px;}
.wsc5{word-spacing:10.206000px;}
.ws1f{word-spacing:10.260000px;}
.wsf0{word-spacing:10.313460px;}
.ws8f{word-spacing:10.421460px;}
.ws5e{word-spacing:10.476000px;}
.ws99{word-spacing:10.692000px;}
.wsc0{word-spacing:11.123460px;}
.ws3f{word-spacing:11.231460px;}
.ws1c{word-spacing:11.286000px;}
.ws81{word-spacing:11.718000px;}
.wsec{word-spacing:11.825460px;}
.ws8d{word-spacing:11.880000px;}
.ws97{word-spacing:12.042540px;}
.ws102{word-spacing:12.258540px;}
.ws63{word-spacing:12.312000px;}
.ws52{word-spacing:12.582000px;}
.ws109{word-spacing:12.743460px;}
.wse7{word-spacing:12.852540px;}
.ws110{word-spacing:12.906000px;}
.ws8e{word-spacing:13.122000px;}
.wsc3{word-spacing:13.230000px;}
.ws24{word-spacing:13.337460px;}
.ws76{word-spacing:13.392000px;}
.wsfa{word-spacing:13.554540px;}
.wsa7{word-spacing:13.662540px;}
.wsd2{word-spacing:13.716000px;}
.wsa3{word-spacing:13.878000px;}
.ws100{word-spacing:13.932000px;}
.wsbd{word-spacing:14.039460px;}
.ws79{word-spacing:14.094000px;}
.ws73{word-spacing:14.202000px;}
.wsc4{word-spacing:14.688000px;}
.ws108{word-spacing:15.390000px;}
.ws12{word-spacing:15.768540px;}
.ws8b{word-spacing:15.822000px;}
.ws78{word-spacing:16.632000px;}
.ws2e{word-spacing:17.658000px;}
.wscc{word-spacing:17.873460px;}
.ws42{word-spacing:18.090540px;}
.ws15{word-spacing:18.252000px;}
.wsc7{word-spacing:18.630000px;}
.wsfc{word-spacing:19.116000px;}
.wsbf{word-spacing:19.440000px;}
.ws2f{word-spacing:20.250000px;}
.ws10f{word-spacing:20.466000px;}
.ws23{word-spacing:23.544000px;}
.ws82{word-spacing:25.920000px;}
.ws56{word-spacing:26.352540px;}
.wsf3{word-spacing:47.025000px;}
.ws29{word-spacing:47.574000px;}
.wsf5{word-spacing:53.055000px;}
.wsf4{word-spacing:59.040000px;}
.wsf6{word-spacing:102.330000px;}
.wsd7{word-spacing:130.995000px;}
.wsd9{word-spacing:147.825000px;}
.wsdc{word-spacing:148.995000px;}
.wsd8{word-spacing:152.595000px;}
.wsda{word-spacing:155.025000px;}
.wsdb{word-spacing:165.825000px;}
.wsd6{word-spacing:217.170000px;}
.wsd5{word-spacing:386.055000px;}
.wsf7{word-spacing:387.585000px;}
.wsde{word-spacing:398.835000px;}
.wsdd{word-spacing:407.205000px;}
.wsdf{word-spacing:428.805000px;}
.ws0{word-spacing:657.263400px;}
.wsf2{word-spacing:730.845000px;}
._c{margin-left:-2974.424220px;}
._11{margin-left:-2458.131000px;}
._b{margin-left:-1881.736920px;}
._9{margin-left:-59.040000px;}
._6{margin-left:-47.970000px;}
._23{margin-left:-32.288880px;}
._1f{margin-left:-28.987080px;}
._24{margin-left:-21.978000px;}
._d{margin-left:-17.223840px;}
._20{margin-left:-16.203780px;}
._53{margin-left:-14.036760px;}
._21{margin-left:-12.798000px;}
._1e{margin-left:-10.983600px;}
._e{margin-left:-8.937000px;}
._2{margin-left:-6.600000px;}
._4{margin-left:-5.560920px;}
._7d{margin-left:-4.557600px;}
._0{margin-left:-3.552000px;}
._1{margin-left:-1.780800px;}
._22{width:1.597200px;}
._7{width:2.640000px;}
._5{width:3.760920px;}
._3{width:5.151877px;}
._1d{width:6.360369px;}
._4f{width:8.325450px;}
._47{width:11.022450px;}
._7b{width:12.209550px;}
._8{width:13.680000px;}
._7c{width:21.600000px;}
._1a{width:29.133000px;}
._42{width:34.200000px;}
._f{width:39.462000px;}
._46{width:42.525000px;}
._28{width:45.000000px;}
._57{width:78.030000px;}
._63{width:80.415000px;}
._58{width:84.734550px;}
._66{width:86.400000px;}
._1b{width:96.706800px;}
._15{width:99.138000px;}
._67{width:104.175000px;}
._18{width:106.885800px;}
._6f{width:110.205000px;}
._6e{width:115.467000px;}
._78{width:116.730000px;}
._17{width:117.858000px;}
._72{width:120.330000px;}
._69{width:121.545000px;}
._5d{width:125.145000px;}
._64{width:128.205000px;}
._73{width:132.072000px;}
._6c{width:133.560000px;}
._5b{width:134.730000px;}
._65{width:137.160000px;}
._4b{width:138.600450px;}
._62{width:140.760000px;}
._44{width:141.795000px;}
._79{width:144.447000px;}
._61{width:145.482000px;}
._6b{width:149.130000px;}
._75{width:150.345000px;}
._74{width:152.190000px;}
._40{width:153.810000px;}
._5f{width:155.160000px;}
._3e{width:157.095000px;}
._7a{width:158.175000px;}
._4d{width:163.395000px;}
._2a{width:165.825000px;}
._31{width:168.210000px;}
._2c{width:176.625000px;}
._56{width:177.882750px;}
._36{width:182.610000px;}
._3b{width:186.210000px;}
._2d{width:187.425000px;}
._19{width:194.844000px;}
._2b{width:200.610000px;}
._4c{width:204.795000px;}
._38{width:211.767000px;}
._27{width:214.740000px;}
._13{width:216.606000px;}
._3c{width:220.995000px;}
._30{width:222.210000px;}
._16{width:224.289000px;}
._32{width:230.625000px;}
._14{width:233.337000px;}
._12{width:249.483000px;}
._a{width:256.713840px;}
._39{width:270.225000px;}
._1c{width:288.990000px;}
._37{width:302.625000px;}
._26{width:346.005000px;}
._5c{width:374.400000px;}
._76{width:380.385000px;}
._52{width:390.780450px;}
._5e{width:398.385000px;}
._5a{width:404.415000px;}
._43{width:415.308600px;}
._6a{width:422.415000px;}
._45{width:458.688600px;}
._10{width:519.558000px;}
._54{width:532.616550px;}
._55{width:543.690000px;}
._48{width:702.585900px;}
._25{width:712.800000px;}
._4e{width:773.193900px;}
._6d{width:795.780900px;}
._3d{width:809.685900px;}
._50{width:811.061700px;}
._3f{width:821.700900px;}
._41{width:839.700900px;}
._70{width:846.180900px;}
._59{width:875.295900px;}
._34{width:896.085900px;}
._68{width:899.280900px;}
._49{width:903.375900px;}
._60{width:916.965900px;}
._3a{width:921.915900px;}
._33{width:939.285900px;}
._29{width:941.625900px;}
._2e{width:944.145900px;}
._77{width:946.980900px;}
._35{width:951.390900px;}
._4a{width:954.691830px;}
._51{width:967.722000px;}
._2f{width:986.400900px;}
._71{width:997.380900px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.824000px;}
.fs9{font-size:35.802000px;}
.fsa{font-size:36.600000px;}
.fs6{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.714000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:41.145600px;}
.y7c{bottom:43.519200px;}
.y1{bottom:43.533750px;}
.y143{bottom:68.819850px;}
.y246{bottom:68.829600px;}
.y68{bottom:68.837400px;}
.y52{bottom:68.839200px;}
.yb9{bottom:68.839650px;}
.y1c7{bottom:68.842350px;}
.y14f{bottom:68.846850px;}
.y202{bottom:68.849850px;}
.y230{bottom:68.868600px;}
.yf7{bottom:69.020850px;}
.y290{bottom:69.442350px;}
.y18b{bottom:69.739350px;}
.y10{bottom:74.016750px;}
.y207{bottom:74.795100px;}
.y203{bottom:74.806200px;}
.y204{bottom:74.806350px;}
.y208{bottom:74.817600px;}
.y209{bottom:74.828850px;}
.y20a{bottom:74.851350px;}
.y20b{bottom:74.862600px;}
.y20c{bottom:74.873850px;}
.y28f{bottom:83.014350px;}
.y142{bottom:85.319850px;}
.y1fe{bottom:85.325850px;}
.y245{bottom:85.326600px;}
.yb8{bottom:85.336650px;}
.y67{bottom:85.337400px;}
.y1c6{bottom:85.339350px;}
.y14e{bottom:85.343850px;}
.y201{bottom:85.346850px;}
.y22f{bottom:85.365600px;}
.y51{bottom:85.403700px;}
.yf6{bottom:85.571850px;}
.y18a{bottom:86.344350px;}
.yf{bottom:87.516750px;}
.y28e{bottom:96.586350px;}
.ye{bottom:101.016750px;}
.y1fd{bottom:101.822850px;}
.y244{bottom:101.823600px;}
.yb7{bottom:101.833650px;}
.y1c5{bottom:101.836350px;}
.y66{bottom:101.840400px;}
.y14d{bottom:101.840850px;}
.y141{bottom:101.843850px;}
.y22e{bottom:101.862600px;}
.y50{bottom:101.968200px;}
.yf5{bottom:102.122850px;}
.y189{bottom:102.949350px;}
.y28d{bottom:110.158350px;}
.yd{bottom:114.516750px;}
.y1fc{bottom:118.319850px;}
.y243{bottom:118.320600px;}
.yb6{bottom:118.330650px;}
.y1c4{bottom:118.333350px;}
.y65{bottom:118.337400px;}
.y14c{bottom:118.337850px;}
.y140{bottom:118.340850px;}
.y22d{bottom:118.359600px;}
.y4f{bottom:118.532700px;}
.yf4{bottom:118.673850px;}
.y188{bottom:119.554350px;}
.y28c{bottom:123.730350px;}
.y1fb{bottom:134.819850px;}
.yb5{bottom:134.827650px;}
.y1c3{bottom:134.830350px;}
.y14b{bottom:134.834850px;}
.y13f{bottom:134.837850px;}
.y64{bottom:134.843400px;}
.y242{bottom:134.844600px;}
.y22c{bottom:134.856600px;}
.y4e{bottom:135.097200px;}
.yf3{bottom:135.224850px;}
.y187{bottom:136.159350px;}
.y28b{bottom:137.302350px;}
.y29{bottom:138.891750px;}
.y28a{bottom:150.874350px;}
.yb4{bottom:151.324650px;}
.y1fa{bottom:151.325850px;}
.y1c2{bottom:151.327350px;}
.y14a{bottom:151.331850px;}
.y13e{bottom:151.334850px;}
.y63{bottom:151.340400px;}
.y241{bottom:151.341600px;}
.y22b{bottom:151.353600px;}
.y4d{bottom:151.661700px;}
.yf2{bottom:151.775850px;}
.y28{bottom:152.391750px;}
.y186{bottom:152.764350px;}
.y289{bottom:164.446350px;}
.y27{bottom:165.891750px;}
.y1f9{bottom:167.822850px;}
.y149{bottom:167.828850px;}
.y13d{bottom:167.831850px;}
.y1c1{bottom:167.833350px;}
.yb3{bottom:167.836650px;}
.y62{bottom:167.837400px;}
.y240{bottom:167.838600px;}
.y22a{bottom:167.850600px;}
.y4c{bottom:168.208200px;}
.yf1{bottom:168.326850px;}
.y185{bottom:169.369350px;}
.y288{bottom:178.018350px;}
.y26{bottom:179.391750px;}
.y1f8{bottom:184.319850px;}
.y148{bottom:184.325850px;}
.y13c{bottom:184.328850px;}
.y1c0{bottom:184.330350px;}
.yb2{bottom:184.333650px;}
.y61{bottom:184.334400px;}
.y23f{bottom:184.335600px;}
.y229{bottom:184.347600px;}
.y4b{bottom:184.772700px;}
.yf0{bottom:184.877850px;}
.y184{bottom:185.974350px;}
.y287{bottom:191.590350px;}
.y25{bottom:192.891750px;}
.y147{bottom:200.822850px;}
.y13b{bottom:200.825850px;}
.y1bf{bottom:200.827350px;}
.yb1{bottom:200.830650px;}
.y23e{bottom:200.832600px;}
.y228{bottom:200.844600px;}
.y60{bottom:200.852400px;}
.y4a{bottom:201.337200px;}
.yef{bottom:201.428850px;}
.y183{bottom:202.579350px;}
.y286{bottom:205.162350px;}
.y24{bottom:206.391750px;}
.y2cf{bottom:208.801200px;}
.y312{bottom:209.464950px;}
.y146{bottom:217.319850px;}
.y13a{bottom:217.322850px;}
.yb0{bottom:217.327650px;}
.y23d{bottom:217.329600px;}
.y1be{bottom:217.333350px;}
.y227{bottom:217.341600px;}
.y5f{bottom:217.349400px;}
.y49{bottom:217.901700px;}
.yee{bottom:217.979850px;}
.y285{bottom:218.734350px;}
.y182{bottom:219.184350px;}
.y2ce{bottom:222.301200px;}
.y311{bottom:223.111200px;}
.y284{bottom:232.306350px;}
.y145{bottom:233.816850px;}
.y139{bottom:233.819850px;}
.yaf{bottom:233.824650px;}
.y23c{bottom:233.826600px;}
.y1bd{bottom:233.830350px;}
.y226{bottom:233.838600px;}
.y5e{bottom:233.846400px;}
.y48{bottom:234.466200px;}
.yed{bottom:234.530850px;}
.y181{bottom:235.789350px;}
.y2cd{bottom:235.801200px;}
.y310{bottom:236.757450px;}
.y283{bottom:245.878350px;}
.y2cc{bottom:249.301200px;}
.y144{bottom:250.313850px;}
.y138{bottom:250.316850px;}
.y1f7{bottom:250.322850px;}
.y23b{bottom:250.323600px;}
.y1bc{bottom:250.327350px;}
.y225{bottom:250.335600px;}
.y5d{bottom:250.343400px;}
.yae{bottom:250.345650px;}
.y30f{bottom:250.403700px;}
.y47{bottom:251.067450px;}
.yec{bottom:251.081850px;}
.y180{bottom:252.394350px;}
.y282{bottom:259.450350px;}
.y2cb{bottom:262.801200px;}
.y30e{bottom:264.049950px;}
.y1f6{bottom:266.819850px;}
.y200{bottom:266.824350px;}
.y224{bottom:266.832600px;}
.y5c{bottom:266.840400px;}
.y23a{bottom:266.841600px;}
.y1bb{bottom:266.842350px;}
.yad{bottom:266.842650px;}
.yeb{bottom:267.632850px;}
.y17f{bottom:268.999350px;}
.y281{bottom:273.022350px;}
.y2ca{bottom:276.301200px;}
.y30d{bottom:277.696200px;}
.y1f5{bottom:283.316850px;}
.y1ff{bottom:283.321350px;}
.y223{bottom:283.329600px;}
.y5b{bottom:283.337400px;}
.y239{bottom:283.338600px;}
.y1ba{bottom:283.339350px;}
.yac{bottom:283.339650px;}
.yea{bottom:284.183850px;}
.y17e{bottom:285.604350px;}
.y280{bottom:286.594350px;}
.y2c9{bottom:289.801200px;}
.y30c{bottom:291.342450px;}
.y137{bottom:295.238700px;}
.y222{bottom:299.826600px;}
.y5a{bottom:299.834400px;}
.y238{bottom:299.835600px;}
.y1b9{bottom:299.836350px;}
.yab{bottom:299.836650px;}
.y27f{bottom:300.166350px;}
.ye9{bottom:300.734850px;}
.y17d{bottom:302.209350px;}
.y2c8{bottom:303.301200px;}
.y30b{bottom:304.988700px;}
.y136{bottom:306.218700px;}
.y27e{bottom:313.738350px;}
.y221{bottom:316.323600px;}
.y237{bottom:316.332600px;}
.y1b8{bottom:316.333350px;}
.yaa{bottom:316.333650px;}
.y59{bottom:316.346400px;}
.y2c7{bottom:316.801200px;}
.y135{bottom:317.198700px;}
.ye8{bottom:317.285850px;}
.y30a{bottom:318.634950px;}
.y46{bottom:321.163200px;}
.y205{bottom:324.432600px;}
.y206{bottom:325.040100px;}
.y27d{bottom:327.310350px;}
.y134{bottom:328.178700px;}
.y1f4{bottom:329.352450px;}
.y2c6{bottom:330.301200px;}
.y309{bottom:332.281200px;}
.y236{bottom:332.829600px;}
.y1b7{bottom:332.830350px;}
.ya9{bottom:332.830650px;}
.y58{bottom:332.843400px;}
.y220{bottom:332.859600px;}
.ye7{bottom:333.836850px;}
.y45{bottom:337.721700px;}
.y133{bottom:339.158700px;}
.y27c{bottom:340.882350px;}
.y1f3{bottom:343.606200px;}
.y2c5{bottom:343.801200px;}
.y308{bottom:345.927450px;}
.y17c{bottom:348.244350px;}
.y235{bottom:349.326600px;}
.y1b6{bottom:349.327350px;}
.ya8{bottom:349.327650px;}
.y57{bottom:349.340400px;}
.y21f{bottom:349.356600px;}
.y132{bottom:350.138700px;}
.ye6{bottom:350.387850px;}
.y44{bottom:354.280200px;}
.y27b{bottom:354.454350px;}
.y2c4{bottom:357.301200px;}
.y1f2{bottom:357.859950px;}
.y307{bottom:359.573700px;}
.y17b{bottom:364.849350px;}
.y234{bottom:365.823600px;}
.ya7{bottom:365.824650px;}
.y56{bottom:365.837400px;}
.y21e{bottom:365.853600px;}
.y1b5{bottom:365.866350px;}
.y131{bottom:366.006450px;}
.ye5{bottom:366.938850px;}
.y27a{bottom:368.026350px;}
.y2c3{bottom:370.801200px;}
.y43{bottom:370.838700px;}
.y1f1{bottom:372.113700px;}
.y306{bottom:373.219950px;}
.y130{bottom:377.706450px;}
.y17a{bottom:381.454350px;}
.y279{bottom:381.598350px;}
.ya6{bottom:382.324650px;}
.y233{bottom:382.329600px;}
.y55{bottom:382.334400px;}
.y21d{bottom:382.350600px;}
.y1b4{bottom:382.363350px;}
.ye4{bottom:383.483850px;}
.y2c2{bottom:384.301200px;}
.y305{bottom:386.866200px;}
.y42{bottom:387.397200px;}
.y12f{bottom:389.406450px;}
.y1f0{bottom:389.536200px;}
.y278{bottom:395.170350px;}
.y2c1{bottom:397.801200px;}
.y179{bottom:398.059350px;}
.y54{bottom:398.806200px;}
.y232{bottom:398.826600px;}
.y21c{bottom:398.847600px;}
.y1b3{bottom:398.860350px;}
.y304{bottom:400.512450px;}
.y12e{bottom:401.106450px;}
.y41{bottom:403.955700px;}
.y1ef{bottom:406.973700px;}
.y277{bottom:408.742350px;}
.y2c0{bottom:411.301200px;}
.y12d{bottom:412.806450px;}
.y303{bottom:414.158700px;}
.y178{bottom:414.664350px;}
.y53{bottom:415.303200px;}
.y231{bottom:415.323600px;}
.y21b{bottom:415.344600px;}
.y1b2{bottom:415.357350px;}
.y40{bottom:420.514200px;}
.y276{bottom:422.314350px;}
.ya5{bottom:423.196650px;}
.y1ee{bottom:424.411200px;}
.y12c{bottom:424.506450px;}
.y302{bottom:427.804950px;}
.ye3{bottom:429.363000px;}
.y177{bottom:431.269350px;}
.y21a{bottom:431.841600px;}
.y1b1{bottom:431.854350px;}
.y275{bottom:435.886350px;}
.y12b{bottom:436.206450px;}
.y3f{bottom:437.072700px;}
.ya4{bottom:439.693650px;}
.y301{bottom:441.451200px;}
.y1ed{bottom:441.848700px;}
.ye2{bottom:445.914000px;}
.y2bf{bottom:446.551200px;}
.y176{bottom:447.874350px;}
.y219{bottom:448.338600px;}
.y1b0{bottom:448.351350px;}
.y274{bottom:449.458350px;}
.y12a{bottom:452.518200px;}
.y3e{bottom:453.631200px;}
.y300{bottom:455.097450px;}
.ya3{bottom:456.190650px;}
.y1ec{bottom:459.286200px;}
.y2be{bottom:460.051200px;}
.ye1{bottom:462.465000px;}
.y273{bottom:463.030350px;}
.y129{bottom:464.218200px;}
.y175{bottom:464.479350px;}
.y218{bottom:464.835600px;}
.y1af{bottom:464.848350px;}
.y79{bottom:467.019750px;}
.y2ff{bottom:468.743700px;}
.y3d{bottom:470.189700px;}
.ya2{bottom:472.687650px;}
.y2bd{bottom:473.551200px;}
.y128{bottom:475.918200px;}
.y272{bottom:476.602350px;}
.y1eb{bottom:476.723700px;}
.ye0{bottom:479.016000px;}
.y174{bottom:481.084350px;}
.y217{bottom:481.332600px;}
.y1ae{bottom:481.345350px;}
.y2fe{bottom:482.389950px;}
.y78{bottom:483.521250px;}
.y3c{bottom:486.748200px;}
.y2bc{bottom:487.051200px;}
.y127{bottom:487.618200px;}
.ya1{bottom:489.220650px;}
.y271{bottom:490.174350px;}
.y1ea{bottom:494.161200px;}
.ydf{bottom:495.567000px;}
.y2fd{bottom:496.036200px;}
.y173{bottom:497.689350px;}
.y216{bottom:497.829600px;}
.y1ad{bottom:497.842350px;}
.y23{bottom:498.488700px;}
.y126{bottom:499.318200px;}
.y77{bottom:500.012250px;}
.y2bb{bottom:500.551200px;}
.y3b{bottom:503.306700px;}
.y270{bottom:503.746350px;}
.ya0{bottom:505.717650px;}
.y2fc{bottom:509.682450px;}
.y125{bottom:511.018200px;}
.y1e9{bottom:511.598700px;}
.y22{bottom:511.988700px;}
.yde{bottom:512.118000px;}
.y2ba{bottom:514.051200px;}
.y172{bottom:514.294350px;}
.y215{bottom:514.326600px;}
.y1ac{bottom:514.339350px;}
.y76{bottom:516.513750px;}
.y26f{bottom:517.318350px;}
.y3a{bottom:519.865200px;}
.y9f{bottom:522.214650px;}
.y124{bottom:522.718200px;}
.y2fb{bottom:523.328700px;}
.y21{bottom:525.488700px;}
.ydd{bottom:528.669000px;}
.y1e8{bottom:529.036200px;}
.y214{bottom:530.823600px;}
.y1ab{bottom:530.836350px;}
.y26e{bottom:530.890350px;}
.y171{bottom:530.899350px;}
.y2b9{bottom:533.551200px;}
.y39{bottom:536.423700px;}
.y2fa{bottom:536.974950px;}
.y9e{bottom:538.711650px;}
.y20{bottom:538.988700px;}
.y123{bottom:539.029950px;}
.y26d{bottom:544.462350px;}
.ydc{bottom:545.220000px;}
.y1e7{bottom:546.473700px;}
.y75{bottom:547.265250px;}
.y213{bottom:547.320600px;}
.y1aa{bottom:547.333350px;}
.y170{bottom:547.504350px;}
.y2f9{bottom:550.621200px;}
.y122{bottom:550.729950px;}
.y1f{bottom:552.488700px;}
.y38{bottom:552.982200px;}
.y2b8{bottom:553.051200px;}
.y9d{bottom:555.208650px;}
.y26c{bottom:558.034350px;}
.ydb{bottom:561.771000px;}
.y121{bottom:562.429950px;}
.y74{bottom:563.766750px;}
.y1a9{bottom:563.830350px;}
.y1e6{bottom:563.911200px;}
.y16f{bottom:564.109350px;}
.y2f8{bottom:564.267450px;}
.y2b7{bottom:566.551200px;}
.y37{bottom:569.540700px;}
.y26b{bottom:571.606350px;}
.y9c{bottom:571.705650px;}
.y120{bottom:574.129950px;}
.y2f7{bottom:577.913700px;}
.yda{bottom:578.322000px;}
.y1e{bottom:579.488700px;}
.y2b6{bottom:580.051200px;}
.y73{bottom:580.268250px;}
.y1a8{bottom:580.327350px;}
.y16e{bottom:580.714350px;}
.y1e5{bottom:581.348700px;}
.y26a{bottom:585.178350px;}
.y212{bottom:585.987450px;}
.y36{bottom:586.099200px;}
.y9b{bottom:588.202650px;}
.y11f{bottom:590.441700px;}
.y2f6{bottom:591.559950px;}
.y1d{bottom:592.988700px;}
.y2b5{bottom:593.551200px;}
.yd9{bottom:594.873000px;}
.y72{bottom:596.769750px;}
.y1a7{bottom:596.824350px;}
.y16d{bottom:597.319350px;}
.y269{bottom:598.750350px;}
.y1e4{bottom:598.786200px;}
.y11e{bottom:602.141700px;}
.y211{bottom:602.484450px;}
.y35{bottom:602.657700px;}
.y9a{bottom:604.699650px;}
.y2f5{bottom:605.206200px;}
.y1c{bottom:606.488700px;}
.y2b4{bottom:607.051200px;}
.yd8{bottom:611.424000px;}
.y268{bottom:612.322350px;}
.y71{bottom:613.271250px;}
.y1a6{bottom:613.324350px;}
.y11d{bottom:613.841700px;}
.y16c{bottom:613.924350px;}
.y1e3{bottom:616.223700px;}
.y2f4{bottom:618.852450px;}
.y210{bottom:618.981450px;}
.y34{bottom:619.216200px;}
.y1b{bottom:619.988700px;}
.y2b3{bottom:620.551200px;}
.y99{bottom:621.196650px;}
.y11c{bottom:625.541700px;}
.yd7{bottom:627.975000px;}
.y70{bottom:629.763750px;}
.y16b{bottom:630.529350px;}
.y2f3{bottom:632.498700px;}
.y1a{bottom:633.488700px;}
.y1e2{bottom:633.661200px;}
.y2b2{bottom:634.051200px;}
.y20f{bottom:635.478450px;}
.y33{bottom:635.774700px;}
.y98{bottom:637.693650px;}
.y11b{bottom:641.853450px;}
.yd6{bottom:644.526000px;}
.y2f2{bottom:646.144950px;}
.y19{bottom:646.988700px;}
.y16a{bottom:647.134350px;}
.y2b1{bottom:647.551200px;}
.y267{bottom:649.294350px;}
.y1e1{bottom:651.098700px;}
.y20e{bottom:651.975450px;}
.y32{bottom:652.333200px;}
.y11a{bottom:653.553450px;}
.y97{bottom:654.190650px;}
.y1a5{bottom:654.616350px;}
.y266{bottom:657.472350px;}
.y2f1{bottom:659.791200px;}
.y18{bottom:660.488700px;}
.y6f{bottom:660.515250px;}
.y2b0{bottom:661.051200px;}
.yd5{bottom:661.077000px;}
.y169{bottom:663.739350px;}
.y119{bottom:665.253450px;}
.y20d{bottom:668.472450px;}
.y1e0{bottom:668.536200px;}
.y31{bottom:668.891700px;}
.y96{bottom:670.687650px;}
.y1a4{bottom:671.113350px;}
.y2f0{bottom:673.437450px;}
.y2af{bottom:674.551200px;}
.y265{bottom:676.444350px;}
.y6e{bottom:677.016750px;}
.yd4{bottom:677.628000px;}
.y168{bottom:680.344350px;}
.y118{bottom:681.565200px;}
.y264{bottom:684.622350px;}
.y30{bottom:685.450200px;}
.y1df{bottom:685.973700px;}
.y2ef{bottom:687.083700px;}
.y95{bottom:687.184650px;}
.y1a3{bottom:687.610350px;}
.y2ae{bottom:688.051200px;}
.y17{bottom:691.988700px;}
.y117{bottom:693.265200px;}
.y6d{bottom:693.518250px;}
.yd3{bottom:694.179000px;}
.y167{bottom:696.949350px;}
.y2ee{bottom:700.729950px;}
.y2ad{bottom:701.551200px;}
.y2f{bottom:702.008700px;}
.y1de{bottom:703.411200px;}
.y263{bottom:703.594350px;}
.y94{bottom:703.677900px;}
.y1a2{bottom:704.107350px;}
.y116{bottom:704.965200px;}
.y16{bottom:705.488700px;}
.y6c{bottom:710.019750px;}
.yd2{bottom:710.730000px;}
.y166{bottom:713.554350px;}
.y2ed{bottom:714.376200px;}
.y2ac{bottom:715.051200px;}
.y262{bottom:717.169350px;}
.y2e{bottom:718.567200px;}
.y1a1{bottom:720.604350px;}
.y1dd{bottom:720.848700px;}
.y93{bottom:720.934650px;}
.y115{bottom:721.276950px;}
.y261{bottom:725.347350px;}
.y6b{bottom:726.521250px;}
.yd1{bottom:727.281000px;}
.y2ec{bottom:728.022450px;}
.y2ab{bottom:728.551200px;}
.y7a{bottom:730.181745px;}
.y15{bottom:732.488700px;}
.y114{bottom:732.976950px;}
.y2d{bottom:735.125700px;}
.y1a0{bottom:737.101350px;}
.y1dc{bottom:738.286200px;}
.y2eb{bottom:741.668700px;}
.y2aa{bottom:742.051200px;}
.y6a{bottom:743.021250px;}
.yd0{bottom:743.832000px;}
.y260{bottom:744.319350px;}
.y113{bottom:744.676950px;}
.y14{bottom:745.988700px;}
.y2c{bottom:751.684200px;}
.y25f{bottom:752.497350px;}
.y19f{bottom:753.598350px;}
.y2ea{bottom:755.314950px;}
.y2a9{bottom:755.551200px;}
.y1db{bottom:755.723700px;}
.y13{bottom:759.488700px;}
.y165{bottom:759.589350px;}
.ycf{bottom:760.383000px;}
.y112{bottom:760.988700px;}
.y92{bottom:761.809650px;}
.y2b{bottom:768.242700px;}
.y2e9{bottom:768.961200px;}
.y2a8{bottom:769.051200px;}
.y19e{bottom:770.095350px;}
.y25e{bottom:771.469350px;}
.y111{bottom:772.688700px;}
.y12{bottom:772.988700px;}
.y1da{bottom:773.161200px;}
.y69{bottom:775.801350px;}
.y164{bottom:776.194350px;}
.yce{bottom:776.934000px;}
.y91{bottom:778.306650px;}
.y2a7{bottom:782.551200px;}
.y2e8{bottom:782.607450px;}
.y110{bottom:784.388700px;}
.y2a{bottom:784.801200px;}
.y25d{bottom:785.044350px;}
.y11{bottom:786.488700px;}
.y19d{bottom:786.592350px;}
.y1d9{bottom:790.598700px;}
.y163{bottom:792.799350px;}
.ycd{bottom:793.485000px;}
.y90{bottom:794.803650px;}
.y2a6{bottom:796.051200px;}
.y10f{bottom:796.088700px;}
.y2e7{bottom:796.253700px;}
.y25c{bottom:798.619350px;}
.y19c{bottom:803.089350px;}
.y25b{bottom:806.797350px;}
.y1d8{bottom:808.036200px;}
.y162{bottom:809.404350px;}
.y2a5{bottom:809.551200px;}
.y2e6{bottom:809.899950px;}
.ycc{bottom:810.036000px;}
.y8f{bottom:811.300650px;}
.y10e{bottom:812.400450px;}
.y19b{bottom:819.586350px;}
.y2a4{bottom:823.051200px;}
.y2e5{bottom:823.546200px;}
.y10d{bottom:824.100450px;}
.y1d7{bottom:825.473700px;}
.y25a{bottom:825.769350px;}
.y161{bottom:826.009350px;}
.yb{bottom:826.048200px;}
.ycb{bottom:826.587000px;}
.y8e{bottom:827.797650px;}
.y10c{bottom:835.800450px;}
.y19a{bottom:836.083350px;}
.y2a3{bottom:836.551200px;}
.y2e4{bottom:837.192450px;}
.y259{bottom:839.344350px;}
.y160{bottom:842.614350px;}
.y1d6{bottom:842.911200px;}
.yca{bottom:843.138000px;}
.y8d{bottom:844.294650px;}
.ya{bottom:848.548200px;}
.y2a2{bottom:850.051200px;}
.y2e3{bottom:850.838700px;}
.y10b{bottom:852.112200px;}
.y199{bottom:852.580350px;}
.y258{bottom:852.919350px;}
.y15f{bottom:859.219350px;}
.yc9{bottom:859.689000px;}
.y1d5{bottom:860.348700px;}
.y8c{bottom:860.806650px;}
.y257{bottom:861.100350px;}
.y2a1{bottom:863.551200px;}
.y10a{bottom:863.812200px;}
.y2e2{bottom:864.484950px;}
.y198{bottom:869.077350px;}
.y9{bottom:871.048200px;}
.y256{bottom:874.672350px;}
.y109{bottom:875.512200px;}
.y15e{bottom:875.824350px;}
.yc8{bottom:876.228000px;}
.y2a0{bottom:877.051200px;}
.y8b{bottom:877.303650px;}
.y1d4{bottom:877.786200px;}
.y2e1{bottom:878.131200px;}
.y197{bottom:885.574350px;}
.y108{bottom:887.212200px;}
.y29f{bottom:890.551200px;}
.y2e0{bottom:891.777450px;}
.y15d{bottom:892.429350px;}
.yc7{bottom:892.749000px;}
.y8{bottom:893.548200px;}
.y255{bottom:893.644350px;}
.y8a{bottom:893.800650px;}
.y1d3{bottom:895.223700px;}
.y107{bottom:898.912200px;}
.y254{bottom:901.822350px;}
.y196{bottom:902.071350px;}
.y2df{bottom:905.423700px;}
.y15c{bottom:909.034350px;}
.yc6{bottom:909.300000px;}
.y29e{bottom:910.051200px;}
.y89{bottom:910.297650px;}
.y106{bottom:910.612200px;}
.y1d2{bottom:912.661200px;}
.y7{bottom:916.051200px;}
.y195{bottom:918.568350px;}
.y2de{bottom:919.069950px;}
.y253{bottom:920.794350px;}
.y105{bottom:922.312200px;}
.y15b{bottom:925.639350px;}
.yc5{bottom:925.851000px;}
.y88{bottom:926.815650px;}
.y29d{bottom:929.551200px;}
.y1d1{bottom:930.098700px;}
.y2dd{bottom:932.716200px;}
.y104{bottom:934.012200px;}
.y252{bottom:934.369350px;}
.y194{bottom:935.065350px;}
.y15a{bottom:942.244350px;}
.yc4{bottom:942.402000px;}
.y251{bottom:942.547350px;}
.y87{bottom:943.312650px;}
.y103{bottom:945.712200px;}
.y2dc{bottom:946.362450px;}
.y1d0{bottom:947.536200px;}
.y29c{bottom:949.051200px;}
.y193{bottom:951.562350px;}
.y6{bottom:955.051200px;}
.y102{bottom:957.412200px;}
.y159{bottom:958.849350px;}
.yc3{bottom:958.953000px;}
.y86{bottom:959.809650px;}
.y2db{bottom:960.008700px;}
.y250{bottom:961.519350px;}
.y29b{bottom:962.551200px;}
.y1cf{bottom:964.973700px;}
.y192{bottom:968.059350px;}
.y2da{bottom:973.654950px;}
.y101{bottom:973.723950px;}
.y24f{bottom:975.094350px;}
.y158{bottom:975.454350px;}
.yc2{bottom:975.492000px;}
.y85{bottom:976.306650px;}
.y29a{bottom:982.051200px;}
.y1ce{bottom:982.411200px;}
.y24e{bottom:983.272350px;}
.y191{bottom:984.559350px;}
.y100{bottom:985.423950px;}
.y2d9{bottom:987.301200px;}
.y5{bottom:991.051200px;}
.yc1{bottom:992.043000px;}
.y157{bottom:992.059350px;}
.y84{bottom:992.803650px;}
.y299{bottom:995.551200px;}
.yff{bottom:997.123950px;}
.y1cd{bottom:999.848700px;}
.y2d8{bottom:1000.947450px;}
.y24d{bottom:1002.244350px;}
.yc0{bottom:1008.564000px;}
.y156{bottom:1008.664350px;}
.yfe{bottom:1008.823950px;}
.y298{bottom:1009.051200px;}
.y83{bottom:1009.300650px;}
.y24c{bottom:1010.419350px;}
.y2d7{bottom:1014.593700px;}
.y1cc{bottom:1017.286200px;}
.yfd{bottom:1020.523950px;}
.ybf{bottom:1025.115000px;}
.y155{bottom:1025.269350px;}
.y82{bottom:1025.797650px;}
.y190{bottom:1025.809350px;}
.y4{bottom:1027.051200px;}
.y2d6{bottom:1028.239950px;}
.y297{bottom:1028.551200px;}
.y1cb{bottom:1037.727450px;}
.y1c8{bottom:1037.738700px;}
.yfc{bottom:1039.838700px;}
.ybe{bottom:1041.666000px;}
.y154{bottom:1041.874350px;}
.y2d5{bottom:1041.886200px;}
.y24b{bottom:1041.990600px;}
.y296{bottom:1042.051200px;}
.y81{bottom:1042.297650px;}
.y18f{bottom:1042.306350px;}
.yfb{bottom:1051.538700px;}
.y2d4{bottom:1055.532450px;}
.y295{bottom:1055.551200px;}
.y1ca{bottom:1058.168700px;}
.ybd{bottom:1058.217000px;}
.y153{bottom:1058.479350px;}
.y24a{bottom:1058.568600px;}
.y80{bottom:1058.800650px;}
.y18e{bottom:1058.803350px;}
.y3{bottom:1063.051200px;}
.yfa{bottom:1063.238700px;}
.y294{bottom:1069.051200px;}
.y2d3{bottom:1069.178700px;}
.ybc{bottom:1074.768000px;}
.y152{bottom:1075.084350px;}
.y249{bottom:1075.146600px;}
.y7f{bottom:1075.297650px;}
.y18d{bottom:1075.300350px;}
.y1c9{bottom:1078.609950px;}
.y293{bottom:1082.551200px;}
.y2d2{bottom:1082.824950px;}
.yf9{bottom:1082.929200px;}
.ybb{bottom:1091.319000px;}
.y151{bottom:1091.689350px;}
.y248{bottom:1091.724600px;}
.y18c{bottom:1091.797350px;}
.y7e{bottom:1091.797650px;}
.y292{bottom:1096.051200px;}
.y2d1{bottom:1096.471200px;}
.yf8{bottom:1099.426200px;}
.y2{bottom:1105.051200px;}
.yba{bottom:1107.864000px;}
.y150{bottom:1108.294350px;}
.y7d{bottom:1108.294650px;}
.y247{bottom:1108.302600px;}
.y291{bottom:1109.551200px;}
.y2d0{bottom:1110.117450px;}
.yc{bottom:1140.782100px;}
.h27{height:24.249888px;}
.h1c{height:27.889200px;}
.h1b{height:29.718000px;}
.h22{height:32.310000px;}
.h21{height:34.290000px;}
.h2{height:36.576000px;}
.h9{height:40.869141px;}
.h1a{height:41.148000px;}
.h8{height:43.434000px;}
.h19{height:46.070400px;}
.h7{height:50.292000px;}
.h1e{height:51.228240px;}
.h25{height:51.240240px;}
.h15{height:51.252240px;}
.h26{height:51.300240px;}
.h13{height:51.312240px;}
.h1f{height:51.324240px;}
.hd{height:51.324840px;}
.h14{height:51.348240px;}
.hc{height:51.348840px;}
.h24{height:51.354240px;}
.h20{height:51.360240px;}
.he{height:51.360840px;}
.h12{height:51.372240px;}
.hf{height:51.372840px;}
.h10{height:51.384240px;}
.h23{height:51.396240px;}
.h18{height:51.420240px;}
.h17{height:51.444240px;}
.ha{height:51.468240px;}
.hb{height:51.509040px;}
.h16{height:51.516240px;}
.h1d{height:51.655351px;}
.h3{height:54.864000px;}
.h5{height:74.506068px;}
.h6{height:74.518068px;}
.h4{height:91.440000px;}
.h11{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.246600px;}
.x3{left:68.713950px;}
.x4{left:72.649950px;}
.xe{left:76.494000px;}
.x2e{left:81.900000px;}
.x1a{left:83.835000px;}
.x1b{left:100.332000px;}
.x1d{left:121.143750px;}
.x1c{left:141.585000px;}
.x11{left:155.998500px;}
.x1e{left:162.026250px;}
.x1f{left:179.463750px;}
.x20{left:196.901250px;}
.x21{left:214.338750px;}
.x2{left:218.508750px;}
.x5{left:232.011000px;}
.x16{left:246.010500px;}
.x22{left:249.213750px;}
.x23{left:266.651250px;}
.x24{left:284.088750px;}
.x25{left:301.526250px;}
.x17{left:309.015000px;}
.x26{left:318.963750px;}
.x19{left:330.876750px;}
.x27{left:336.401250px;}
.x28{left:353.838750px;}
.x29{left:371.276250px;}
.x2a{left:388.710000px;}
.x18{left:397.515750px;}
.x2b{left:402.963750px;}
.x2c{left:417.217500px;}
.x2d{left:431.471250px;}
.x12{left:440.991000px;}
.xf{left:460.032450px;}
.x10{left:473.532450px;}
.x2f{left:478.935000px;}
.x6{left:533.587500px;}
.x13{left:539.992500px;}
.x8{left:542.586000px;}
.x7{left:547.086000px;}
.x9{left:554.463000px;}
.xa{left:560.586000px;}
.x14{left:647.993250px;}
.x15{left:737.995500px;}
.xd{left:743.961750px;}
.xc{left:812.386950px;}
.xb{left:853.499955px;}
@media print{
.v5{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.978667pt;}
.v2{vertical-align:21.664000pt;}
.v1{vertical-align:31.200000pt;}
.v3{vertical-align:48.000000pt;}
.lsb{letter-spacing:-5.280000pt;}
.lsd{letter-spacing:-3.239600pt;}
.ls6{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004267pt;}
.ls9{letter-spacing:0.005056pt;}
.lsa{letter-spacing:0.056533pt;}
.ls3{letter-spacing:0.506160pt;}
.ls7{letter-spacing:1.266160pt;}
.ls1{letter-spacing:3.285333pt;}
.ls2{letter-spacing:15.289067pt;}
.ls0{letter-spacing:18.951680pt;}
.ls4{letter-spacing:21.770667pt;}
.ls8{letter-spacing:1240.145600pt;}
.ws86{word-spacing:-48.000000pt;}
.ws2{word-spacing:-18.538667pt;}
.ws3{word-spacing:-14.439493pt;}
.ws6{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.173333pt;}
.ws4{word-spacing:-12.666160pt;}
.ws5{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.032780pt;}
.ws1{word-spacing:-11.032320pt;}
.wsd4{word-spacing:-10.400000pt;}
.wse{word-spacing:-10.240427pt;}
.ws83{word-spacing:-10.240000pt;}
.wse0{word-spacing:-9.600400pt;}
.ws84{word-spacing:-9.013333pt;}
.ws7{word-spacing:-8.847072pt;}
.ws85{word-spacing:-8.320000pt;}
.ws107{word-spacing:-6.789120pt;}
.wse1{word-spacing:-6.360000pt;}
.wsf9{word-spacing:-5.399600pt;}
.wse2{word-spacing:-4.600400pt;}
.ws10d{word-spacing:-3.983520pt;}
.wsc{word-spacing:-3.812640pt;}
.wsb{word-spacing:-3.519360pt;}
.wsd0{word-spacing:-3.167520pt;}
.wse6{word-spacing:-2.736480pt;}
.ws104{word-spacing:-2.688000pt;}
.ws2b{word-spacing:-2.639520pt;}
.wsaa{word-spacing:-2.543520pt;}
.wsa9{word-spacing:-2.496000pt;}
.ws103{word-spacing:-2.447520pt;}
.ws101{word-spacing:-2.400000pt;}
.wse4{word-spacing:-2.352000pt;}
.wsf{word-spacing:-2.346240pt;}
.ws7f{word-spacing:-2.304000pt;}
.ws21{word-spacing:-2.208480pt;}
.wsf8{word-spacing:-2.199600pt;}
.wscf{word-spacing:-2.112480pt;}
.ws7e{word-spacing:-1.919520pt;}
.ws88{word-spacing:-1.906320pt;}
.wsb0{word-spacing:-1.872000pt;}
.ws6b{word-spacing:-1.823520pt;}
.ws115{word-spacing:-1.800000pt;}
.ws16{word-spacing:-1.776000pt;}
.ws27{word-spacing:-1.728000pt;}
.wsc9{word-spacing:-1.680000pt;}
.wsfe{word-spacing:-1.632000pt;}
.ws5b{word-spacing:-1.536000pt;}
.ws49{word-spacing:-1.488480pt;}
.wsc1{word-spacing:-1.440000pt;}
.ws5a{word-spacing:-1.392480pt;}
.ws1b{word-spacing:-1.295520pt;}
.ws95{word-spacing:-1.248000pt;}
.wsb9{word-spacing:-1.199520pt;}
.ws17{word-spacing:-1.177488pt;}
.ws4c{word-spacing:-1.152000pt;}
.wsea{word-spacing:-1.056000pt;}
.ws77{word-spacing:-1.008000pt;}
.ws38{word-spacing:-0.960000pt;}
.ws66{word-spacing:-0.864480pt;}
.ws58{word-spacing:-0.858930pt;}
.ws87{word-spacing:-0.832000pt;}
.wsb3{word-spacing:-0.816000pt;}
.ws111{word-spacing:-0.768480pt;}
.ws114{word-spacing:-0.720400pt;}
.ws59{word-spacing:-0.720000pt;}
.wsc2{word-spacing:-0.672480pt;}
.ws89{word-spacing:-0.589333pt;}
.wsff{word-spacing:-0.575520pt;}
.ws10{word-spacing:-0.506160pt;}
.ws80{word-spacing:-0.479520pt;}
.wsb7{word-spacing:-0.432000pt;}
.ws69{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.288000pt;}
.ws5c{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.202667pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws62{word-spacing:-0.144480pt;}
.ws8a{word-spacing:-0.104347pt;}
.ws19{word-spacing:-0.096000pt;}
.ws112{word-spacing:-0.085333pt;}
.ws31{word-spacing:-0.048480pt;}
.ws9c{word-spacing:-0.048000pt;}
.ws113{word-spacing:-0.043093pt;}
.ws9{word-spacing:0.000000pt;}
.ws75{word-spacing:0.048480pt;}
.wsc8{word-spacing:0.192000pt;}
.ws9d{word-spacing:0.288000pt;}
.ws70{word-spacing:0.528000pt;}
.wsb8{word-spacing:0.575520pt;}
.wse5{word-spacing:0.720000pt;}
.ws35{word-spacing:0.816000pt;}
.wsa5{word-spacing:0.864480pt;}
.wsac{word-spacing:0.912000pt;}
.ws71{word-spacing:0.960000pt;}
.ws67{word-spacing:1.103520pt;}
.ws6f{word-spacing:1.152000pt;}
.wseb{word-spacing:1.199520pt;}
.ws1a{word-spacing:1.248000pt;}
.wsbc{word-spacing:1.295520pt;}
.ws7a{word-spacing:1.344000pt;}
.ws34{word-spacing:1.488480pt;}
.wsaf{word-spacing:1.536000pt;}
.wsa{word-spacing:1.578667pt;}
.wsef{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.632000pt;}
.wsad{word-spacing:1.823520pt;}
.wsbe{word-spacing:1.872000pt;}
.wsbb{word-spacing:1.919520pt;}
.ws9f{word-spacing:2.016480pt;}
.ws20{word-spacing:2.112480pt;}
.ws10c{word-spacing:2.160000pt;}
.ws7d{word-spacing:2.208480pt;}
.ws61{word-spacing:2.304000pt;}
.ws30{word-spacing:2.352000pt;}
.ws92{word-spacing:2.447520pt;}
.ws1d{word-spacing:2.592000pt;}
.ws26{word-spacing:2.639520pt;}
.ws2d{word-spacing:2.673216pt;}
.wsa2{word-spacing:2.688000pt;}
.ws7b{word-spacing:2.736480pt;}
.ws47{word-spacing:2.784000pt;}
.ws68{word-spacing:2.832480pt;}
.wsb1{word-spacing:2.880000pt;}
.wsfd{word-spacing:2.928000pt;}
.wse3{word-spacing:2.976000pt;}
.wsba{word-spacing:3.024000pt;}
.ws6d{word-spacing:3.072000pt;}
.ws96{word-spacing:3.120000pt;}
.ws57{word-spacing:3.167520pt;}
.ws14{word-spacing:3.216000pt;}
.ws4d{word-spacing:3.263520pt;}
.wsab{word-spacing:3.312000pt;}
.ws7c{word-spacing:3.360480pt;}
.wsb4{word-spacing:3.408000pt;}
.wsd1{word-spacing:3.456480pt;}
.ws54{word-spacing:3.504000pt;}
.ws91{word-spacing:3.648000pt;}
.ws13{word-spacing:3.696000pt;}
.ws90{word-spacing:3.744000pt;}
.ws98{word-spacing:3.791520pt;}
.ws65{word-spacing:3.840000pt;}
.wsce{word-spacing:3.887520pt;}
.ws18{word-spacing:3.936000pt;}
.wsa4{word-spacing:3.983520pt;}
.ws2c{word-spacing:4.032000pt;}
.ws4f{word-spacing:4.080480pt;}
.ws2a{word-spacing:4.128000pt;}
.ws74{word-spacing:4.224000pt;}
.ws51{word-spacing:4.272000pt;}
.wsd3{word-spacing:4.320000pt;}
.wsb2{word-spacing:4.416000pt;}
.ws40{word-spacing:4.464000pt;}
.wsa6{word-spacing:4.511520pt;}
.wsca{word-spacing:4.560000pt;}
.ws3c{word-spacing:4.607520pt;}
.ws9a{word-spacing:4.656000pt;}
.ws3b{word-spacing:4.704480pt;}
.ws55{word-spacing:4.752000pt;}
.wsed{word-spacing:4.800480pt;}
.ws4a{word-spacing:4.848000pt;}
.ws10b{word-spacing:4.944000pt;}
.ws25{word-spacing:4.992000pt;}
.wsa1{word-spacing:5.040000pt;}
.ws60{word-spacing:5.135520pt;}
.ws39{word-spacing:5.231520pt;}
.wscd{word-spacing:5.250642pt;}
.ws8c{word-spacing:5.280000pt;}
.ws43{word-spacing:5.327520pt;}
.ws53{word-spacing:5.376000pt;}
.wsfb{word-spacing:5.472000pt;}
.ws64{word-spacing:5.520480pt;}
.ws44{word-spacing:5.568000pt;}
.ws3d{word-spacing:5.855520pt;}
.wsa8{word-spacing:5.904000pt;}
.wsf1{word-spacing:5.951520pt;}
.ws72{word-spacing:6.048480pt;}
.ws33{word-spacing:6.096000pt;}
.ws5f{word-spacing:6.192000pt;}
.ws105{word-spacing:6.240000pt;}
.ws9b{word-spacing:6.288000pt;}
.ws10e{word-spacing:6.336000pt;}
.wsee{word-spacing:6.384000pt;}
.wse9{word-spacing:6.528000pt;}
.ws50{word-spacing:6.575520pt;}
.wsb5{word-spacing:6.624000pt;}
.ws4e{word-spacing:6.720000pt;}
.ws36{word-spacing:6.768480pt;}
.wscb{word-spacing:6.816000pt;}
.ws5d{word-spacing:6.960000pt;}
.ws94{word-spacing:7.008000pt;}
.ws32{word-spacing:7.103520pt;}
.ws9e{word-spacing:7.152000pt;}
.ws48{word-spacing:7.248000pt;}
.ws3a{word-spacing:7.295520pt;}
.ws106{word-spacing:7.344000pt;}
.ws3e{word-spacing:7.392480pt;}
.wsa0{word-spacing:7.488480pt;}
.wsb6{word-spacing:7.536000pt;}
.ws6e{word-spacing:7.680000pt;}
.ws46{word-spacing:7.728000pt;}
.wse8{word-spacing:7.872000pt;}
.ws45{word-spacing:7.919520pt;}
.ws22{word-spacing:7.968000pt;}
.ws1e{word-spacing:8.064000pt;}
.ws28{word-spacing:8.112480pt;}
.wsc6{word-spacing:8.160000pt;}
.ws37{word-spacing:8.208480pt;}
.wsae{word-spacing:8.304000pt;}
.ws10a{word-spacing:8.400000pt;}
.ws93{word-spacing:8.976000pt;}
.ws41{word-spacing:9.024000pt;}
.wsc5{word-spacing:9.072000pt;}
.ws1f{word-spacing:9.120000pt;}
.wsf0{word-spacing:9.167520pt;}
.ws8f{word-spacing:9.263520pt;}
.ws5e{word-spacing:9.312000pt;}
.ws99{word-spacing:9.504000pt;}
.wsc0{word-spacing:9.887520pt;}
.ws3f{word-spacing:9.983520pt;}
.ws1c{word-spacing:10.032000pt;}
.ws81{word-spacing:10.416000pt;}
.wsec{word-spacing:10.511520pt;}
.ws8d{word-spacing:10.560000pt;}
.ws97{word-spacing:10.704480pt;}
.ws102{word-spacing:10.896480pt;}
.ws63{word-spacing:10.944000pt;}
.ws52{word-spacing:11.184000pt;}
.ws109{word-spacing:11.327520pt;}
.wse7{word-spacing:11.424480pt;}
.ws110{word-spacing:11.472000pt;}
.ws8e{word-spacing:11.664000pt;}
.wsc3{word-spacing:11.760000pt;}
.ws24{word-spacing:11.855520pt;}
.ws76{word-spacing:11.904000pt;}
.wsfa{word-spacing:12.048480pt;}
.wsa7{word-spacing:12.144480pt;}
.wsd2{word-spacing:12.192000pt;}
.wsa3{word-spacing:12.336000pt;}
.ws100{word-spacing:12.384000pt;}
.wsbd{word-spacing:12.479520pt;}
.ws79{word-spacing:12.528000pt;}
.ws73{word-spacing:12.624000pt;}
.wsc4{word-spacing:13.056000pt;}
.ws108{word-spacing:13.680000pt;}
.ws12{word-spacing:14.016480pt;}
.ws8b{word-spacing:14.064000pt;}
.ws78{word-spacing:14.784000pt;}
.ws2e{word-spacing:15.696000pt;}
.wscc{word-spacing:15.887520pt;}
.ws42{word-spacing:16.080480pt;}
.ws15{word-spacing:16.224000pt;}
.wsc7{word-spacing:16.560000pt;}
.wsfc{word-spacing:16.992000pt;}
.wsbf{word-spacing:17.280000pt;}
.ws2f{word-spacing:18.000000pt;}
.ws10f{word-spacing:18.192000pt;}
.ws23{word-spacing:20.928000pt;}
.ws82{word-spacing:23.040000pt;}
.ws56{word-spacing:23.424480pt;}
.wsf3{word-spacing:41.800000pt;}
.ws29{word-spacing:42.288000pt;}
.wsf5{word-spacing:47.160000pt;}
.wsf4{word-spacing:52.480000pt;}
.wsf6{word-spacing:90.960000pt;}
.wsd7{word-spacing:116.440000pt;}
.wsd9{word-spacing:131.400000pt;}
.wsdc{word-spacing:132.440000pt;}
.wsd8{word-spacing:135.640000pt;}
.wsda{word-spacing:137.800000pt;}
.wsdb{word-spacing:147.400000pt;}
.wsd6{word-spacing:193.040000pt;}
.wsd5{word-spacing:343.160000pt;}
.wsf7{word-spacing:344.520000pt;}
.wsde{word-spacing:354.520000pt;}
.wsdd{word-spacing:361.960000pt;}
.wsdf{word-spacing:381.160000pt;}
.ws0{word-spacing:584.234133pt;}
.wsf2{word-spacing:649.640000pt;}
._c{margin-left:-2643.932640pt;}
._11{margin-left:-2185.005333pt;}
._b{margin-left:-1672.655040pt;}
._9{margin-left:-52.480000pt;}
._6{margin-left:-42.640000pt;}
._23{margin-left:-28.701227pt;}
._1f{margin-left:-25.766293pt;}
._24{margin-left:-19.536000pt;}
._d{margin-left:-15.310080pt;}
._20{margin-left:-14.403360pt;}
._53{margin-left:-12.477120pt;}
._21{margin-left:-11.376000pt;}
._1e{margin-left:-9.763200pt;}
._e{margin-left:-7.944000pt;}
._2{margin-left:-5.866667pt;}
._4{margin-left:-4.943040pt;}
._7d{margin-left:-4.051200pt;}
._0{margin-left:-3.157333pt;}
._1{margin-left:-1.582933pt;}
._22{width:1.419733pt;}
._7{width:2.346667pt;}
._5{width:3.343040pt;}
._3{width:4.579446pt;}
._1d{width:5.653661pt;}
._4f{width:7.400400pt;}
._47{width:9.797733pt;}
._7b{width:10.852933pt;}
._8{width:12.160000pt;}
._7c{width:19.200000pt;}
._1a{width:25.896000pt;}
._42{width:30.400000pt;}
._f{width:35.077333pt;}
._46{width:37.800000pt;}
._28{width:40.000000pt;}
._57{width:69.360000pt;}
._63{width:71.480000pt;}
._58{width:75.319600pt;}
._66{width:76.800000pt;}
._1b{width:85.961600pt;}
._15{width:88.122667pt;}
._67{width:92.600000pt;}
._18{width:95.009600pt;}
._6f{width:97.960000pt;}
._6e{width:102.637333pt;}
._78{width:103.760000pt;}
._17{width:104.762667pt;}
._72{width:106.960000pt;}
._69{width:108.040000pt;}
._5d{width:111.240000pt;}
._64{width:113.960000pt;}
._73{width:117.397333pt;}
._6c{width:118.720000pt;}
._5b{width:119.760000pt;}
._65{width:121.920000pt;}
._4b{width:123.200400pt;}
._62{width:125.120000pt;}
._44{width:126.040000pt;}
._79{width:128.397333pt;}
._61{width:129.317333pt;}
._6b{width:132.560000pt;}
._75{width:133.640000pt;}
._74{width:135.280000pt;}
._40{width:136.720000pt;}
._5f{width:137.920000pt;}
._3e{width:139.640000pt;}
._7a{width:140.600000pt;}
._4d{width:145.240000pt;}
._2a{width:147.400000pt;}
._31{width:149.520000pt;}
._2c{width:157.000000pt;}
._56{width:158.118000pt;}
._36{width:162.320000pt;}
._3b{width:165.520000pt;}
._2d{width:166.600000pt;}
._19{width:173.194667pt;}
._2b{width:178.320000pt;}
._4c{width:182.040000pt;}
._38{width:188.237333pt;}
._27{width:190.880000pt;}
._13{width:192.538667pt;}
._3c{width:196.440000pt;}
._30{width:197.520000pt;}
._16{width:199.368000pt;}
._32{width:205.000000pt;}
._14{width:207.410667pt;}
._12{width:221.762667pt;}
._a{width:228.190080pt;}
._39{width:240.200000pt;}
._1c{width:256.880000pt;}
._37{width:269.000000pt;}
._26{width:307.560000pt;}
._5c{width:332.800000pt;}
._76{width:338.120000pt;}
._52{width:347.360400pt;}
._5e{width:354.120000pt;}
._5a{width:359.480000pt;}
._43{width:369.163200pt;}
._6a{width:375.480000pt;}
._45{width:407.723200pt;}
._10{width:461.829333pt;}
._54{width:473.436933pt;}
._55{width:483.280000pt;}
._48{width:624.520800pt;}
._25{width:633.600000pt;}
._4e{width:687.283467pt;}
._6d{width:707.360800pt;}
._3d{width:719.720800pt;}
._50{width:720.943733pt;}
._3f{width:730.400800pt;}
._41{width:746.400800pt;}
._70{width:752.160800pt;}
._59{width:778.040800pt;}
._34{width:796.520800pt;}
._68{width:799.360800pt;}
._49{width:803.000800pt;}
._60{width:815.080800pt;}
._3a{width:819.480800pt;}
._33{width:834.920800pt;}
._29{width:837.000800pt;}
._2e{width:839.240800pt;}
._77{width:841.760800pt;}
._35{width:845.680800pt;}
._4a{width:848.614960pt;}
._51{width:860.197333pt;}
._2f{width:876.800800pt;}
._71{width:886.560800pt;}
.fsc{font-size:28.288000pt;}
.fs9{font-size:31.824000pt;}
.fsa{font-size:32.533333pt;}
.fs6{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.968000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:36.573867pt;}
.y7c{bottom:38.683733pt;}
.y1{bottom:38.696667pt;}
.y143{bottom:61.173200pt;}
.y246{bottom:61.181867pt;}
.y68{bottom:61.188800pt;}
.y52{bottom:61.190400pt;}
.yb9{bottom:61.190800pt;}
.y1c7{bottom:61.193200pt;}
.y14f{bottom:61.197200pt;}
.y202{bottom:61.199867pt;}
.y230{bottom:61.216533pt;}
.yf7{bottom:61.351867pt;}
.y290{bottom:61.726533pt;}
.y18b{bottom:61.990533pt;}
.y10{bottom:65.792667pt;}
.y207{bottom:66.484533pt;}
.y203{bottom:66.494400pt;}
.y204{bottom:66.494533pt;}
.y208{bottom:66.504533pt;}
.y209{bottom:66.514533pt;}
.y20a{bottom:66.534533pt;}
.y20b{bottom:66.544533pt;}
.y20c{bottom:66.554533pt;}
.y28f{bottom:73.790533pt;}
.y142{bottom:75.839867pt;}
.y1fe{bottom:75.845200pt;}
.y245{bottom:75.845867pt;}
.yb8{bottom:75.854800pt;}
.y67{bottom:75.855467pt;}
.y1c6{bottom:75.857200pt;}
.y14e{bottom:75.861200pt;}
.y201{bottom:75.863867pt;}
.y22f{bottom:75.880533pt;}
.y51{bottom:75.914400pt;}
.yf6{bottom:76.063867pt;}
.y18a{bottom:76.750533pt;}
.yf{bottom:77.792667pt;}
.y28e{bottom:85.854533pt;}
.ye{bottom:89.792667pt;}
.y1fd{bottom:90.509200pt;}
.y244{bottom:90.509867pt;}
.yb7{bottom:90.518800pt;}
.y1c5{bottom:90.521200pt;}
.y66{bottom:90.524800pt;}
.y14d{bottom:90.525200pt;}
.y141{bottom:90.527867pt;}
.y22e{bottom:90.544533pt;}
.y50{bottom:90.638400pt;}
.yf5{bottom:90.775867pt;}
.y189{bottom:91.510533pt;}
.y28d{bottom:97.918533pt;}
.yd{bottom:101.792667pt;}
.y1fc{bottom:105.173200pt;}
.y243{bottom:105.173867pt;}
.yb6{bottom:105.182800pt;}
.y1c4{bottom:105.185200pt;}
.y65{bottom:105.188800pt;}
.y14c{bottom:105.189200pt;}
.y140{bottom:105.191867pt;}
.y22d{bottom:105.208533pt;}
.y4f{bottom:105.362400pt;}
.yf4{bottom:105.487867pt;}
.y188{bottom:106.270533pt;}
.y28c{bottom:109.982533pt;}
.y1fb{bottom:119.839867pt;}
.yb5{bottom:119.846800pt;}
.y1c3{bottom:119.849200pt;}
.y14b{bottom:119.853200pt;}
.y13f{bottom:119.855867pt;}
.y64{bottom:119.860800pt;}
.y242{bottom:119.861867pt;}
.y22c{bottom:119.872533pt;}
.y4e{bottom:120.086400pt;}
.yf3{bottom:120.199867pt;}
.y187{bottom:121.030533pt;}
.y28b{bottom:122.046533pt;}
.y29{bottom:123.459333pt;}
.y28a{bottom:134.110533pt;}
.yb4{bottom:134.510800pt;}
.y1fa{bottom:134.511867pt;}
.y1c2{bottom:134.513200pt;}
.y14a{bottom:134.517200pt;}
.y13e{bottom:134.519867pt;}
.y63{bottom:134.524800pt;}
.y241{bottom:134.525867pt;}
.y22b{bottom:134.536533pt;}
.y4d{bottom:134.810400pt;}
.yf2{bottom:134.911867pt;}
.y28{bottom:135.459333pt;}
.y186{bottom:135.790533pt;}
.y289{bottom:146.174533pt;}
.y27{bottom:147.459333pt;}
.y1f9{bottom:149.175867pt;}
.y149{bottom:149.181200pt;}
.y13d{bottom:149.183867pt;}
.y1c1{bottom:149.185200pt;}
.yb3{bottom:149.188133pt;}
.y62{bottom:149.188800pt;}
.y240{bottom:149.189867pt;}
.y22a{bottom:149.200533pt;}
.y4c{bottom:149.518400pt;}
.yf1{bottom:149.623867pt;}
.y185{bottom:150.550533pt;}
.y288{bottom:158.238533pt;}
.y26{bottom:159.459333pt;}
.y1f8{bottom:163.839867pt;}
.y148{bottom:163.845200pt;}
.y13c{bottom:163.847867pt;}
.y1c0{bottom:163.849200pt;}
.yb2{bottom:163.852133pt;}
.y61{bottom:163.852800pt;}
.y23f{bottom:163.853867pt;}
.y229{bottom:163.864533pt;}
.y4b{bottom:164.242400pt;}
.yf0{bottom:164.335867pt;}
.y184{bottom:165.310533pt;}
.y287{bottom:170.302533pt;}
.y25{bottom:171.459333pt;}
.y147{bottom:178.509200pt;}
.y13b{bottom:178.511867pt;}
.y1bf{bottom:178.513200pt;}
.yb1{bottom:178.516133pt;}
.y23e{bottom:178.517867pt;}
.y228{bottom:178.528533pt;}
.y60{bottom:178.535467pt;}
.y4a{bottom:178.966400pt;}
.yef{bottom:179.047867pt;}
.y183{bottom:180.070533pt;}
.y286{bottom:182.366533pt;}
.y24{bottom:183.459333pt;}
.y2cf{bottom:185.601067pt;}
.y312{bottom:186.191067pt;}
.y146{bottom:193.173200pt;}
.y13a{bottom:193.175867pt;}
.yb0{bottom:193.180133pt;}
.y23d{bottom:193.181867pt;}
.y1be{bottom:193.185200pt;}
.y227{bottom:193.192533pt;}
.y5f{bottom:193.199467pt;}
.y49{bottom:193.690400pt;}
.yee{bottom:193.759867pt;}
.y285{bottom:194.430533pt;}
.y182{bottom:194.830533pt;}
.y2ce{bottom:197.601067pt;}
.y311{bottom:198.321067pt;}
.y284{bottom:206.494533pt;}
.y145{bottom:207.837200pt;}
.y139{bottom:207.839867pt;}
.yaf{bottom:207.844133pt;}
.y23c{bottom:207.845867pt;}
.y1bd{bottom:207.849200pt;}
.y226{bottom:207.856533pt;}
.y5e{bottom:207.863467pt;}
.y48{bottom:208.414400pt;}
.yed{bottom:208.471867pt;}
.y181{bottom:209.590533pt;}
.y2cd{bottom:209.601067pt;}
.y310{bottom:210.451067pt;}
.y283{bottom:218.558533pt;}
.y2cc{bottom:221.601067pt;}
.y144{bottom:222.501200pt;}
.y138{bottom:222.503867pt;}
.y1f7{bottom:222.509200pt;}
.y23b{bottom:222.509867pt;}
.y1bc{bottom:222.513200pt;}
.y225{bottom:222.520533pt;}
.y5d{bottom:222.527467pt;}
.yae{bottom:222.529467pt;}
.y30f{bottom:222.581067pt;}
.y47{bottom:223.171067pt;}
.yec{bottom:223.183867pt;}
.y180{bottom:224.350533pt;}
.y282{bottom:230.622533pt;}
.y2cb{bottom:233.601067pt;}
.y30e{bottom:234.711067pt;}
.y1f6{bottom:237.173200pt;}
.y200{bottom:237.177200pt;}
.y224{bottom:237.184533pt;}
.y5c{bottom:237.191467pt;}
.y23a{bottom:237.192533pt;}
.y1bb{bottom:237.193200pt;}
.yad{bottom:237.193467pt;}
.yeb{bottom:237.895867pt;}
.y17f{bottom:239.110533pt;}
.y281{bottom:242.686533pt;}
.y2ca{bottom:245.601067pt;}
.y30d{bottom:246.841067pt;}
.y1f5{bottom:251.837200pt;}
.y1ff{bottom:251.841200pt;}
.y223{bottom:251.848533pt;}
.y5b{bottom:251.855467pt;}
.y239{bottom:251.856533pt;}
.y1ba{bottom:251.857200pt;}
.yac{bottom:251.857467pt;}
.yea{bottom:252.607867pt;}
.y17e{bottom:253.870533pt;}
.y280{bottom:254.750533pt;}
.y2c9{bottom:257.601067pt;}
.y30c{bottom:258.971067pt;}
.y137{bottom:262.434400pt;}
.y222{bottom:266.512533pt;}
.y5a{bottom:266.519467pt;}
.y238{bottom:266.520533pt;}
.y1b9{bottom:266.521200pt;}
.yab{bottom:266.521467pt;}
.y27f{bottom:266.814533pt;}
.ye9{bottom:267.319867pt;}
.y17d{bottom:268.630533pt;}
.y2c8{bottom:269.601067pt;}
.y30b{bottom:271.101067pt;}
.y136{bottom:272.194400pt;}
.y27e{bottom:278.878533pt;}
.y221{bottom:281.176533pt;}
.y237{bottom:281.184533pt;}
.y1b8{bottom:281.185200pt;}
.yaa{bottom:281.185467pt;}
.y59{bottom:281.196800pt;}
.y2c7{bottom:281.601067pt;}
.y135{bottom:281.954400pt;}
.ye8{bottom:282.031867pt;}
.y30a{bottom:283.231067pt;}
.y46{bottom:285.478400pt;}
.y205{bottom:288.384533pt;}
.y206{bottom:288.924533pt;}
.y27d{bottom:290.942533pt;}
.y134{bottom:291.714400pt;}
.y1f4{bottom:292.757733pt;}
.y2c6{bottom:293.601067pt;}
.y309{bottom:295.361067pt;}
.y236{bottom:295.848533pt;}
.y1b7{bottom:295.849200pt;}
.ya9{bottom:295.849467pt;}
.y58{bottom:295.860800pt;}
.y220{bottom:295.875200pt;}
.ye7{bottom:296.743867pt;}
.y45{bottom:300.197067pt;}
.y133{bottom:301.474400pt;}
.y27c{bottom:303.006533pt;}
.y1f3{bottom:305.427733pt;}
.y2c5{bottom:305.601067pt;}
.y308{bottom:307.491067pt;}
.y17c{bottom:309.550533pt;}
.y235{bottom:310.512533pt;}
.y1b6{bottom:310.513200pt;}
.ya8{bottom:310.513467pt;}
.y57{bottom:310.524800pt;}
.y21f{bottom:310.539200pt;}
.y132{bottom:311.234400pt;}
.ye6{bottom:311.455867pt;}
.y44{bottom:314.915733pt;}
.y27b{bottom:315.070533pt;}
.y2c4{bottom:317.601067pt;}
.y1f2{bottom:318.097733pt;}
.y307{bottom:319.621067pt;}
.y17b{bottom:324.310533pt;}
.y234{bottom:325.176533pt;}
.ya7{bottom:325.177467pt;}
.y56{bottom:325.188800pt;}
.y21e{bottom:325.203200pt;}
.y1b5{bottom:325.214533pt;}
.y131{bottom:325.339067pt;}
.ye5{bottom:326.167867pt;}
.y27a{bottom:327.134533pt;}
.y2c3{bottom:329.601067pt;}
.y43{bottom:329.634400pt;}
.y1f1{bottom:330.767733pt;}
.y306{bottom:331.751067pt;}
.y130{bottom:335.739067pt;}
.y17a{bottom:339.070533pt;}
.y279{bottom:339.198533pt;}
.ya6{bottom:339.844133pt;}
.y233{bottom:339.848533pt;}
.y55{bottom:339.852800pt;}
.y21d{bottom:339.867200pt;}
.y1b4{bottom:339.878533pt;}
.ye4{bottom:340.874533pt;}
.y2c2{bottom:341.601067pt;}
.y305{bottom:343.881067pt;}
.y42{bottom:344.353067pt;}
.y12f{bottom:346.139067pt;}
.y1f0{bottom:346.254400pt;}
.y278{bottom:351.262533pt;}
.y2c1{bottom:353.601067pt;}
.y179{bottom:353.830533pt;}
.y54{bottom:354.494400pt;}
.y232{bottom:354.512533pt;}
.y21c{bottom:354.531200pt;}
.y1b3{bottom:354.542533pt;}
.y304{bottom:356.011067pt;}
.y12e{bottom:356.539067pt;}
.y41{bottom:359.071733pt;}
.y1ef{bottom:361.754400pt;}
.y277{bottom:363.326533pt;}
.y2c0{bottom:365.601067pt;}
.y12d{bottom:366.939067pt;}
.y303{bottom:368.141067pt;}
.y178{bottom:368.590533pt;}
.y53{bottom:369.158400pt;}
.y231{bottom:369.176533pt;}
.y21b{bottom:369.195200pt;}
.y1b2{bottom:369.206533pt;}
.y40{bottom:373.790400pt;}
.y276{bottom:375.390533pt;}
.ya5{bottom:376.174800pt;}
.y1ee{bottom:377.254400pt;}
.y12c{bottom:377.339067pt;}
.y302{bottom:380.271067pt;}
.ye3{bottom:381.656000pt;}
.y177{bottom:383.350533pt;}
.y21a{bottom:383.859200pt;}
.y1b1{bottom:383.870533pt;}
.y275{bottom:387.454533pt;}
.y12b{bottom:387.739067pt;}
.y3f{bottom:388.509067pt;}
.ya4{bottom:390.838800pt;}
.y301{bottom:392.401067pt;}
.y1ed{bottom:392.754400pt;}
.ye2{bottom:396.368000pt;}
.y2bf{bottom:396.934400pt;}
.y176{bottom:398.110533pt;}
.y219{bottom:398.523200pt;}
.y1b0{bottom:398.534533pt;}
.y274{bottom:399.518533pt;}
.y12a{bottom:402.238400pt;}
.y3e{bottom:403.227733pt;}
.y300{bottom:404.531067pt;}
.ya3{bottom:405.502800pt;}
.y1ec{bottom:408.254400pt;}
.y2be{bottom:408.934400pt;}
.ye1{bottom:411.080000pt;}
.y273{bottom:411.582533pt;}
.y129{bottom:412.638400pt;}
.y175{bottom:412.870533pt;}
.y218{bottom:413.187200pt;}
.y1af{bottom:413.198533pt;}
.y79{bottom:415.128667pt;}
.y2ff{bottom:416.661067pt;}
.y3d{bottom:417.946400pt;}
.ya2{bottom:420.166800pt;}
.y2bd{bottom:420.934400pt;}
.y128{bottom:423.038400pt;}
.y272{bottom:423.646533pt;}
.y1eb{bottom:423.754400pt;}
.ye0{bottom:425.792000pt;}
.y174{bottom:427.630533pt;}
.y217{bottom:427.851200pt;}
.y1ae{bottom:427.862533pt;}
.y2fe{bottom:428.791067pt;}
.y78{bottom:429.796667pt;}
.y3c{bottom:432.665067pt;}
.y2bc{bottom:432.934400pt;}
.y127{bottom:433.438400pt;}
.ya1{bottom:434.862800pt;}
.y271{bottom:435.710533pt;}
.y1ea{bottom:439.254400pt;}
.ydf{bottom:440.504000pt;}
.y2fd{bottom:440.921067pt;}
.y173{bottom:442.390533pt;}
.y216{bottom:442.515200pt;}
.y1ad{bottom:442.526533pt;}
.y23{bottom:443.101067pt;}
.y126{bottom:443.838400pt;}
.y77{bottom:444.455333pt;}
.y2bb{bottom:444.934400pt;}
.y3b{bottom:447.383733pt;}
.y270{bottom:447.774533pt;}
.ya0{bottom:449.526800pt;}
.y2fc{bottom:453.051067pt;}
.y125{bottom:454.238400pt;}
.y1e9{bottom:454.754400pt;}
.y22{bottom:455.101067pt;}
.yde{bottom:455.216000pt;}
.y2ba{bottom:456.934400pt;}
.y172{bottom:457.150533pt;}
.y215{bottom:457.179200pt;}
.y1ac{bottom:457.190533pt;}
.y76{bottom:459.123333pt;}
.y26f{bottom:459.838533pt;}
.y3a{bottom:462.102400pt;}
.y9f{bottom:464.190800pt;}
.y124{bottom:464.638400pt;}
.y2fb{bottom:465.181067pt;}
.y21{bottom:467.101067pt;}
.ydd{bottom:469.928000pt;}
.y1e8{bottom:470.254400pt;}
.y214{bottom:471.843200pt;}
.y1ab{bottom:471.854533pt;}
.y26e{bottom:471.902533pt;}
.y171{bottom:471.910533pt;}
.y2b9{bottom:474.267733pt;}
.y39{bottom:476.821067pt;}
.y2fa{bottom:477.311067pt;}
.y9e{bottom:478.854800pt;}
.y20{bottom:479.101067pt;}
.y123{bottom:479.137733pt;}
.y26d{bottom:483.966533pt;}
.ydc{bottom:484.640000pt;}
.y1e7{bottom:485.754400pt;}
.y75{bottom:486.458000pt;}
.y213{bottom:486.507200pt;}
.y1aa{bottom:486.518533pt;}
.y170{bottom:486.670533pt;}
.y2f9{bottom:489.441067pt;}
.y122{bottom:489.537733pt;}
.y1f{bottom:491.101067pt;}
.y38{bottom:491.539733pt;}
.y2b8{bottom:491.601067pt;}
.y9d{bottom:493.518800pt;}
.y26c{bottom:496.030533pt;}
.ydb{bottom:499.352000pt;}
.y121{bottom:499.937733pt;}
.y74{bottom:501.126000pt;}
.y1a9{bottom:501.182533pt;}
.y1e6{bottom:501.254400pt;}
.y16f{bottom:501.430533pt;}
.y2f8{bottom:501.571067pt;}
.y2b7{bottom:503.601067pt;}
.y37{bottom:506.258400pt;}
.y26b{bottom:508.094533pt;}
.y9c{bottom:508.182800pt;}
.y120{bottom:510.337733pt;}
.y2f7{bottom:513.701067pt;}
.yda{bottom:514.064000pt;}
.y1e{bottom:515.101067pt;}
.y2b6{bottom:515.601067pt;}
.y73{bottom:515.794000pt;}
.y1a8{bottom:515.846533pt;}
.y16e{bottom:516.190533pt;}
.y1e5{bottom:516.754400pt;}
.y26a{bottom:520.158533pt;}
.y212{bottom:520.877733pt;}
.y36{bottom:520.977067pt;}
.y9b{bottom:522.846800pt;}
.y11f{bottom:524.837067pt;}
.y2f6{bottom:525.831067pt;}
.y1d{bottom:527.101067pt;}
.y2b5{bottom:527.601067pt;}
.yd9{bottom:528.776000pt;}
.y72{bottom:530.462000pt;}
.y1a7{bottom:530.510533pt;}
.y16d{bottom:530.950533pt;}
.y269{bottom:532.222533pt;}
.y1e4{bottom:532.254400pt;}
.y11e{bottom:535.237067pt;}
.y211{bottom:535.541733pt;}
.y35{bottom:535.695733pt;}
.y9a{bottom:537.510800pt;}
.y2f5{bottom:537.961067pt;}
.y1c{bottom:539.101067pt;}
.y2b4{bottom:539.601067pt;}
.yd8{bottom:543.488000pt;}
.y268{bottom:544.286533pt;}
.y71{bottom:545.130000pt;}
.y1a6{bottom:545.177200pt;}
.y11d{bottom:545.637067pt;}
.y16c{bottom:545.710533pt;}
.y1e3{bottom:547.754400pt;}
.y2f4{bottom:550.091067pt;}
.y210{bottom:550.205733pt;}
.y34{bottom:550.414400pt;}
.y1b{bottom:551.101067pt;}
.y2b3{bottom:551.601067pt;}
.y99{bottom:552.174800pt;}
.y11c{bottom:556.037067pt;}
.yd7{bottom:558.200000pt;}
.y70{bottom:559.790000pt;}
.y16b{bottom:560.470533pt;}
.y2f3{bottom:562.221067pt;}
.y1a{bottom:563.101067pt;}
.y1e2{bottom:563.254400pt;}
.y2b2{bottom:563.601067pt;}
.y20f{bottom:564.869733pt;}
.y33{bottom:565.133067pt;}
.y98{bottom:566.838800pt;}
.y11b{bottom:570.536400pt;}
.yd6{bottom:572.912000pt;}
.y2f2{bottom:574.351067pt;}
.y19{bottom:575.101067pt;}
.y16a{bottom:575.230533pt;}
.y2b1{bottom:575.601067pt;}
.y267{bottom:577.150533pt;}
.y1e1{bottom:578.754400pt;}
.y20e{bottom:579.533733pt;}
.y32{bottom:579.851733pt;}
.y11a{bottom:580.936400pt;}
.y97{bottom:581.502800pt;}
.y1a5{bottom:581.881200pt;}
.y266{bottom:584.419867pt;}
.y2f1{bottom:586.481067pt;}
.y18{bottom:587.101067pt;}
.y6f{bottom:587.124667pt;}
.y2b0{bottom:587.601067pt;}
.yd5{bottom:587.624000pt;}
.y169{bottom:589.990533pt;}
.y119{bottom:591.336400pt;}
.y20d{bottom:594.197733pt;}
.y1e0{bottom:594.254400pt;}
.y31{bottom:594.570400pt;}
.y96{bottom:596.166800pt;}
.y1a4{bottom:596.545200pt;}
.y2f0{bottom:598.611067pt;}
.y2af{bottom:599.601067pt;}
.y265{bottom:601.283867pt;}
.y6e{bottom:601.792667pt;}
.yd4{bottom:602.336000pt;}
.y168{bottom:604.750533pt;}
.y118{bottom:605.835733pt;}
.y264{bottom:608.553200pt;}
.y30{bottom:609.289067pt;}
.y1df{bottom:609.754400pt;}
.y2ef{bottom:610.741067pt;}
.y95{bottom:610.830800pt;}
.y1a3{bottom:611.209200pt;}
.y2ae{bottom:611.601067pt;}
.y17{bottom:615.101067pt;}
.y117{bottom:616.235733pt;}
.y6d{bottom:616.460667pt;}
.yd3{bottom:617.048000pt;}
.y167{bottom:619.510533pt;}
.y2ee{bottom:622.871067pt;}
.y2ad{bottom:623.601067pt;}
.y2f{bottom:624.007733pt;}
.y1de{bottom:625.254400pt;}
.y263{bottom:625.417200pt;}
.y94{bottom:625.491467pt;}
.y1a2{bottom:625.873200pt;}
.y116{bottom:626.635733pt;}
.y16{bottom:627.101067pt;}
.y6c{bottom:631.128667pt;}
.yd2{bottom:631.760000pt;}
.y166{bottom:634.270533pt;}
.y2ed{bottom:635.001067pt;}
.y2ac{bottom:635.601067pt;}
.y262{bottom:637.483867pt;}
.y2e{bottom:638.726400pt;}
.y1a1{bottom:640.537200pt;}
.y1dd{bottom:640.754400pt;}
.y93{bottom:640.830800pt;}
.y115{bottom:641.135067pt;}
.y261{bottom:644.753200pt;}
.y6b{bottom:645.796667pt;}
.yd1{bottom:646.472000pt;}
.y2ec{bottom:647.131067pt;}
.y2ab{bottom:647.601067pt;}
.y7a{bottom:649.050440pt;}
.y15{bottom:651.101067pt;}
.y114{bottom:651.535067pt;}
.y2d{bottom:653.445067pt;}
.y1a0{bottom:655.201200pt;}
.y1dc{bottom:656.254400pt;}
.y2eb{bottom:659.261067pt;}
.y2aa{bottom:659.601067pt;}
.y6a{bottom:660.463333pt;}
.yd0{bottom:661.184000pt;}
.y260{bottom:661.617200pt;}
.y113{bottom:661.935067pt;}
.y14{bottom:663.101067pt;}
.y2c{bottom:668.163733pt;}
.y25f{bottom:668.886533pt;}
.y19f{bottom:669.865200pt;}
.y2ea{bottom:671.391067pt;}
.y2a9{bottom:671.601067pt;}
.y1db{bottom:671.754400pt;}
.y13{bottom:675.101067pt;}
.y165{bottom:675.190533pt;}
.ycf{bottom:675.896000pt;}
.y112{bottom:676.434400pt;}
.y92{bottom:677.164133pt;}
.y2b{bottom:682.882400pt;}
.y2e9{bottom:683.521067pt;}
.y2a8{bottom:683.601067pt;}
.y19e{bottom:684.529200pt;}
.y25e{bottom:685.750533pt;}
.y111{bottom:686.834400pt;}
.y12{bottom:687.101067pt;}
.y1da{bottom:687.254400pt;}
.y69{bottom:689.601200pt;}
.y164{bottom:689.950533pt;}
.yce{bottom:690.608000pt;}
.y91{bottom:691.828133pt;}
.y2a7{bottom:695.601067pt;}
.y2e8{bottom:695.651067pt;}
.y110{bottom:697.234400pt;}
.y2a{bottom:697.601067pt;}
.y25d{bottom:697.817200pt;}
.y11{bottom:699.101067pt;}
.y19d{bottom:699.193200pt;}
.y1d9{bottom:702.754400pt;}
.y163{bottom:704.710533pt;}
.ycd{bottom:705.320000pt;}
.y90{bottom:706.492133pt;}
.y2a6{bottom:707.601067pt;}
.y10f{bottom:707.634400pt;}
.y2e7{bottom:707.781067pt;}
.y25c{bottom:709.883867pt;}
.y19c{bottom:713.857200pt;}
.y25b{bottom:717.153200pt;}
.y1d8{bottom:718.254400pt;}
.y162{bottom:719.470533pt;}
.y2a5{bottom:719.601067pt;}
.y2e6{bottom:719.911067pt;}
.ycc{bottom:720.032000pt;}
.y8f{bottom:721.156133pt;}
.y10e{bottom:722.133733pt;}
.y19b{bottom:728.521200pt;}
.y2a4{bottom:731.601067pt;}
.y2e5{bottom:732.041067pt;}
.y10d{bottom:732.533733pt;}
.y1d7{bottom:733.754400pt;}
.y25a{bottom:734.017200pt;}
.y161{bottom:734.230533pt;}
.yb{bottom:734.265067pt;}
.ycb{bottom:734.744000pt;}
.y8e{bottom:735.820133pt;}
.y10c{bottom:742.933733pt;}
.y19a{bottom:743.185200pt;}
.y2a3{bottom:743.601067pt;}
.y2e4{bottom:744.171067pt;}
.y259{bottom:746.083867pt;}
.y160{bottom:748.990533pt;}
.y1d6{bottom:749.254400pt;}
.yca{bottom:749.456000pt;}
.y8d{bottom:750.484133pt;}
.ya{bottom:754.265067pt;}
.y2a2{bottom:755.601067pt;}
.y2e3{bottom:756.301067pt;}
.y10b{bottom:757.433067pt;}
.y199{bottom:757.849200pt;}
.y258{bottom:758.150533pt;}
.y15f{bottom:763.750533pt;}
.yc9{bottom:764.168000pt;}
.y1d5{bottom:764.754400pt;}
.y8c{bottom:765.161467pt;}
.y257{bottom:765.422533pt;}
.y2a1{bottom:767.601067pt;}
.y10a{bottom:767.833067pt;}
.y2e2{bottom:768.431067pt;}
.y198{bottom:772.513200pt;}
.y9{bottom:774.265067pt;}
.y256{bottom:777.486533pt;}
.y109{bottom:778.233067pt;}
.y15e{bottom:778.510533pt;}
.yc8{bottom:778.869333pt;}
.y2a0{bottom:779.601067pt;}
.y8b{bottom:779.825467pt;}
.y1d4{bottom:780.254400pt;}
.y2e1{bottom:780.561067pt;}
.y197{bottom:787.177200pt;}
.y108{bottom:788.633067pt;}
.y29f{bottom:791.601067pt;}
.y2e0{bottom:792.691067pt;}
.y15d{bottom:793.270533pt;}
.yc7{bottom:793.554667pt;}
.y8{bottom:794.265067pt;}
.y255{bottom:794.350533pt;}
.y8a{bottom:794.489467pt;}
.y1d3{bottom:795.754400pt;}
.y107{bottom:799.033067pt;}
.y254{bottom:801.619867pt;}
.y196{bottom:801.841200pt;}
.y2df{bottom:804.821067pt;}
.y15c{bottom:808.030533pt;}
.yc6{bottom:808.266667pt;}
.y29e{bottom:808.934400pt;}
.y89{bottom:809.153467pt;}
.y106{bottom:809.433067pt;}
.y1d2{bottom:811.254400pt;}
.y7{bottom:814.267733pt;}
.y195{bottom:816.505200pt;}
.y2de{bottom:816.951067pt;}
.y253{bottom:818.483867pt;}
.y105{bottom:819.833067pt;}
.y15b{bottom:822.790533pt;}
.yc5{bottom:822.978667pt;}
.y88{bottom:823.836133pt;}
.y29d{bottom:826.267733pt;}
.y1d1{bottom:826.754400pt;}
.y2dd{bottom:829.081067pt;}
.y104{bottom:830.233067pt;}
.y252{bottom:830.550533pt;}
.y194{bottom:831.169200pt;}
.y15a{bottom:837.550533pt;}
.yc4{bottom:837.690667pt;}
.y251{bottom:837.819867pt;}
.y87{bottom:838.500133pt;}
.y103{bottom:840.633067pt;}
.y2dc{bottom:841.211067pt;}
.y1d0{bottom:842.254400pt;}
.y29c{bottom:843.601067pt;}
.y193{bottom:845.833200pt;}
.y6{bottom:848.934400pt;}
.y102{bottom:851.033067pt;}
.y159{bottom:852.310533pt;}
.yc3{bottom:852.402667pt;}
.y86{bottom:853.164133pt;}
.y2db{bottom:853.341067pt;}
.y250{bottom:854.683867pt;}
.y29b{bottom:855.601067pt;}
.y1cf{bottom:857.754400pt;}
.y192{bottom:860.497200pt;}
.y2da{bottom:865.471067pt;}
.y101{bottom:865.532400pt;}
.y24f{bottom:866.750533pt;}
.y158{bottom:867.070533pt;}
.yc2{bottom:867.104000pt;}
.y85{bottom:867.828133pt;}
.y29a{bottom:872.934400pt;}
.y1ce{bottom:873.254400pt;}
.y24e{bottom:874.019867pt;}
.y191{bottom:875.163867pt;}
.y100{bottom:875.932400pt;}
.y2d9{bottom:877.601067pt;}
.y5{bottom:880.934400pt;}
.yc1{bottom:881.816000pt;}
.y157{bottom:881.830533pt;}
.y84{bottom:882.492133pt;}
.y299{bottom:884.934400pt;}
.yff{bottom:886.332400pt;}
.y1cd{bottom:888.754400pt;}
.y2d8{bottom:889.731067pt;}
.y24d{bottom:890.883867pt;}
.yc0{bottom:896.501333pt;}
.y156{bottom:896.590533pt;}
.yfe{bottom:896.732400pt;}
.y298{bottom:896.934400pt;}
.y83{bottom:897.156133pt;}
.y24c{bottom:898.150533pt;}
.y2d7{bottom:901.861067pt;}
.y1cc{bottom:904.254400pt;}
.yfd{bottom:907.132400pt;}
.ybf{bottom:911.213333pt;}
.y155{bottom:911.350533pt;}
.y82{bottom:911.820133pt;}
.y190{bottom:911.830533pt;}
.y4{bottom:912.934400pt;}
.y2d6{bottom:913.991067pt;}
.y297{bottom:914.267733pt;}
.y1cb{bottom:922.424400pt;}
.y1c8{bottom:922.434400pt;}
.yfc{bottom:924.301067pt;}
.ybe{bottom:925.925333pt;}
.y154{bottom:926.110533pt;}
.y2d5{bottom:926.121067pt;}
.y24b{bottom:926.213867pt;}
.y296{bottom:926.267733pt;}
.y81{bottom:926.486800pt;}
.y18f{bottom:926.494533pt;}
.yfb{bottom:934.701067pt;}
.y2d4{bottom:938.251067pt;}
.y295{bottom:938.267733pt;}
.y1ca{bottom:940.594400pt;}
.ybd{bottom:940.637333pt;}
.y153{bottom:940.870533pt;}
.y24a{bottom:940.949867pt;}
.y80{bottom:941.156133pt;}
.y18e{bottom:941.158533pt;}
.y3{bottom:944.934400pt;}
.yfa{bottom:945.101067pt;}
.y294{bottom:950.267733pt;}
.y2d3{bottom:950.381067pt;}
.ybc{bottom:955.349333pt;}
.y152{bottom:955.630533pt;}
.y249{bottom:955.685867pt;}
.y7f{bottom:955.820133pt;}
.y18d{bottom:955.822533pt;}
.y1c9{bottom:958.764400pt;}
.y293{bottom:962.267733pt;}
.y2d2{bottom:962.511067pt;}
.yf9{bottom:962.603733pt;}
.ybb{bottom:970.061333pt;}
.y151{bottom:970.390533pt;}
.y248{bottom:970.421867pt;}
.y18c{bottom:970.486533pt;}
.y7e{bottom:970.486800pt;}
.y292{bottom:974.267733pt;}
.y2d1{bottom:974.641067pt;}
.yf8{bottom:977.267733pt;}
.y2{bottom:982.267733pt;}
.yba{bottom:984.768000pt;}
.y150{bottom:985.150533pt;}
.y7d{bottom:985.150800pt;}
.y247{bottom:985.157867pt;}
.y291{bottom:986.267733pt;}
.y2d0{bottom:986.771067pt;}
.yc{bottom:1014.028533pt;}
.h27{height:21.555456pt;}
.h1c{height:24.790400pt;}
.h1b{height:26.416000pt;}
.h22{height:28.720000pt;}
.h21{height:30.480000pt;}
.h2{height:32.512000pt;}
.h9{height:36.328125pt;}
.h1a{height:36.576000pt;}
.h8{height:38.608000pt;}
.h19{height:40.951467pt;}
.h7{height:44.704000pt;}
.h1e{height:45.536214pt;}
.h25{height:45.546880pt;}
.h15{height:45.557547pt;}
.h26{height:45.600214pt;}
.h13{height:45.610880pt;}
.h1f{height:45.621547pt;}
.hd{height:45.622080pt;}
.h14{height:45.642880pt;}
.hc{height:45.643414pt;}
.h24{height:45.648214pt;}
.h20{height:45.653547pt;}
.he{height:45.654080pt;}
.h12{height:45.664214pt;}
.hf{height:45.664747pt;}
.h10{height:45.674880pt;}
.h23{height:45.685547pt;}
.h18{height:45.706880pt;}
.h17{height:45.728214pt;}
.ha{height:45.749547pt;}
.hb{height:45.785814pt;}
.h16{height:45.792214pt;}
.h1d{height:45.915867pt;}
.h3{height:48.768000pt;}
.h5{height:66.227616pt;}
.h6{height:66.238283pt;}
.h4{height:81.280000pt;}
.h11{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.219200pt;}
.x3{left:61.079067pt;}
.x4{left:64.577733pt;}
.xe{left:67.994667pt;}
.x2e{left:72.800000pt;}
.x1a{left:74.520000pt;}
.x1b{left:89.184000pt;}
.x1d{left:107.683333pt;}
.x1c{left:125.853333pt;}
.x11{left:138.665333pt;}
.x1e{left:144.023333pt;}
.x1f{left:159.523333pt;}
.x20{left:175.023333pt;}
.x21{left:190.523333pt;}
.x2{left:194.230000pt;}
.x5{left:206.232000pt;}
.x16{left:218.676000pt;}
.x22{left:221.523333pt;}
.x23{left:237.023333pt;}
.x24{left:252.523333pt;}
.x25{left:268.023333pt;}
.x17{left:274.680000pt;}
.x26{left:283.523333pt;}
.x19{left:294.112667pt;}
.x27{left:299.023333pt;}
.x28{left:314.523333pt;}
.x29{left:330.023333pt;}
.x2a{left:345.520000pt;}
.x18{left:353.347333pt;}
.x2b{left:358.190000pt;}
.x2c{left:370.860000pt;}
.x2d{left:383.530000pt;}
.x12{left:391.992000pt;}
.xf{left:408.917733pt;}
.x10{left:420.917733pt;}
.x2f{left:425.720000pt;}
.x6{left:474.300000pt;}
.x13{left:479.993333pt;}
.x8{left:482.298667pt;}
.x7{left:486.298667pt;}
.x9{left:492.856000pt;}
.xa{left:498.298667pt;}
.x14{left:575.994000pt;}
.x15{left:655.996000pt;}
.xd{left:661.299333pt;}
.xc{left:722.121733pt;}
.xb{left:758.666627pt;}
}




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