
    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_516befdaf02aae0a2331b895.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_3c5cd01fe59df92ba2f33364.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_c5523b21b2c53a9ad515efaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_656a3078016abc8681414e75.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_d242638d316a59d315578893.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_aae4e4e3fcb81949c6c3a6ce.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_c5523b21b2c53a9ad515efaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972000;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_2b05c21fce4081285b6e9e6e.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_bcd8b2679484868dd36385f3.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_050b88c218939fe28958d129.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.757235;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_6972adfccb03e6ca73b7fac3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a8d9aa12f77fd6ea6708ec04.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_51843ad17ea663dce8fc504a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946289;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_2df1fe0eb41998c75b3fa366.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887695;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_6660cbdc8a74cfa7727db78a.woff2')format("woff");}.fff{font-family:fff;line-height:0.049000;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_731cc74b7bd081ba14bf51ba.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_dd2c0a8bffc49a8b377445c1.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ce280d85f16012a907e9349d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v6{vertical-align:-6.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.000000px;}
.v7{vertical-align:21.924000px;}
.v3{vertical-align:24.276000px;}
.v1{vertical-align:35.100000px;}
.v4{vertical-align:54.000000px;}
.lsd{letter-spacing:-1.998000px;}
.ls8{letter-spacing:-1.776000px;}
.lsa{letter-spacing:-1.457460px;}
.lsf{letter-spacing:-0.810450px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005088px;}
.ls2{letter-spacing:0.005688px;}
.lsc{letter-spacing:0.041844px;}
.lse{letter-spacing:0.042780px;}
.ls10{letter-spacing:0.675000px;}
.ls5{letter-spacing:1.074060px;}
.ls1{letter-spacing:1.424430px;}
.ls4{letter-spacing:1.620000px;}
.ls9{letter-spacing:3.696000px;}
.ls0{letter-spacing:17.200200px;}
.lsb{letter-spacing:18.382680px;}
.ls6{letter-spacing:24.624000px;}
.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;}
}
.ws5b{word-spacing:-26.947536px;}
.ws5a{word-spacing:-26.905692px;}
.ws5c{word-spacing:-24.895038px;}
.ws2{word-spacing:-16.244430px;}
.ws5{word-spacing:-15.012000px;}
.wsb{word-spacing:-13.680570px;}
.ws0{word-spacing:-12.411360px;}
.wsa{word-spacing:-11.520480px;}
.wsec{word-spacing:-11.520000px;}
.ws4{word-spacing:-11.027016px;}
.ws113{word-spacing:-10.800450px;}
.ws10f{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.952956px;}
.ws1{word-spacing:-7.637760px;}
.wseb{word-spacing:-6.074550px;}
.ws67{word-spacing:-4.590540px;}
.ws69{word-spacing:-4.373460px;}
.ws9{word-spacing:-4.289220px;}
.wsfd{word-spacing:-4.265460px;}
.wse2{word-spacing:-4.212000px;}
.wsef{word-spacing:-3.780540px;}
.ws10e{word-spacing:-3.510000px;}
.ws6c{word-spacing:-3.348000px;}
.wsdc{word-spacing:-3.294000px;}
.ws10a{word-spacing:-3.240000px;}
.wsd5{word-spacing:-3.186540px;}
.ws24{word-spacing:-3.134430px;}
.ws6e{word-spacing:-2.969460px;}
.wse1{word-spacing:-2.916000px;}
.ws96{word-spacing:-2.808000px;}
.wsf3{word-spacing:-2.700000px;}
.ws7b{word-spacing:-2.646000px;}
.ws9f{word-spacing:-2.592000px;}
.ws111{word-spacing:-2.474550px;}
.ws1a{word-spacing:-2.430000px;}
.ws6a{word-spacing:-2.376540px;}
.ws90{word-spacing:-2.322000px;}
.ws66{word-spacing:-2.214000px;}
.wsdd{word-spacing:-2.183922px;}
.wsa1{word-spacing:-2.159460px;}
.wsea{word-spacing:-2.106000px;}
.ws80{word-spacing:-1.998000px;}
.ws35{word-spacing:-1.944000px;}
.ws8d{word-spacing:-1.890000px;}
.ws61{word-spacing:-1.836000px;}
.ws65{word-spacing:-1.782000px;}
.wsf1{word-spacing:-1.674540px;}
.ws7e{word-spacing:-1.566540px;}
.wsd6{word-spacing:-1.512000px;}
.wsc{word-spacing:-1.424430px;}
.ws8f{word-spacing:-1.404000px;}
.wsa8{word-spacing:-1.349460px;}
.ws93{word-spacing:-1.134000px;}
.ws29{word-spacing:-1.074060px;}
.wsc3{word-spacing:-1.026000px;}
.ws110{word-spacing:-0.810450px;}
.ws8e{word-spacing:-0.810000px;}
.wsdb{word-spacing:-0.702000px;}
.ws112{word-spacing:-0.675000px;}
.ws36{word-spacing:-0.647460px;}
.ws8a{word-spacing:-0.539460px;}
.ws22{word-spacing:-0.486000px;}
.wse{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.378000px;}
.wsb2{word-spacing:-0.324000px;}
.ws64{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.162540px;}
.ws1c{word-spacing:-0.108000px;}
.ws59{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.wscf{word-spacing:0.054540px;}
.wsca{word-spacing:0.108000px;}
.ws4f{word-spacing:0.162540px;}
.ws3b{word-spacing:0.216000px;}
.ws2e{word-spacing:0.270000px;}
.wse0{word-spacing:0.324000px;}
.ws105{word-spacing:0.378000px;}
.wse5{word-spacing:0.432000px;}
.wsb5{word-spacing:0.486000px;}
.wsd3{word-spacing:0.539460px;}
.wse3{word-spacing:0.647460px;}
.ws94{word-spacing:0.756540px;}
.ws14{word-spacing:0.810000px;}
.ws7d{word-spacing:0.918000px;}
.wsc2{word-spacing:0.972540px;}
.ws10b{word-spacing:1.026000px;}
.ws109{word-spacing:1.080000px;}
.wsa5{word-spacing:1.134000px;}
.wsde{word-spacing:1.217268px;}
.wsda{word-spacing:1.241460px;}
.wsae{word-spacing:1.296000px;}
.ws12{word-spacing:1.349460px;}
.wsc7{word-spacing:1.396278px;}
.ws38{word-spacing:1.404000px;}
.ws32{word-spacing:1.566540px;}
.wsa4{word-spacing:1.620000px;}
.wsba{word-spacing:1.728000px;}
.ws8{word-spacing:1.776000px;}
.ws9c{word-spacing:1.782000px;}
.wscd{word-spacing:1.836000px;}
.ws39{word-spacing:1.890000px;}
.ws82{word-spacing:1.998000px;}
.wsc4{word-spacing:2.051460px;}
.wsc6{word-spacing:2.106000px;}
.ws15{word-spacing:2.159460px;}
.wsd7{word-spacing:2.214000px;}
.wse4{word-spacing:2.322000px;}
.ws5e{word-spacing:2.376540px;}
.wsb1{word-spacing:2.430000px;}
.ws51{word-spacing:2.538000px;}
.ws4d{word-spacing:2.592000px;}
.wsf9{word-spacing:2.700000px;}
.ws49{word-spacing:2.753460px;}
.ws76{word-spacing:2.808000px;}
.wsb7{word-spacing:2.916000px;}
.wsb8{word-spacing:2.969460px;}
.ws2d{word-spacing:3.024000px;}
.wsa6{word-spacing:3.078540px;}
.ws81{word-spacing:3.132000px;}
.ws7f{word-spacing:3.186540px;}
.ws73{word-spacing:3.294000px;}
.wsf0{word-spacing:3.348000px;}
.ws86{word-spacing:3.402000px;}
.ws9e{word-spacing:3.456000px;}
.wsed{word-spacing:3.563460px;}
.ws89{word-spacing:3.618000px;}
.ws52{word-spacing:3.671460px;}
.ws2b{word-spacing:3.726000px;}
.wsd4{word-spacing:3.780540px;}
.ws17{word-spacing:3.834000px;}
.ws102{word-spacing:3.942000px;}
.ws8c{word-spacing:3.996540px;}
.ws48{word-spacing:4.050000px;}
.ws62{word-spacing:4.104000px;}
.ws77{word-spacing:4.158000px;}
.wsee{word-spacing:4.265460px;}
.wscb{word-spacing:4.320000px;}
.ws37{word-spacing:4.373460px;}
.ws27{word-spacing:4.403646px;}
.ws78{word-spacing:4.481460px;}
.ws101{word-spacing:4.536000px;}
.wsd1{word-spacing:4.590540px;}
.wsa9{word-spacing:4.752000px;}
.ws4c{word-spacing:4.860000px;}
.wsc8{word-spacing:4.914000px;}
.wsa3{word-spacing:4.968000px;}
.wsa7{word-spacing:5.022000px;}
.ws9b{word-spacing:5.075460px;}
.ws58{word-spacing:5.130000px;}
.ws30{word-spacing:5.183460px;}
.ws56{word-spacing:5.292540px;}
.ws53{word-spacing:5.346000px;}
.ws98{word-spacing:5.400540px;}
.ws6d{word-spacing:5.454000px;}
.ws10c{word-spacing:5.508540px;}
.ws108{word-spacing:5.562000px;}
.wsb6{word-spacing:5.616000px;}
.ws103{word-spacing:5.670000px;}
.ws63{word-spacing:5.724000px;}
.ws44{word-spacing:5.777460px;}
.ws95{word-spacing:5.885460px;}
.wsab{word-spacing:5.940000px;}
.wsce{word-spacing:6.048000px;}
.ws70{word-spacing:6.210540px;}
.ws11{word-spacing:6.264000px;}
.ws10{word-spacing:6.372000px;}
.ws31{word-spacing:6.426000px;}
.wsd0{word-spacing:6.534000px;}
.ws26{word-spacing:6.642000px;}
.wsf7{word-spacing:6.804540px;}
.ws28{word-spacing:6.858000px;}
.wsaf{word-spacing:6.966000px;}
.ws97{word-spacing:7.020000px;}
.wsbb{word-spacing:7.074000px;}
.ws57{word-spacing:7.128000px;}
.ws92{word-spacing:7.182000px;}
.wsa2{word-spacing:7.344000px;}
.wse9{word-spacing:7.397460px;}
.wsbf{word-spacing:7.452000px;}
.wsb4{word-spacing:7.506540px;}
.ws85{word-spacing:7.560000px;}
.wsc0{word-spacing:7.614540px;}
.ws3f{word-spacing:7.625826px;}
.wsf{word-spacing:7.668000px;}
.ws4e{word-spacing:7.722540px;}
.wsf2{word-spacing:7.830000px;}
.ws21{word-spacing:7.938000px;}
.ws43{word-spacing:7.991460px;}
.ws16{word-spacing:8.046000px;}
.ws4a{word-spacing:8.099460px;}
.ws84{word-spacing:8.154000px;}
.wsd9{word-spacing:8.316540px;}
.ws2f{word-spacing:8.370000px;}
.ws18{word-spacing:8.424540px;}
.ws99{word-spacing:8.478000px;}
.ws104{word-spacing:8.640000px;}
.ws8b{word-spacing:8.694000px;}
.ws50{word-spacing:8.856000px;}
.ws10d{word-spacing:9.180000px;}
.ws83{word-spacing:9.234540px;}
.wscc{word-spacing:9.288000px;}
.wsc1{word-spacing:9.342000px;}
.wsac{word-spacing:9.396000px;}
.ws5d{word-spacing:9.450000px;}
.wsd2{word-spacing:9.558000px;}
.ws33{word-spacing:9.666000px;}
.wse8{word-spacing:9.719460px;}
.wsf4{word-spacing:9.774000px;}
.ws6f{word-spacing:9.882000px;}
.wsbe{word-spacing:9.990000px;}
.ws7a{word-spacing:10.152000px;}
.ws41{word-spacing:10.206000px;}
.ws45{word-spacing:10.421460px;}
.ws79{word-spacing:10.530540px;}
.ws7c{word-spacing:10.746540px;}
.ws88{word-spacing:10.800000px;}
.ws91{word-spacing:10.908000px;}
.wsa0{word-spacing:11.015460px;}
.wsfb{word-spacing:11.070000px;}
.wsf6{word-spacing:11.123460px;}
.ws5f{word-spacing:11.178000px;}
.wsff{word-spacing:11.231460px;}
.ws74{word-spacing:11.286000px;}
.wsad{word-spacing:11.448540px;}
.ws40{word-spacing:11.502000px;}
.wsdf{word-spacing:11.556000px;}
.wsb3{word-spacing:11.664000px;}
.wsfe{word-spacing:11.880000px;}
.ws60{word-spacing:11.933460px;}
.ws106{word-spacing:12.150540px;}
.ws4b{word-spacing:12.258540px;}
.ws20{word-spacing:12.474000px;}
.ws6{word-spacing:12.479520px;}
.wsb9{word-spacing:12.798000px;}
.wsc5{word-spacing:12.852540px;}
.ws2a{word-spacing:13.284000px;}
.wsfa{word-spacing:13.770000px;}
.ws1b{word-spacing:13.878000px;}
.ws9a{word-spacing:14.256540px;}
.ws1e{word-spacing:14.418000px;}
.wsf8{word-spacing:14.688000px;}
.ws2c{word-spacing:14.904000px;}
.ws23{word-spacing:15.444000px;}
.ws34{word-spacing:16.092000px;}
.ws42{word-spacing:16.308000px;}
.ws75{word-spacing:16.416000px;}
.ws9d{word-spacing:16.469460px;}
.ws71{word-spacing:16.524000px;}
.ws107{word-spacing:16.740000px;}
.ws55{word-spacing:16.794000px;}
.ws46{word-spacing:16.902000px;}
.wsb0{word-spacing:17.063460px;}
.wsf5{word-spacing:17.226000px;}
.wse6{word-spacing:18.090540px;}
.ws68{word-spacing:18.522000px;}
.ws1f{word-spacing:19.116000px;}
.wse7{word-spacing:19.602540px;}
.ws6b{word-spacing:19.656000px;}
.ws1d{word-spacing:19.764000px;}
.ws100{word-spacing:19.872000px;}
.ws72{word-spacing:19.926000px;}
.ws54{word-spacing:20.412540px;}
.ws47{word-spacing:21.384000px;}
.ws3d{word-spacing:22.140000px;}
.ws87{word-spacing:22.896000px;}
.wsaa{word-spacing:24.515460px;}
.wsc9{word-spacing:25.272000px;}
.wsd{word-spacing:25.325460px;}
.ws13{word-spacing:26.082000px;}
.wsd8{word-spacing:26.945460px;}
.ws3e{word-spacing:28.728000px;}
.wsfc{word-spacing:30.618000px;}
.ws19{word-spacing:35.748000px;}
.wsbc{word-spacing:114.615000px;}
.wsbd{word-spacing:211.051800px;}
.ws25{word-spacing:1469.856000px;}
._17{margin-left:-3016.435680px;}
._16{margin-left:-1584.683460px;}
._14{margin-left:-58.896000px;}
._9{margin-left:-47.970000px;}
._1c{margin-left:-43.740000px;}
._11{margin-left:-41.148000px;}
._1b{margin-left:-37.206000px;}
._21{margin-left:-35.471460px;}
._26{margin-left:-33.809520px;}
._27{margin-left:-32.454000px;}
._28{margin-left:-31.428000px;}
._18{margin-left:-29.970000px;}
._24{margin-left:-27.861300px;}
._1e{margin-left:-26.134380px;}
._19{margin-left:-24.732000px;}
._1f{margin-left:-23.180064px;}
._25{margin-left:-21.708000px;}
._20{margin-left:-20.304000px;}
._4{margin-left:-18.720000px;}
._23{margin-left:-17.445240px;}
._12{margin-left:-16.200000px;}
._10{margin-left:-14.346000px;}
._e{margin-left:-12.723000px;}
._a{margin-left:-11.520000px;}
._3e{margin-left:-9.955200px;}
._7{margin-left:-7.878480px;}
._8{margin-left:-6.562800px;}
._c{margin-left:-5.332800px;}
._1{margin-left:-3.666000px;}
._0{margin-left:-1.776000px;}
._1a{width:1.580040px;}
._29{width:2.651280px;}
._13{width:3.666000px;}
._5{width:5.065680px;}
._b{width:10.867200px;}
._2b{width:12.017400px;}
._d{width:13.110000px;}
._f{width:14.481870px;}
._2{width:20.280000px;}
._3d{width:21.600000px;}
._6{width:23.944020px;}
._1d{width:26.519400px;}
._3{width:35.296800px;}
._22{width:39.420000px;}
._2c{width:53.415000px;}
._35{width:65.067000px;}
._30{width:82.800000px;}
._2e{width:89.235000px;}
._2d{width:98.684550px;}
._2f{width:110.654550px;}
._32{width:125.415000px;}
._34{width:137.385000px;}
._36{width:138.735000px;}
._31{width:140.400000px;}
._3b{width:143.097000px;}
._3c{width:147.015000px;}
._37{width:165.330000px;}
._38{width:178.785000px;}
._33{width:200.385000px;}
._39{width:213.570000px;}
._3a{width:223.605000px;}
._2a{width:387.018000px;}
._15{width:400.704300px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.886000px;}
.fs7{font-size:31.824000px;}
.fsa{font-size:35.802000px;}
.fs6{font-size:39.000000px;}
.fsc{font-size:41.844000px;}
.fse{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.714000px;}
.fsb{font-size:53.796000px;}
.fs9{font-size:54.000000px;}
.fs8{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;}
.y152{bottom:2.417400px;}
.y14e{bottom:7.247400px;}
.y150{bottom:13.862400px;}
.y97{bottom:43.395600px;}
.y1{bottom:43.396200px;}
.ye3{bottom:43.407600px;}
.y2{bottom:43.411200px;}
.y297{bottom:68.809350px;}
.yb9{bottom:68.815350px;}
.y76{bottom:68.818350px;}
.y69{bottom:68.821200px;}
.y17f{bottom:68.833350px;}
.y192{bottom:68.833800px;}
.y1a3{bottom:68.842800px;}
.ydc{bottom:68.857350px;}
.y127{bottom:68.867700px;}
.y256{bottom:68.869350px;}
.y169{bottom:68.896500px;}
.y1cd{bottom:68.983350px;}
.y174{bottom:68.995500px;}
.y20a{bottom:69.098700px;}
.yeb{bottom:73.151400px;}
.ye{bottom:74.016750px;}
.y296{bottom:82.309350px;}
.yb8{bottom:85.312350px;}
.y75{bottom:85.315350px;}
.y68{bottom:85.318200px;}
.y191{bottom:85.330800px;}
.y1a2{bottom:85.339800px;}
.ydb{bottom:85.354350px;}
.y126{bottom:85.364700px;}
.y255{bottom:85.366350px;}
.y168{bottom:85.393500px;}
.y17e{bottom:85.451850px;}
.y1cc{bottom:85.480350px;}
.y173{bottom:85.641000px;}
.y209{bottom:85.649700px;}
.yd{bottom:87.516750px;}
.yea{bottom:89.648400px;}
.y295{bottom:95.809350px;}
.yc{bottom:101.016750px;}
.yb7{bottom:101.809350px;}
.y74{bottom:101.812350px;}
.y67{bottom:101.815200px;}
.y190{bottom:101.827800px;}
.y1a1{bottom:101.836800px;}
.yda{bottom:101.851350px;}
.y125{bottom:101.861700px;}
.y254{bottom:101.863350px;}
.y167{bottom:101.890500px;}
.y1cb{bottom:101.977350px;}
.y17d{bottom:102.070350px;}
.y208{bottom:102.200700px;}
.y172{bottom:102.286500px;}
.ye9{bottom:106.145400px;}
.y294{bottom:109.309350px;}
.yb{bottom:114.516750px;}
.yb6{bottom:118.309350px;}
.y66{bottom:118.312200px;}
.y18f{bottom:118.324800px;}
.y1a0{bottom:118.333800px;}
.y73{bottom:118.337700px;}
.yd9{bottom:118.348350px;}
.y124{bottom:118.358700px;}
.y253{bottom:118.360350px;}
.y166{bottom:118.387500px;}
.y1ca{bottom:118.474350px;}
.y17c{bottom:118.688850px;}
.y207{bottom:118.751700px;}
.y171{bottom:118.932000px;}
.ye8{bottom:122.642400px;}
.y293{bottom:122.809350px;}
.y65{bottom:134.809200px;}
.y18e{bottom:134.821800px;}
.y19f{bottom:134.830800px;}
.y72{bottom:134.834700px;}
.yd8{bottom:134.845350px;}
.y123{bottom:134.855700px;}
.y252{bottom:134.857350px;}
.y165{bottom:134.884500px;}
.y1c9{bottom:134.971350px;}
.y206{bottom:135.302700px;}
.y17b{bottom:135.307350px;}
.y170{bottom:135.577500px;}
.y3b{bottom:138.891750px;}
.ye7{bottom:139.139400px;}
.y292{bottom:142.309350px;}
.y64{bottom:151.312200px;}
.y18d{bottom:151.318800px;}
.y19e{bottom:151.327800px;}
.y71{bottom:151.331700px;}
.yd7{bottom:151.342350px;}
.y122{bottom:151.352700px;}
.y251{bottom:151.354350px;}
.y164{bottom:151.381500px;}
.y1c8{bottom:151.468350px;}
.y205{bottom:151.829700px;}
.y17a{bottom:151.925850px;}
.y16f{bottom:152.223000px;}
.y3a{bottom:152.391750px;}
.yb5{bottom:153.571350px;}
.ye6{bottom:155.636400px;}
.y291{bottom:155.809350px;}
.y39{bottom:165.891750px;}
.y63{bottom:167.809200px;}
.y18c{bottom:167.818800px;}
.y19d{bottom:167.824800px;}
.y70{bottom:167.828700px;}
.yd6{bottom:167.839350px;}
.y121{bottom:167.849700px;}
.y250{bottom:167.851350px;}
.y163{bottom:167.878500px;}
.y1c7{bottom:167.965350px;}
.y204{bottom:168.380700px;}
.y179{bottom:168.544350px;}
.y16e{bottom:168.868500px;}
.y290{bottom:169.309350px;}
.yb4{bottom:170.068350px;}
.ye5{bottom:172.133400px;}
.y38{bottom:179.391750px;}
.y28f{bottom:182.809350px;}
.y62{bottom:184.309200px;}
.y19c{bottom:184.321800px;}
.y6f{bottom:184.325700px;}
.yd5{bottom:184.336350px;}
.y120{bottom:184.346700px;}
.y24f{bottom:184.348350px;}
.y162{bottom:184.375500px;}
.y1c6{bottom:184.462350px;}
.y203{bottom:184.931700px;}
.y178{bottom:185.162850px;}
.y16d{bottom:185.514000px;}
.yb3{bottom:186.565350px;}
.ye4{bottom:188.630400px;}
.y37{bottom:192.891750px;}
.y61{bottom:200.812200px;}
.y19b{bottom:200.818800px;}
.y6e{bottom:200.822700px;}
.yd4{bottom:200.833350px;}
.y11f{bottom:200.843700px;}
.y24e{bottom:200.845350px;}
.y161{bottom:200.872500px;}
.y1c5{bottom:200.965350px;}
.y202{bottom:201.482700px;}
.y177{bottom:201.781350px;}
.y16c{bottom:202.159500px;}
.y28e{bottom:202.309350px;}
.yb2{bottom:203.062350px;}
.y18b{bottom:203.095800px;}
.y36{bottom:206.391750px;}
.y60{bottom:217.309200px;}
.y19a{bottom:217.318800px;}
.y6d{bottom:217.319700px;}
.yd3{bottom:217.330350px;}
.y24d{bottom:217.342350px;}
.y11e{bottom:217.343700px;}
.y160{bottom:217.369500px;}
.y1c4{bottom:217.462350px;}
.y201{bottom:218.033700px;}
.y176{bottom:218.399850px;}
.y16b{bottom:218.805000px;}
.y2d7{bottom:219.301200px;}
.yb1{bottom:219.559350px;}
.y18a{bottom:219.592800px;}
.y319{bottom:220.178700px;}
.y28d{bottom:221.809350px;}
.y2d6{bottom:232.801200px;}
.y5f{bottom:233.806200px;}
.y6c{bottom:233.816700px;}
.yd2{bottom:233.827350px;}
.y24c{bottom:233.839350px;}
.y15f{bottom:233.866500px;}
.y318{bottom:233.869950px;}
.y1c3{bottom:233.959350px;}
.y200{bottom:234.560700px;}
.y175{bottom:235.019850px;}
.y16a{bottom:235.450500px;}
.yb0{bottom:236.059350px;}
.y189{bottom:236.089800px;}
.y28c{bottom:241.309350px;}
.y2d5{bottom:246.301200px;}
.y317{bottom:247.561200px;}
.y5e{bottom:250.251450px;}
.y6b{bottom:250.313700px;}
.yd1{bottom:250.333350px;}
.y24b{bottom:250.336350px;}
.y15e{bottom:250.363500px;}
.y1c2{bottom:250.459350px;}
.y1ff{bottom:251.111700px;}
.y188{bottom:252.586800px;}
.y199{bottom:252.595800px;}
.y11d{bottom:255.752700px;}
.y2d4{bottom:259.801200px;}
.y28b{bottom:260.809350px;}
.y316{bottom:261.252450px;}
.y6a{bottom:266.810700px;}
.yd0{bottom:266.830350px;}
.y24a{bottom:266.833350px;}
.y15d{bottom:266.860500px;}
.y1fe{bottom:267.662700px;}
.y187{bottom:269.083800px;}
.y198{bottom:269.092800px;}
.yaf{bottom:271.336350px;}
.y11c{bottom:272.249700px;}
.y2d3{bottom:273.301200px;}
.y28a{bottom:274.309350px;}
.y315{bottom:274.943700px;}
.ycf{bottom:283.327350px;}
.y249{bottom:283.330350px;}
.y15c{bottom:283.347000px;}
.y1fd{bottom:284.201700px;}
.y186{bottom:285.580800px;}
.y197{bottom:285.589800px;}
.y2d2{bottom:286.801200px;}
.y1c1{bottom:287.557350px;}
.y289{bottom:287.809350px;}
.yae{bottom:287.833350px;}
.y314{bottom:288.634950px;}
.y11b{bottom:288.746700px;}
.y181{bottom:288.895350px;}
.y35{bottom:293.288700px;}
.yce{bottom:299.824350px;}
.y248{bottom:299.827350px;}
.y2d1{bottom:300.301200px;}
.y15b{bottom:300.603750px;}
.y1fc{bottom:300.752700px;}
.y288{bottom:301.309350px;}
.y185{bottom:302.077800px;}
.y196{bottom:302.086800px;}
.y313{bottom:302.326200px;}
.y1c0{bottom:304.054350px;}
.yad{bottom:304.330350px;}
.y11a{bottom:305.243700px;}
.y180{bottom:305.392350px;}
.y34{bottom:306.788700px;}
.y2d0{bottom:313.801200px;}
.y312{bottom:316.017450px;}
.ycd{bottom:316.317600px;}
.y247{bottom:316.369350px;}
.y1fb{bottom:317.303700px;}
.y15a{bottom:317.860500px;}
.y5d{bottom:318.551700px;}
.y184{bottom:318.574800px;}
.y195{bottom:318.583800px;}
.y33{bottom:320.288700px;}
.y1bf{bottom:320.551350px;}
.y287{bottom:320.809350px;}
.yac{bottom:320.827350px;}
.y119{bottom:321.740700px;}
.y95{bottom:326.836350px;}
.y2cf{bottom:327.301200px;}
.y311{bottom:329.708700px;}
.y246{bottom:332.866350px;}
.ycc{bottom:333.574350px;}
.y32{bottom:333.788700px;}
.y1fa{bottom:333.836700px;}
.y286{bottom:334.309350px;}
.y5c{bottom:335.053200px;}
.y183{bottom:335.071800px;}
.y194{bottom:335.080800px;}
.y1be{bottom:337.048350px;}
.yab{bottom:337.324350px;}
.y118{bottom:338.237700px;}
.y2ce{bottom:340.801200px;}
.y94{bottom:343.337850px;}
.y310{bottom:343.399950px;}
.y285{bottom:347.809350px;}
.y245{bottom:349.363350px;}
.y1f9{bottom:350.387700px;}
.y5b{bottom:351.554700px;}
.y182{bottom:351.568800px;}
.y193{bottom:351.577800px;}
.y1bd{bottom:353.545350px;}
.yaa{bottom:353.821350px;}
.y2cd{bottom:354.301200px;}
.y117{bottom:354.734700px;}
.y159{bottom:356.358900px;}
.y30f{bottom:357.091200px;}
.y93{bottom:359.839350px;}
.y31{bottom:360.788700px;}
.y284{bottom:361.309350px;}
.y244{bottom:365.860350px;}
.y1f8{bottom:366.932700px;}
.y2cc{bottom:367.801200px;}
.y5a{bottom:368.056200px;}
.y1bc{bottom:370.042350px;}
.ya9{bottom:370.318350px;}
.ycb{bottom:370.339350px;}
.y30e{bottom:370.782450px;}
.y116{bottom:371.231700px;}
.y158{bottom:372.855900px;}
.y30{bottom:374.288700px;}
.y283{bottom:374.809350px;}
.y92{bottom:376.340850px;}
.y2cb{bottom:381.301200px;}
.y243{bottom:382.357350px;}
.y1f7{bottom:383.471700px;}
.y30d{bottom:384.473700px;}
.y59{bottom:384.557700px;}
.y1bb{bottom:386.539350px;}
.ya8{bottom:386.815350px;}
.yca{bottom:386.836350px;}
.y115{bottom:387.728700px;}
.y2f{bottom:387.788700px;}
.y282{bottom:388.309350px;}
.y157{bottom:389.352900px;}
.y91{bottom:392.842350px;}
.y2ca{bottom:394.801200px;}
.y1a7{bottom:397.579650px;}
.y30c{bottom:398.164950px;}
.y242{bottom:398.854350px;}
.y1f6{bottom:400.022700px;}
.y58{bottom:401.059200px;}
.y1ba{bottom:403.039350px;}
.ya7{bottom:403.312350px;}
.yc9{bottom:403.333350px;}
.y114{bottom:404.225700px;}
.y156{bottom:405.849900px;}
.y281{bottom:407.809350px;}
.y2c9{bottom:408.301200px;}
.y90{bottom:409.343850px;}
.y30b{bottom:411.856200px;}
.y1a6{bottom:414.076650px;}
.y2e{bottom:414.788700px;}
.y241{bottom:415.351350px;}
.y1f5{bottom:416.561700px;}
.y57{bottom:417.560700px;}
.ya6{bottom:419.827350px;}
.yc8{bottom:419.830350px;}
.y113{bottom:420.722700px;}
.y280{bottom:421.309350px;}
.y2c8{bottom:421.801200px;}
.y155{bottom:422.346900px;}
.y30a{bottom:425.547450px;}
.y8f{bottom:425.845350px;}
.y2d{bottom:428.288700px;}
.y1a5{bottom:430.573650px;}
.y240{bottom:431.848350px;}
.y1f4{bottom:433.112700px;}
.y56{bottom:434.062200px;}
.y27f{bottom:434.809350px;}
.y2c7{bottom:435.301200px;}
.ya5{bottom:436.324350px;}
.yc7{bottom:436.327350px;}
.y112{bottom:437.219700px;}
.y154{bottom:438.843900px;}
.y309{bottom:439.238700px;}
.y1b9{bottom:440.128350px;}
.y8e{bottom:442.346850px;}
.y1a4{bottom:447.070650px;}
.y27e{bottom:448.309350px;}
.y23f{bottom:448.345350px;}
.y2c6{bottom:448.801200px;}
.y1f3{bottom:449.639700px;}
.y55{bottom:450.563700px;}
.ya4{bottom:452.821350px;}
.yc6{bottom:452.824350px;}
.y308{bottom:452.929950px;}
.y111{bottom:453.716700px;}
.y1b8{bottom:456.625350px;}
.y153{bottom:457.352400px;}
.y14d{bottom:457.353000px;}
.y14c{bottom:457.389900px;}
.y8d{bottom:458.848350px;}
.y2c{bottom:459.788700px;}
.y27d{bottom:461.809350px;}
.y2c5{bottom:462.301200px;}
.y14f{bottom:463.100400px;}
.y23e{bottom:464.842350px;}
.y1f2{bottom:466.190700px;}
.y307{bottom:466.621200px;}
.y54{bottom:467.065200px;}
.ya3{bottom:469.318350px;}
.yc5{bottom:469.321350px;}
.y151{bottom:469.505400px;}
.y110{bottom:470.213700px;}
.y1b7{bottom:473.122350px;}
.y2b{bottom:473.288700px;}
.y27c{bottom:475.309350px;}
.y8c{bottom:475.349850px;}
.y2c4{bottom:475.801200px;}
.y306{bottom:480.312450px;}
.y23d{bottom:481.339350px;}
.y1f1{bottom:482.741700px;}
.y53{bottom:483.566700px;}
.ya2{bottom:485.815350px;}
.yc4{bottom:485.818350px;}
.y10f{bottom:486.710700px;}
.y2a{bottom:486.788700px;}
.y14b{bottom:486.860400px;}
.y27b{bottom:488.809350px;}
.y2c3{bottom:489.301200px;}
.y1b6{bottom:489.619350px;}
.y8b{bottom:491.851350px;}
.y305{bottom:494.003700px;}
.y23c{bottom:497.836350px;}
.y1f0{bottom:499.292700px;}
.y52{bottom:500.068200px;}
.y29{bottom:500.288700px;}
.y27a{bottom:502.309350px;}
.ya1{bottom:502.312350px;}
.yc3{bottom:502.315350px;}
.y2c2{bottom:502.801200px;}
.y10e{bottom:503.207700px;}
.y14a{bottom:503.357400px;}
.y1b5{bottom:506.119350px;}
.y304{bottom:507.694950px;}
.y8a{bottom:512.855100px;}
.y23b{bottom:514.333350px;}
.y279{bottom:515.809350px;}
.y1ef{bottom:515.819700px;}
.y2c1{bottom:516.301200px;}
.y51{bottom:516.569700px;}
.ya0{bottom:518.809350px;}
.yc2{bottom:518.812350px;}
.y28{bottom:519.188700px;}
.y10d{bottom:519.704700px;}
.y149{bottom:519.854400px;}
.y303{bottom:521.386200px;}
.y27{bottom:527.288700px;}
.y278{bottom:529.309350px;}
.y89{bottom:529.356600px;}
.y2c0{bottom:529.801200px;}
.y23a{bottom:530.830350px;}
.y1ee{bottom:532.370700px;}
.y50{bottom:533.071200px;}
.y302{bottom:535.077450px;}
.yc1{bottom:535.309350px;}
.y9f{bottom:535.321350px;}
.y10c{bottom:536.201700px;}
.y148{bottom:536.351400px;}
.y26{bottom:540.788700px;}
.y277{bottom:542.809350px;}
.y1b4{bottom:543.208350px;}
.y2bf{bottom:543.301200px;}
.y239{bottom:547.327350px;}
.y301{bottom:548.768700px;}
.y1ed{bottom:548.921700px;}
.y4f{bottom:549.572700px;}
.y9e{bottom:551.818350px;}
.yc0{bottom:551.825850px;}
.y10b{bottom:552.698700px;}
.y147{bottom:552.848400px;}
.y25{bottom:554.288700px;}
.y88{bottom:554.849850px;}
.y2be{bottom:556.801200px;}
.y1b3{bottom:559.705350px;}
.y276{bottom:562.309350px;}
.y300{bottom:562.459950px;}
.y238{bottom:563.836350px;}
.y1ec{bottom:565.472700px;}
.y4e{bottom:566.074200px;}
.y24{bottom:567.788700px;}
.y9d{bottom:568.315350px;}
.ybf{bottom:568.322850px;}
.y10a{bottom:569.195700px;}
.y146{bottom:569.345400px;}
.y2bd{bottom:570.301200px;}
.y87{bottom:571.351350px;}
.y2ff{bottom:576.151200px;}
.y1b2{bottom:576.202350px;}
.y275{bottom:577.309350px;}
.y237{bottom:580.333350px;}
.y23{bottom:581.288700px;}
.y1eb{bottom:582.023700px;}
.y4d{bottom:582.575700px;}
.y2bc{bottom:583.801200px;}
.y9c{bottom:584.812350px;}
.ybe{bottom:584.819850px;}
.y109{bottom:585.692700px;}
.y145{bottom:585.842400px;}
.y86{bottom:587.845350px;}
.y2fe{bottom:589.842450px;}
.y274{bottom:592.309350px;}
.y1b1{bottom:592.699350px;}
.y22{bottom:594.788700px;}
.y236{bottom:596.830350px;}
.y2bb{bottom:597.301200px;}
.y1ea{bottom:598.538700px;}
.y4c{bottom:599.077200px;}
.y9b{bottom:601.309350px;}
.ybd{bottom:601.316850px;}
.y108{bottom:602.189700px;}
.y144{bottom:602.339400px;}
.y2fd{bottom:603.533700px;}
.y85{bottom:604.346850px;}
.y273{bottom:607.309350px;}
.y21{bottom:608.288700px;}
.y1b0{bottom:609.199350px;}
.y2ba{bottom:610.801200px;}
.y235{bottom:613.327350px;}
.y1e9{bottom:615.089700px;}
.y4b{bottom:615.578700px;}
.y2fc{bottom:617.224950px;}
.ybc{bottom:617.813850px;}
.y9a{bottom:617.815350px;}
.y107{bottom:618.686700px;}
.y143{bottom:618.836400px;}
.y84{bottom:620.848350px;}
.y272{bottom:622.309350px;}
.y2b9{bottom:624.301200px;}
.y20{bottom:627.188700px;}
.y234{bottom:629.827350px;}
.y2fb{bottom:630.916200px;}
.y1e8{bottom:631.640700px;}
.y4a{bottom:632.080200px;}
.ybb{bottom:634.310850px;}
.y99{bottom:634.312350px;}
.y106{bottom:635.183700px;}
.y1f{bottom:635.288700px;}
.y142{bottom:635.333400px;}
.y83{bottom:637.349850px;}
.y2b8{bottom:637.801200px;}
.y271{bottom:643.309350px;}
.y2fa{bottom:644.607450px;}
.y1af{bottom:646.291350px;}
.y233{bottom:646.324350px;}
.y1e7{bottom:648.191700px;}
.y49{bottom:648.581700px;}
.y1e{bottom:648.788700px;}
.yba{bottom:650.807850px;}
.y98{bottom:650.809350px;}
.y2b7{bottom:651.301200px;}
.y105{bottom:651.686700px;}
.y141{bottom:651.830400px;}
.y82{bottom:653.851350px;}
.y2f9{bottom:658.298700px;}
.y1d{bottom:662.288700px;}
.y1ae{bottom:662.788350px;}
.y232{bottom:662.824350px;}
.y270{bottom:664.309350px;}
.y1e6{bottom:664.742700px;}
.y2b6{bottom:664.801200px;}
.y48{bottom:665.083200px;}
.y104{bottom:668.201700px;}
.y140{bottom:668.327400px;}
.y81{bottom:670.348350px;}
.y2f8{bottom:671.989950px;}
.y26f{bottom:677.809350px;}
.y2b5{bottom:678.301200px;}
.y1ad{bottom:679.285350px;}
.y1c{bottom:681.188700px;}
.y1e5{bottom:681.281700px;}
.y47{bottom:681.584700px;}
.y103{bottom:684.698700px;}
.y13f{bottom:684.824400px;}
.y2f7{bottom:685.681200px;}
.y80{bottom:686.849850px;}
.y1b{bottom:689.288700px;}
.ye2{bottom:690.946200px;}
.y2b4{bottom:691.801200px;}
.y1ac{bottom:695.782350px;}
.y1e4{bottom:697.832700px;}
.y46{bottom:698.086200px;}
.y2f6{bottom:699.372450px;}
.y102{bottom:701.195700px;}
.y13e{bottom:701.324400px;}
.y1a{bottom:702.788700px;}
.y7f{bottom:703.351350px;}
.y231{bottom:704.101350px;}
.y2b3{bottom:705.301200px;}
.ye1{bottom:707.443200px;}
.y26e{bottom:709.333350px;}
.y1ab{bottom:712.279350px;}
.y2f5{bottom:713.063700px;}
.y1e3{bottom:714.383700px;}
.y45{bottom:714.587700px;}
.y101{bottom:717.692700px;}
.y2b2{bottom:718.801200px;}
.y230{bottom:720.598350px;}
.y19{bottom:721.688700px;}
.ye0{bottom:723.940200px;}
.y7e{bottom:724.350600px;}
.y26d{bottom:725.830350px;}
.y2f4{bottom:726.754950px;}
.y1aa{bottom:728.779350px;}
.y18{bottom:729.788700px;}
.y1e2{bottom:730.928700px;}
.y44{bottom:731.089200px;}
.y2b1{bottom:732.301200px;}
.y96{bottom:733.563540px;}
.y100{bottom:734.189700px;}
.y22f{bottom:737.095350px;}
.y13d{bottom:739.863300px;}
.ydf{bottom:740.437200px;}
.y2f3{bottom:740.446200px;}
.y26c{bottom:742.327350px;}
.y17{bottom:743.288700px;}
.y2b0{bottom:745.801200px;}
.y43{bottom:747.590700px;}
.y7d{bottom:749.843850px;}
.yff{bottom:750.686700px;}
.y22e{bottom:753.592350px;}
.y2f2{bottom:754.137450px;}
.y13c{bottom:756.360300px;}
.y16{bottom:756.788700px;}
.yde{bottom:756.934200px;}
.y26b{bottom:758.824350px;}
.y2af{bottom:759.301200px;}
.y42{bottom:764.092200px;}
.y1a9{bottom:765.862350px;}
.y7c{bottom:766.345350px;}
.yfe{bottom:767.183700px;}
.y2f1{bottom:767.828700px;}
.y22d{bottom:770.089350px;}
.y2ae{bottom:772.801200px;}
.y13b{bottom:772.857300px;}
.ydd{bottom:773.431200px;}
.y26a{bottom:775.321350px;}
.y15{bottom:775.688700px;}
.y1e1{bottom:776.849700px;}
.y41{bottom:780.593700px;}
.y2f0{bottom:781.519950px;}
.y1a8{bottom:782.359350px;}
.y7b{bottom:782.846850px;}
.yfd{bottom:783.683700px;}
.y2ad{bottom:786.301200px;}
.y22c{bottom:786.586350px;}
.y13a{bottom:789.354300px;}
.y269{bottom:791.818350px;}
.y1e0{bottom:793.400700px;}
.y2ef{bottom:795.211200px;}
.y40{bottom:797.095200px;}
.y14{bottom:797.288700px;}
.y7a{bottom:799.348350px;}
.y2ac{bottom:799.801200px;}
.y22b{bottom:803.083350px;}
.y139{bottom:805.851300px;}
.y268{bottom:808.315350px;}
.y2ee{bottom:808.902450px;}
.y1df{bottom:809.951700px;}
.y13{bottom:810.788700px;}
.y2ab{bottom:813.301200px;}
.y3f{bottom:813.596700px;}
.y79{bottom:815.849850px;}
.y22a{bottom:819.580350px;}
.yfc{bottom:822.029700px;}
.y138{bottom:822.348300px;}
.y2ed{bottom:822.593700px;}
.y12{bottom:824.288700px;}
.y267{bottom:824.812350px;}
.y1de{bottom:826.502700px;}
.y2aa{bottom:826.801200px;}
.y3e{bottom:830.098200px;}
.y78{bottom:832.351350px;}
.y229{bottom:836.077350px;}
.y2ec{bottom:836.284950px;}
.y11{bottom:837.788700px;}
.yfb{bottom:838.526700px;}
.y137{bottom:838.845300px;}
.y219{bottom:838.954950px;}
.y266{bottom:841.309350px;}
.y1dd{bottom:843.053700px;}
.y3d{bottom:846.599700px;}
.y2eb{bottom:849.976200px;}
.y10{bottom:851.288700px;}
.y228{bottom:852.574350px;}
.y218{bottom:853.208700px;}
.y77{bottom:853.351350px;}
.yfa{bottom:855.023700px;}
.y136{bottom:855.342300px;}
.y265{bottom:857.809350px;}
.y1dc{bottom:859.604700px;}
.y2a9{bottom:862.051200px;}
.y3c{bottom:863.101200px;}
.y2ea{bottom:863.667450px;}
.yf{bottom:864.788700px;}
.y217{bottom:867.462450px;}
.y227{bottom:869.071350px;}
.yf9{bottom:871.523700px;}
.y135{bottom:871.839300px;}
.y2a8{bottom:875.551200px;}
.y1db{bottom:876.155700px;}
.y2e9{bottom:877.358700px;}
.y216{bottom:881.716200px;}
.y226{bottom:885.568350px;}
.y134{bottom:888.336300px;}
.y2a7{bottom:889.051200px;}
.y2e8{bottom:891.049950px;}
.y1da{bottom:892.706700px;}
.y264{bottom:893.881350px;}
.y215{bottom:899.153700px;}
.y225{bottom:902.065350px;}
.y2a6{bottom:902.551200px;}
.y9{bottom:904.351200px;}
.y2e7{bottom:904.741200px;}
.y133{bottom:904.833300px;}
.y1d9{bottom:909.257700px;}
.yf8{bottom:909.881700px;}
.y263{bottom:910.378350px;}
.y2a5{bottom:916.051200px;}
.y2e6{bottom:918.432450px;}
.y224{bottom:918.562350px;}
.y214{bottom:919.594950px;}
.y132{bottom:921.330300px;}
.y1d8{bottom:925.808700px;}
.yf7{bottom:926.378700px;}
.y262{bottom:926.875350px;}
.y8{bottom:927.751200px;}
.y2a4{bottom:929.551200px;}
.y2e5{bottom:932.123700px;}
.y223{bottom:935.059350px;}
.y131{bottom:937.827300px;}
.y213{bottom:940.036200px;}
.y1d7{bottom:942.359700px;}
.yf6{bottom:942.875700px;}
.y2a3{bottom:943.051200px;}
.y261{bottom:943.372350px;}
.y2e4{bottom:945.814950px;}
.y7{bottom:951.151200px;}
.y222{bottom:951.559350px;}
.y130{bottom:954.324300px;}
.y2a2{bottom:956.551200px;}
.y1d6{bottom:958.910700px;}
.yf5{bottom:959.372700px;}
.y2e3{bottom:959.506200px;}
.y260{bottom:959.869350px;}
.y212{bottom:960.477450px;}
.y12f{bottom:970.821300px;}
.y2e2{bottom:973.197450px;}
.y1d5{bottom:975.461700px;}
.yf4{bottom:975.869700px;}
.y25f{bottom:976.366350px;}
.y211{bottom:980.918700px;}
.y2a1{bottom:982.051200px;}
.y2e1{bottom:986.888700px;}
.y12e{bottom:987.318300px;}
.y6{bottom:991.051200px;}
.y1d4{bottom:992.012700px;}
.yf3{bottom:992.366700px;}
.y221{bottom:992.809350px;}
.y25e{bottom:992.863350px;}
.y2a0{bottom:995.551200px;}
.y2e0{bottom:1000.579950px;}
.y210{bottom:1001.359950px;}
.y12d{bottom:1003.815300px;}
.y1d3{bottom:1008.563700px;}
.yf2{bottom:1008.878700px;}
.y29f{bottom:1009.051200px;}
.y220{bottom:1009.306350px;}
.y25d{bottom:1009.360350px;}
.y2df{bottom:1014.271200px;}
.y12c{bottom:1020.312300px;}
.y20f{bottom:1021.801200px;}
.y29e{bottom:1022.551200px;}
.y1d2{bottom:1025.114700px;}
.yf1{bottom:1025.375700px;}
.y21f{bottom:1025.803350px;}
.y25c{bottom:1025.857350px;}
.y5{bottom:1027.051200px;}
.y2de{bottom:1027.962450px;}
.y29d{bottom:1036.051200px;}
.y12b{bottom:1036.809300px;}
.y2dd{bottom:1041.653700px;}
.y1d1{bottom:1041.665700px;}
.yf0{bottom:1041.872700px;}
.y20e{bottom:1042.242450px;}
.y21e{bottom:1042.300350px;}
.y25b{bottom:1042.354350px;}
.y29c{bottom:1049.551200px;}
.y12a{bottom:1053.309300px;}
.y2dc{bottom:1055.344950px;}
.y1d0{bottom:1058.216700px;}
.yef{bottom:1058.369700px;}
.y21d{bottom:1058.797350px;}
.y25a{bottom:1058.851350px;}
.y20d{bottom:1062.863700px;}
.y4{bottom:1063.051200px;}
.y2db{bottom:1069.036200px;}
.y29b{bottom:1069.051200px;}
.y1cf{bottom:1074.767700px;}
.yee{bottom:1074.866700px;}
.y21c{bottom:1075.300350px;}
.y259{bottom:1075.348350px;}
.y29a{bottom:1082.551200px;}
.y2da{bottom:1082.727450px;}
.y20c{bottom:1083.679200px;}
.y1ce{bottom:1091.318700px;}
.yed{bottom:1091.363700px;}
.y21b{bottom:1091.797350px;}
.y129{bottom:1091.816700px;}
.y258{bottom:1091.845350px;}
.y299{bottom:1096.051200px;}
.y2d9{bottom:1096.418700px;}
.y20b{bottom:1100.176200px;}
.y3{bottom:1105.051200px;}
.yec{bottom:1107.863700px;}
.y21a{bottom:1108.294350px;}
.y128{bottom:1108.313700px;}
.y257{bottom:1108.342350px;}
.y298{bottom:1109.551200px;}
.y2d8{bottom:1110.109950px;}
.ya{bottom:1140.863550px;}
.h16{height:21.222000px;}
.h1a{height:21.495155px;}
.h7{height:24.249888px;}
.h19{height:30.095807px;}
.h24{height:34.290000px;}
.h2{height:36.576000px;}
.h10{height:36.624000px;}
.h17{height:38.692143px;}
.h27{height:40.356000px;}
.h9{height:40.869141px;}
.h15{height:41.148000px;}
.h1d{height:41.422852px;}
.h8{height:43.434000px;}
.h18{height:44.245594px;}
.h6{height:50.292000px;}
.h26{height:51.216240px;}
.h25{height:51.228240px;}
.hd{height:51.282840px;}
.h1c{height:51.300240px;}
.h13{height:51.324240px;}
.h14{height:51.330240px;}
.hc{height:51.336240px;}
.h12{height:51.348240px;}
.he{height:51.360240px;}
.ha{height:51.372240px;}
.hb{height:51.384240px;}
.h11{height:51.396240px;}
.h22{height:51.420240px;}
.h1f{height:51.444240px;}
.h23{height:51.468240px;}
.h21{height:51.492240px;}
.h20{height:51.516240px;}
.h1e{height:51.852240px;}
.h3{height:54.864000px;}
.h1b{height:62.793141px;}
.h5{height:74.506068px;}
.h4{height:91.440000px;}
.hf{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:143.374500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:44.196450px;}
.x7{left:62.994000px;}
.x5{left:68.250000px;}
.x18{left:70.161450px;}
.x6{left:72.649950px;}
.xe{left:76.499850px;}
.x1b{left:81.900000px;}
.x16{left:86.781450px;}
.x1a{left:139.500000px;}
.x3{left:218.508750px;}
.x2{left:256.811550px;}
.xf{left:460.027650px;}
.x10{left:473.532300px;}
.x1c{left:478.935000px;}
.x8{left:533.579550px;}
.xa{left:543.336000px;}
.x9{left:547.079550px;}
.xb{left:555.180000px;}
.xc{left:561.336000px;}
.x12{left:573.285000px;}
.x13{left:590.511450px;}
.x15{left:651.591450px;}
.x17{left:703.521450px;}
.x19{left:716.659950px;}
.x4{left:723.251100px;}
.x1{left:794.633550px;}
.x11{left:812.633550px;}
.xd{left:853.499955px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v6{vertical-align:-6.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.333333pt;}
.v7{vertical-align:19.488000pt;}
.v3{vertical-align:21.578667pt;}
.v1{vertical-align:31.200000pt;}
.v4{vertical-align:48.000000pt;}
.lsd{letter-spacing:-1.776000pt;}
.ls8{letter-spacing:-1.578667pt;}
.lsa{letter-spacing:-1.295520pt;}
.lsf{letter-spacing:-0.720400pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004523pt;}
.ls2{letter-spacing:0.005056pt;}
.lsc{letter-spacing:0.037195pt;}
.lse{letter-spacing:0.038027pt;}
.ls10{letter-spacing:0.600000pt;}
.ls5{letter-spacing:0.954720pt;}
.ls1{letter-spacing:1.266160pt;}
.ls4{letter-spacing:1.440000pt;}
.ls9{letter-spacing:3.285333pt;}
.ls0{letter-spacing:15.289067pt;}
.lsb{letter-spacing:16.340160pt;}
.ls6{letter-spacing:21.888000pt;}
.ws5b{word-spacing:-23.953365pt;}
.ws5a{word-spacing:-23.916171pt;}
.ws5c{word-spacing:-22.128923pt;}
.ws2{word-spacing:-14.439493pt;}
.ws5{word-spacing:-13.344000pt;}
.wsb{word-spacing:-12.160507pt;}
.ws0{word-spacing:-11.032320pt;}
.wsa{word-spacing:-10.240427pt;}
.wsec{word-spacing:-10.240000pt;}
.ws4{word-spacing:-9.801792pt;}
.ws113{word-spacing:-9.600400pt;}
.ws10f{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.847072pt;}
.ws1{word-spacing:-6.789120pt;}
.wseb{word-spacing:-5.399600pt;}
.ws67{word-spacing:-4.080480pt;}
.ws69{word-spacing:-3.887520pt;}
.ws9{word-spacing:-3.812640pt;}
.wsfd{word-spacing:-3.791520pt;}
.wse2{word-spacing:-3.744000pt;}
.wsef{word-spacing:-3.360480pt;}
.ws10e{word-spacing:-3.120000pt;}
.ws6c{word-spacing:-2.976000pt;}
.wsdc{word-spacing:-2.928000pt;}
.ws10a{word-spacing:-2.880000pt;}
.wsd5{word-spacing:-2.832480pt;}
.ws24{word-spacing:-2.786160pt;}
.ws6e{word-spacing:-2.639520pt;}
.wse1{word-spacing:-2.592000pt;}
.ws96{word-spacing:-2.496000pt;}
.wsf3{word-spacing:-2.400000pt;}
.ws7b{word-spacing:-2.352000pt;}
.ws9f{word-spacing:-2.304000pt;}
.ws111{word-spacing:-2.199600pt;}
.ws1a{word-spacing:-2.160000pt;}
.ws6a{word-spacing:-2.112480pt;}
.ws90{word-spacing:-2.064000pt;}
.ws66{word-spacing:-1.968000pt;}
.wsdd{word-spacing:-1.941264pt;}
.wsa1{word-spacing:-1.919520pt;}
.wsea{word-spacing:-1.872000pt;}
.ws80{word-spacing:-1.776000pt;}
.ws35{word-spacing:-1.728000pt;}
.ws8d{word-spacing:-1.680000pt;}
.ws61{word-spacing:-1.632000pt;}
.ws65{word-spacing:-1.584000pt;}
.wsf1{word-spacing:-1.488480pt;}
.ws7e{word-spacing:-1.392480pt;}
.wsd6{word-spacing:-1.344000pt;}
.wsc{word-spacing:-1.266160pt;}
.ws8f{word-spacing:-1.248000pt;}
.wsa8{word-spacing:-1.199520pt;}
.ws93{word-spacing:-1.008000pt;}
.ws29{word-spacing:-0.954720pt;}
.wsc3{word-spacing:-0.912000pt;}
.ws110{word-spacing:-0.720400pt;}
.ws8e{word-spacing:-0.720000pt;}
.wsdb{word-spacing:-0.624000pt;}
.ws112{word-spacing:-0.600000pt;}
.ws36{word-spacing:-0.575520pt;}
.ws8a{word-spacing:-0.479520pt;}
.ws22{word-spacing:-0.432000pt;}
.wse{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.336000pt;}
.wsb2{word-spacing:-0.288000pt;}
.ws64{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.144480pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws59{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.wscf{word-spacing:0.048480pt;}
.wsca{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.144480pt;}
.ws3b{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.240000pt;}
.wse0{word-spacing:0.288000pt;}
.ws105{word-spacing:0.336000pt;}
.wse5{word-spacing:0.384000pt;}
.wsb5{word-spacing:0.432000pt;}
.wsd3{word-spacing:0.479520pt;}
.wse3{word-spacing:0.575520pt;}
.ws94{word-spacing:0.672480pt;}
.ws14{word-spacing:0.720000pt;}
.ws7d{word-spacing:0.816000pt;}
.wsc2{word-spacing:0.864480pt;}
.ws10b{word-spacing:0.912000pt;}
.ws109{word-spacing:0.960000pt;}
.wsa5{word-spacing:1.008000pt;}
.wsde{word-spacing:1.082016pt;}
.wsda{word-spacing:1.103520pt;}
.wsae{word-spacing:1.152000pt;}
.ws12{word-spacing:1.199520pt;}
.wsc7{word-spacing:1.241136pt;}
.ws38{word-spacing:1.248000pt;}
.ws32{word-spacing:1.392480pt;}
.wsa4{word-spacing:1.440000pt;}
.wsba{word-spacing:1.536000pt;}
.ws8{word-spacing:1.578667pt;}
.ws9c{word-spacing:1.584000pt;}
.wscd{word-spacing:1.632000pt;}
.ws39{word-spacing:1.680000pt;}
.ws82{word-spacing:1.776000pt;}
.wsc4{word-spacing:1.823520pt;}
.wsc6{word-spacing:1.872000pt;}
.ws15{word-spacing:1.919520pt;}
.wsd7{word-spacing:1.968000pt;}
.wse4{word-spacing:2.064000pt;}
.ws5e{word-spacing:2.112480pt;}
.wsb1{word-spacing:2.160000pt;}
.ws51{word-spacing:2.256000pt;}
.ws4d{word-spacing:2.304000pt;}
.wsf9{word-spacing:2.400000pt;}
.ws49{word-spacing:2.447520pt;}
.ws76{word-spacing:2.496000pt;}
.wsb7{word-spacing:2.592000pt;}
.wsb8{word-spacing:2.639520pt;}
.ws2d{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.736480pt;}
.ws81{word-spacing:2.784000pt;}
.ws7f{word-spacing:2.832480pt;}
.ws73{word-spacing:2.928000pt;}
.wsf0{word-spacing:2.976000pt;}
.ws86{word-spacing:3.024000pt;}
.ws9e{word-spacing:3.072000pt;}
.wsed{word-spacing:3.167520pt;}
.ws89{word-spacing:3.216000pt;}
.ws52{word-spacing:3.263520pt;}
.ws2b{word-spacing:3.312000pt;}
.wsd4{word-spacing:3.360480pt;}
.ws17{word-spacing:3.408000pt;}
.ws102{word-spacing:3.504000pt;}
.ws8c{word-spacing:3.552480pt;}
.ws48{word-spacing:3.600000pt;}
.ws62{word-spacing:3.648000pt;}
.ws77{word-spacing:3.696000pt;}
.wsee{word-spacing:3.791520pt;}
.wscb{word-spacing:3.840000pt;}
.ws37{word-spacing:3.887520pt;}
.ws27{word-spacing:3.914352pt;}
.ws78{word-spacing:3.983520pt;}
.ws101{word-spacing:4.032000pt;}
.wsd1{word-spacing:4.080480pt;}
.wsa9{word-spacing:4.224000pt;}
.ws4c{word-spacing:4.320000pt;}
.wsc8{word-spacing:4.368000pt;}
.wsa3{word-spacing:4.416000pt;}
.wsa7{word-spacing:4.464000pt;}
.ws9b{word-spacing:4.511520pt;}
.ws58{word-spacing:4.560000pt;}
.ws30{word-spacing:4.607520pt;}
.ws56{word-spacing:4.704480pt;}
.ws53{word-spacing:4.752000pt;}
.ws98{word-spacing:4.800480pt;}
.ws6d{word-spacing:4.848000pt;}
.ws10c{word-spacing:4.896480pt;}
.ws108{word-spacing:4.944000pt;}
.wsb6{word-spacing:4.992000pt;}
.ws103{word-spacing:5.040000pt;}
.ws63{word-spacing:5.088000pt;}
.ws44{word-spacing:5.135520pt;}
.ws95{word-spacing:5.231520pt;}
.wsab{word-spacing:5.280000pt;}
.wsce{word-spacing:5.376000pt;}
.ws70{word-spacing:5.520480pt;}
.ws11{word-spacing:5.568000pt;}
.ws10{word-spacing:5.664000pt;}
.ws31{word-spacing:5.712000pt;}
.wsd0{word-spacing:5.808000pt;}
.ws26{word-spacing:5.904000pt;}
.wsf7{word-spacing:6.048480pt;}
.ws28{word-spacing:6.096000pt;}
.wsaf{word-spacing:6.192000pt;}
.ws97{word-spacing:6.240000pt;}
.wsbb{word-spacing:6.288000pt;}
.ws57{word-spacing:6.336000pt;}
.ws92{word-spacing:6.384000pt;}
.wsa2{word-spacing:6.528000pt;}
.wse9{word-spacing:6.575520pt;}
.wsbf{word-spacing:6.624000pt;}
.wsb4{word-spacing:6.672480pt;}
.ws85{word-spacing:6.720000pt;}
.wsc0{word-spacing:6.768480pt;}
.ws3f{word-spacing:6.778512pt;}
.wsf{word-spacing:6.816000pt;}
.ws4e{word-spacing:6.864480pt;}
.wsf2{word-spacing:6.960000pt;}
.ws21{word-spacing:7.056000pt;}
.ws43{word-spacing:7.103520pt;}
.ws16{word-spacing:7.152000pt;}
.ws4a{word-spacing:7.199520pt;}
.ws84{word-spacing:7.248000pt;}
.wsd9{word-spacing:7.392480pt;}
.ws2f{word-spacing:7.440000pt;}
.ws18{word-spacing:7.488480pt;}
.ws99{word-spacing:7.536000pt;}
.ws104{word-spacing:7.680000pt;}
.ws8b{word-spacing:7.728000pt;}
.ws50{word-spacing:7.872000pt;}
.ws10d{word-spacing:8.160000pt;}
.ws83{word-spacing:8.208480pt;}
.wscc{word-spacing:8.256000pt;}
.wsc1{word-spacing:8.304000pt;}
.wsac{word-spacing:8.352000pt;}
.ws5d{word-spacing:8.400000pt;}
.wsd2{word-spacing:8.496000pt;}
.ws33{word-spacing:8.592000pt;}
.wse8{word-spacing:8.639520pt;}
.wsf4{word-spacing:8.688000pt;}
.ws6f{word-spacing:8.784000pt;}
.wsbe{word-spacing:8.880000pt;}
.ws7a{word-spacing:9.024000pt;}
.ws41{word-spacing:9.072000pt;}
.ws45{word-spacing:9.263520pt;}
.ws79{word-spacing:9.360480pt;}
.ws7c{word-spacing:9.552480pt;}
.ws88{word-spacing:9.600000pt;}
.ws91{word-spacing:9.696000pt;}
.wsa0{word-spacing:9.791520pt;}
.wsfb{word-spacing:9.840000pt;}
.wsf6{word-spacing:9.887520pt;}
.ws5f{word-spacing:9.936000pt;}
.wsff{word-spacing:9.983520pt;}
.ws74{word-spacing:10.032000pt;}
.wsad{word-spacing:10.176480pt;}
.ws40{word-spacing:10.224000pt;}
.wsdf{word-spacing:10.272000pt;}
.wsb3{word-spacing:10.368000pt;}
.wsfe{word-spacing:10.560000pt;}
.ws60{word-spacing:10.607520pt;}
.ws106{word-spacing:10.800480pt;}
.ws4b{word-spacing:10.896480pt;}
.ws20{word-spacing:11.088000pt;}
.ws6{word-spacing:11.092907pt;}
.wsb9{word-spacing:11.376000pt;}
.wsc5{word-spacing:11.424480pt;}
.ws2a{word-spacing:11.808000pt;}
.wsfa{word-spacing:12.240000pt;}
.ws1b{word-spacing:12.336000pt;}
.ws9a{word-spacing:12.672480pt;}
.ws1e{word-spacing:12.816000pt;}
.wsf8{word-spacing:13.056000pt;}
.ws2c{word-spacing:13.248000pt;}
.ws23{word-spacing:13.728000pt;}
.ws34{word-spacing:14.304000pt;}
.ws42{word-spacing:14.496000pt;}
.ws75{word-spacing:14.592000pt;}
.ws9d{word-spacing:14.639520pt;}
.ws71{word-spacing:14.688000pt;}
.ws107{word-spacing:14.880000pt;}
.ws55{word-spacing:14.928000pt;}
.ws46{word-spacing:15.024000pt;}
.wsb0{word-spacing:15.167520pt;}
.wsf5{word-spacing:15.312000pt;}
.wse6{word-spacing:16.080480pt;}
.ws68{word-spacing:16.464000pt;}
.ws1f{word-spacing:16.992000pt;}
.wse7{word-spacing:17.424480pt;}
.ws6b{word-spacing:17.472000pt;}
.ws1d{word-spacing:17.568000pt;}
.ws100{word-spacing:17.664000pt;}
.ws72{word-spacing:17.712000pt;}
.ws54{word-spacing:18.144480pt;}
.ws47{word-spacing:19.008000pt;}
.ws3d{word-spacing:19.680000pt;}
.ws87{word-spacing:20.352000pt;}
.wsaa{word-spacing:21.791520pt;}
.wsc9{word-spacing:22.464000pt;}
.wsd{word-spacing:22.511520pt;}
.ws13{word-spacing:23.184000pt;}
.wsd8{word-spacing:23.951520pt;}
.ws3e{word-spacing:25.536000pt;}
.wsfc{word-spacing:27.216000pt;}
.ws19{word-spacing:31.776000pt;}
.wsbc{word-spacing:101.880000pt;}
.wsbd{word-spacing:187.601600pt;}
.ws25{word-spacing:1306.538667pt;}
._17{margin-left:-2681.276160pt;}
._16{margin-left:-1408.607520pt;}
._14{margin-left:-52.352000pt;}
._9{margin-left:-42.640000pt;}
._1c{margin-left:-38.880000pt;}
._11{margin-left:-36.576000pt;}
._1b{margin-left:-33.072000pt;}
._21{margin-left:-31.530187pt;}
._26{margin-left:-30.052907pt;}
._27{margin-left:-28.848000pt;}
._28{margin-left:-27.936000pt;}
._18{margin-left:-26.640000pt;}
._24{margin-left:-24.765600pt;}
._1e{margin-left:-23.230560pt;}
._19{margin-left:-21.984000pt;}
._1f{margin-left:-20.604501pt;}
._25{margin-left:-19.296000pt;}
._20{margin-left:-18.048000pt;}
._4{margin-left:-16.640000pt;}
._23{margin-left:-15.506880pt;}
._12{margin-left:-14.400000pt;}
._10{margin-left:-12.752000pt;}
._e{margin-left:-11.309333pt;}
._a{margin-left:-10.240000pt;}
._3e{margin-left:-8.849067pt;}
._7{margin-left:-7.003093pt;}
._8{margin-left:-5.833600pt;}
._c{margin-left:-4.740267pt;}
._1{margin-left:-3.258667pt;}
._0{margin-left:-1.578667pt;}
._1a{width:1.404480pt;}
._29{width:2.356693pt;}
._13{width:3.258667pt;}
._5{width:4.502827pt;}
._b{width:9.659733pt;}
._2b{width:10.682133pt;}
._d{width:11.653333pt;}
._f{width:12.872773pt;}
._2{width:18.026667pt;}
._3d{width:19.200000pt;}
._6{width:21.283573pt;}
._1d{width:23.572800pt;}
._3{width:31.374933pt;}
._22{width:35.040000pt;}
._2c{width:47.480000pt;}
._35{width:57.837333pt;}
._30{width:73.600000pt;}
._2e{width:79.320000pt;}
._2d{width:87.719600pt;}
._2f{width:98.359600pt;}
._32{width:111.480000pt;}
._34{width:122.120000pt;}
._36{width:123.320000pt;}
._31{width:124.800000pt;}
._3b{width:127.197333pt;}
._3c{width:130.680000pt;}
._37{width:146.960000pt;}
._38{width:158.920000pt;}
._33{width:178.120000pt;}
._39{width:189.840000pt;}
._3a{width:198.760000pt;}
._2a{width:344.016000pt;}
._15{width:356.181600pt;}
.fsd{font-size:26.565333pt;}
.fs7{font-size:28.288000pt;}
.fsa{font-size:31.824000pt;}
.fs6{font-size:34.666667pt;}
.fsc{font-size:37.194667pt;}
.fse{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.968000pt;}
.fsb{font-size:47.818667pt;}
.fs9{font-size:48.000000pt;}
.fs8{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;}
.y152{bottom:2.148800pt;}
.y14e{bottom:6.442133pt;}
.y150{bottom:12.322133pt;}
.y97{bottom:38.573867pt;}
.y1{bottom:38.574400pt;}
.ye3{bottom:38.584533pt;}
.y2{bottom:38.587733pt;}
.y297{bottom:61.163867pt;}
.yb9{bottom:61.169200pt;}
.y76{bottom:61.171867pt;}
.y69{bottom:61.174400pt;}
.y17f{bottom:61.185200pt;}
.y192{bottom:61.185600pt;}
.y1a3{bottom:61.193600pt;}
.ydc{bottom:61.206533pt;}
.y127{bottom:61.215733pt;}
.y256{bottom:61.217200pt;}
.y169{bottom:61.241333pt;}
.y1cd{bottom:61.318533pt;}
.y174{bottom:61.329333pt;}
.y20a{bottom:61.421067pt;}
.yeb{bottom:65.023467pt;}
.ye{bottom:65.792667pt;}
.y296{bottom:73.163867pt;}
.yb8{bottom:75.833200pt;}
.y75{bottom:75.835867pt;}
.y68{bottom:75.838400pt;}
.y191{bottom:75.849600pt;}
.y1a2{bottom:75.857600pt;}
.ydb{bottom:75.870533pt;}
.y126{bottom:75.879733pt;}
.y255{bottom:75.881200pt;}
.y168{bottom:75.905333pt;}
.y17e{bottom:75.957200pt;}
.y1cc{bottom:75.982533pt;}
.y173{bottom:76.125333pt;}
.y209{bottom:76.133067pt;}
.yd{bottom:77.792667pt;}
.yea{bottom:79.687467pt;}
.y295{bottom:85.163867pt;}
.yc{bottom:89.792667pt;}
.yb7{bottom:90.497200pt;}
.y74{bottom:90.499867pt;}
.y67{bottom:90.502400pt;}
.y190{bottom:90.513600pt;}
.y1a1{bottom:90.521600pt;}
.yda{bottom:90.534533pt;}
.y125{bottom:90.543733pt;}
.y254{bottom:90.545200pt;}
.y167{bottom:90.569333pt;}
.y1cb{bottom:90.646533pt;}
.y17d{bottom:90.729200pt;}
.y208{bottom:90.845067pt;}
.y172{bottom:90.921333pt;}
.ye9{bottom:94.351467pt;}
.y294{bottom:97.163867pt;}
.yb{bottom:101.792667pt;}
.yb6{bottom:105.163867pt;}
.y66{bottom:105.166400pt;}
.y18f{bottom:105.177600pt;}
.y1a0{bottom:105.185600pt;}
.y73{bottom:105.189067pt;}
.yd9{bottom:105.198533pt;}
.y124{bottom:105.207733pt;}
.y253{bottom:105.209200pt;}
.y166{bottom:105.233333pt;}
.y1ca{bottom:105.310533pt;}
.y17c{bottom:105.501200pt;}
.y207{bottom:105.557067pt;}
.y171{bottom:105.717333pt;}
.ye8{bottom:109.015467pt;}
.y293{bottom:109.163867pt;}
.y65{bottom:119.830400pt;}
.y18e{bottom:119.841600pt;}
.y19f{bottom:119.849600pt;}
.y72{bottom:119.853067pt;}
.yd8{bottom:119.862533pt;}
.y123{bottom:119.871733pt;}
.y252{bottom:119.873200pt;}
.y165{bottom:119.897333pt;}
.y1c9{bottom:119.974533pt;}
.y206{bottom:120.269067pt;}
.y17b{bottom:120.273200pt;}
.y170{bottom:120.513333pt;}
.y3b{bottom:123.459333pt;}
.ye7{bottom:123.679467pt;}
.y292{bottom:126.497200pt;}
.y64{bottom:134.499733pt;}
.y18d{bottom:134.505600pt;}
.y19e{bottom:134.513600pt;}
.y71{bottom:134.517067pt;}
.yd7{bottom:134.526533pt;}
.y122{bottom:134.535733pt;}
.y251{bottom:134.537200pt;}
.y164{bottom:134.561333pt;}
.y1c8{bottom:134.638533pt;}
.y205{bottom:134.959733pt;}
.y17a{bottom:135.045200pt;}
.y16f{bottom:135.309333pt;}
.y3a{bottom:135.459333pt;}
.yb5{bottom:136.507867pt;}
.ye6{bottom:138.343467pt;}
.y291{bottom:138.497200pt;}
.y39{bottom:147.459333pt;}
.y63{bottom:149.163733pt;}
.y18c{bottom:149.172267pt;}
.y19d{bottom:149.177600pt;}
.y70{bottom:149.181067pt;}
.yd6{bottom:149.190533pt;}
.y121{bottom:149.199733pt;}
.y250{bottom:149.201200pt;}
.y163{bottom:149.225333pt;}
.y1c7{bottom:149.302533pt;}
.y204{bottom:149.671733pt;}
.y179{bottom:149.817200pt;}
.y16e{bottom:150.105333pt;}
.y290{bottom:150.497200pt;}
.yb4{bottom:151.171867pt;}
.ye5{bottom:153.007467pt;}
.y38{bottom:159.459333pt;}
.y28f{bottom:162.497200pt;}
.y62{bottom:163.830400pt;}
.y19c{bottom:163.841600pt;}
.y6f{bottom:163.845067pt;}
.yd5{bottom:163.854533pt;}
.y120{bottom:163.863733pt;}
.y24f{bottom:163.865200pt;}
.y162{bottom:163.889333pt;}
.y1c6{bottom:163.966533pt;}
.y203{bottom:164.383733pt;}
.y178{bottom:164.589200pt;}
.y16d{bottom:164.901333pt;}
.yb3{bottom:165.835867pt;}
.ye4{bottom:167.671467pt;}
.y37{bottom:171.459333pt;}
.y61{bottom:178.499733pt;}
.y19b{bottom:178.505600pt;}
.y6e{bottom:178.509067pt;}
.yd4{bottom:178.518533pt;}
.y11f{bottom:178.527733pt;}
.y24e{bottom:178.529200pt;}
.y161{bottom:178.553333pt;}
.y1c5{bottom:178.635867pt;}
.y202{bottom:179.095733pt;}
.y177{bottom:179.361200pt;}
.y16c{bottom:179.697333pt;}
.y28e{bottom:179.830533pt;}
.yb2{bottom:180.499867pt;}
.y18b{bottom:180.529600pt;}
.y36{bottom:183.459333pt;}
.y60{bottom:193.163733pt;}
.y19a{bottom:193.172267pt;}
.y6d{bottom:193.173067pt;}
.yd3{bottom:193.182533pt;}
.y24d{bottom:193.193200pt;}
.y11e{bottom:193.194400pt;}
.y160{bottom:193.217333pt;}
.y1c4{bottom:193.299867pt;}
.y201{bottom:193.807733pt;}
.y176{bottom:194.133200pt;}
.y16b{bottom:194.493333pt;}
.y2d7{bottom:194.934400pt;}
.yb1{bottom:195.163867pt;}
.y18a{bottom:195.193600pt;}
.y319{bottom:195.714400pt;}
.y28d{bottom:197.163867pt;}
.y2d6{bottom:206.934400pt;}
.y5f{bottom:207.827733pt;}
.y6c{bottom:207.837067pt;}
.yd2{bottom:207.846533pt;}
.y24c{bottom:207.857200pt;}
.y15f{bottom:207.881333pt;}
.y318{bottom:207.884400pt;}
.y1c3{bottom:207.963867pt;}
.y200{bottom:208.498400pt;}
.y175{bottom:208.906533pt;}
.y16a{bottom:209.289333pt;}
.yb0{bottom:209.830533pt;}
.y189{bottom:209.857600pt;}
.y28c{bottom:214.497200pt;}
.y2d5{bottom:218.934400pt;}
.y317{bottom:220.054400pt;}
.y5e{bottom:222.445733pt;}
.y6b{bottom:222.501067pt;}
.yd1{bottom:222.518533pt;}
.y24b{bottom:222.521200pt;}
.y15e{bottom:222.545333pt;}
.y1c2{bottom:222.630533pt;}
.y1ff{bottom:223.210400pt;}
.y188{bottom:224.521600pt;}
.y199{bottom:224.529600pt;}
.y11d{bottom:227.335733pt;}
.y2d4{bottom:230.934400pt;}
.y28b{bottom:231.830533pt;}
.y316{bottom:232.224400pt;}
.y6a{bottom:237.165067pt;}
.yd0{bottom:237.182533pt;}
.y24a{bottom:237.185200pt;}
.y15d{bottom:237.209333pt;}
.y1fe{bottom:237.922400pt;}
.y187{bottom:239.185600pt;}
.y198{bottom:239.193600pt;}
.yaf{bottom:241.187867pt;}
.y11c{bottom:241.999733pt;}
.y2d3{bottom:242.934400pt;}
.y28a{bottom:243.830533pt;}
.y315{bottom:244.394400pt;}
.ycf{bottom:251.846533pt;}
.y249{bottom:251.849200pt;}
.y15c{bottom:251.864000pt;}
.y1fd{bottom:252.623733pt;}
.y186{bottom:253.849600pt;}
.y197{bottom:253.857600pt;}
.y2d2{bottom:254.934400pt;}
.y1c1{bottom:255.606533pt;}
.y289{bottom:255.830533pt;}
.yae{bottom:255.851867pt;}
.y314{bottom:256.564400pt;}
.y11b{bottom:256.663733pt;}
.y181{bottom:256.795867pt;}
.y35{bottom:260.701067pt;}
.yce{bottom:266.510533pt;}
.y248{bottom:266.513200pt;}
.y2d1{bottom:266.934400pt;}
.y15b{bottom:267.203333pt;}
.y1fc{bottom:267.335733pt;}
.y288{bottom:267.830533pt;}
.y185{bottom:268.513600pt;}
.y196{bottom:268.521600pt;}
.y313{bottom:268.734400pt;}
.y1c0{bottom:270.270533pt;}
.yad{bottom:270.515867pt;}
.y11a{bottom:271.327733pt;}
.y180{bottom:271.459867pt;}
.y34{bottom:272.701067pt;}
.y2d0{bottom:278.934400pt;}
.y312{bottom:280.904400pt;}
.ycd{bottom:281.171200pt;}
.y247{bottom:281.217200pt;}
.y1fb{bottom:282.047733pt;}
.y15a{bottom:282.542667pt;}
.y5d{bottom:283.157067pt;}
.y184{bottom:283.177600pt;}
.y195{bottom:283.185600pt;}
.y33{bottom:284.701067pt;}
.y1bf{bottom:284.934533pt;}
.y287{bottom:285.163867pt;}
.yac{bottom:285.179867pt;}
.y119{bottom:285.991733pt;}
.y95{bottom:290.521200pt;}
.y2cf{bottom:290.934400pt;}
.y311{bottom:293.074400pt;}
.y246{bottom:295.881200pt;}
.ycc{bottom:296.510533pt;}
.y32{bottom:296.701067pt;}
.y1fa{bottom:296.743733pt;}
.y286{bottom:297.163867pt;}
.y5c{bottom:297.825067pt;}
.y183{bottom:297.841600pt;}
.y194{bottom:297.849600pt;}
.y1be{bottom:299.598533pt;}
.yab{bottom:299.843867pt;}
.y118{bottom:300.655733pt;}
.y2ce{bottom:302.934400pt;}
.y94{bottom:305.189200pt;}
.y310{bottom:305.244400pt;}
.y285{bottom:309.163867pt;}
.y245{bottom:310.545200pt;}
.y1f9{bottom:311.455733pt;}
.y5b{bottom:312.493067pt;}
.y182{bottom:312.505600pt;}
.y193{bottom:312.513600pt;}
.y1bd{bottom:314.262533pt;}
.yaa{bottom:314.507867pt;}
.y2cd{bottom:314.934400pt;}
.y117{bottom:315.319733pt;}
.y159{bottom:316.763467pt;}
.y30f{bottom:317.414400pt;}
.y93{bottom:319.857200pt;}
.y31{bottom:320.701067pt;}
.y284{bottom:321.163867pt;}
.y244{bottom:325.209200pt;}
.y1f8{bottom:326.162400pt;}
.y2cc{bottom:326.934400pt;}
.y5a{bottom:327.161067pt;}
.y1bc{bottom:328.926533pt;}
.ya9{bottom:329.171867pt;}
.ycb{bottom:329.190533pt;}
.y30e{bottom:329.584400pt;}
.y116{bottom:329.983733pt;}
.y158{bottom:331.427467pt;}
.y30{bottom:332.701067pt;}
.y283{bottom:333.163867pt;}
.y92{bottom:334.525200pt;}
.y2cb{bottom:338.934400pt;}
.y243{bottom:339.873200pt;}
.y1f7{bottom:340.863733pt;}
.y30d{bottom:341.754400pt;}
.y59{bottom:341.829067pt;}
.y1bb{bottom:343.590533pt;}
.ya8{bottom:343.835867pt;}
.yca{bottom:343.854533pt;}
.y115{bottom:344.647733pt;}
.y2f{bottom:344.701067pt;}
.y282{bottom:345.163867pt;}
.y157{bottom:346.091467pt;}
.y91{bottom:349.193200pt;}
.y2ca{bottom:350.934400pt;}
.y1a7{bottom:353.404133pt;}
.y30c{bottom:353.924400pt;}
.y242{bottom:354.537200pt;}
.y1f6{bottom:355.575733pt;}
.y58{bottom:356.497067pt;}
.y1ba{bottom:358.257200pt;}
.ya7{bottom:358.499867pt;}
.yc9{bottom:358.518533pt;}
.y114{bottom:359.311733pt;}
.y156{bottom:360.755467pt;}
.y281{bottom:362.497200pt;}
.y2c9{bottom:362.934400pt;}
.y90{bottom:363.861200pt;}
.y30b{bottom:366.094400pt;}
.y1a6{bottom:368.068133pt;}
.y2e{bottom:368.701067pt;}
.y241{bottom:369.201200pt;}
.y1f5{bottom:370.277067pt;}
.y57{bottom:371.165067pt;}
.ya6{bottom:373.179867pt;}
.yc8{bottom:373.182533pt;}
.y113{bottom:373.975733pt;}
.y280{bottom:374.497200pt;}
.y2c8{bottom:374.934400pt;}
.y155{bottom:375.419467pt;}
.y30a{bottom:378.264400pt;}
.y8f{bottom:378.529200pt;}
.y2d{bottom:380.701067pt;}
.y1a5{bottom:382.732133pt;}
.y240{bottom:383.865200pt;}
.y1f4{bottom:384.989067pt;}
.y56{bottom:385.833067pt;}
.y27f{bottom:386.497200pt;}
.y2c7{bottom:386.934400pt;}
.ya5{bottom:387.843867pt;}
.yc7{bottom:387.846533pt;}
.y112{bottom:388.639733pt;}
.y154{bottom:390.083467pt;}
.y309{bottom:390.434400pt;}
.y1b9{bottom:391.225200pt;}
.y8e{bottom:393.197200pt;}
.y1a4{bottom:397.396133pt;}
.y27e{bottom:398.497200pt;}
.y23f{bottom:398.529200pt;}
.y2c6{bottom:398.934400pt;}
.y1f3{bottom:399.679733pt;}
.y55{bottom:400.501067pt;}
.ya4{bottom:402.507867pt;}
.yc6{bottom:402.510533pt;}
.y308{bottom:402.604400pt;}
.y111{bottom:403.303733pt;}
.y1b8{bottom:405.889200pt;}
.y153{bottom:406.535467pt;}
.y14d{bottom:406.536000pt;}
.y14c{bottom:406.568800pt;}
.y8d{bottom:407.865200pt;}
.y2c{bottom:408.701067pt;}
.y27d{bottom:410.497200pt;}
.y2c5{bottom:410.934400pt;}
.y14f{bottom:411.644800pt;}
.y23e{bottom:413.193200pt;}
.y1f2{bottom:414.391733pt;}
.y307{bottom:414.774400pt;}
.y54{bottom:415.169067pt;}
.ya3{bottom:417.171867pt;}
.yc5{bottom:417.174533pt;}
.y151{bottom:417.338133pt;}
.y110{bottom:417.967733pt;}
.y1b7{bottom:420.553200pt;}
.y2b{bottom:420.701067pt;}
.y27c{bottom:422.497200pt;}
.y8c{bottom:422.533200pt;}
.y2c4{bottom:422.934400pt;}
.y306{bottom:426.944400pt;}
.y23d{bottom:427.857200pt;}
.y1f1{bottom:429.103733pt;}
.y53{bottom:429.837067pt;}
.ya2{bottom:431.835867pt;}
.yc4{bottom:431.838533pt;}
.y10f{bottom:432.631733pt;}
.y2a{bottom:432.701067pt;}
.y14b{bottom:432.764800pt;}
.y27b{bottom:434.497200pt;}
.y2c3{bottom:434.934400pt;}
.y1b6{bottom:435.217200pt;}
.y8b{bottom:437.201200pt;}
.y305{bottom:439.114400pt;}
.y23c{bottom:442.521200pt;}
.y1f0{bottom:443.815733pt;}
.y52{bottom:444.505067pt;}
.y29{bottom:444.701067pt;}
.y27a{bottom:446.497200pt;}
.ya1{bottom:446.499867pt;}
.yc3{bottom:446.502533pt;}
.y2c2{bottom:446.934400pt;}
.y10e{bottom:447.295733pt;}
.y14a{bottom:447.428800pt;}
.y1b5{bottom:449.883867pt;}
.y304{bottom:451.284400pt;}
.y8a{bottom:455.871200pt;}
.y23b{bottom:457.185200pt;}
.y279{bottom:458.497200pt;}
.y1ef{bottom:458.506400pt;}
.y2c1{bottom:458.934400pt;}
.y51{bottom:459.173067pt;}
.ya0{bottom:461.163867pt;}
.yc2{bottom:461.166533pt;}
.y28{bottom:461.501067pt;}
.y10d{bottom:461.959733pt;}
.y149{bottom:462.092800pt;}
.y303{bottom:463.454400pt;}
.y27{bottom:468.701067pt;}
.y278{bottom:470.497200pt;}
.y89{bottom:470.539200pt;}
.y2c0{bottom:470.934400pt;}
.y23a{bottom:471.849200pt;}
.y1ee{bottom:473.218400pt;}
.y50{bottom:473.841067pt;}
.y302{bottom:475.624400pt;}
.yc1{bottom:475.830533pt;}
.y9f{bottom:475.841200pt;}
.y10c{bottom:476.623733pt;}
.y148{bottom:476.756800pt;}
.y26{bottom:480.701067pt;}
.y277{bottom:482.497200pt;}
.y1b4{bottom:482.851867pt;}
.y2bf{bottom:482.934400pt;}
.y239{bottom:486.513200pt;}
.y301{bottom:487.794400pt;}
.y1ed{bottom:487.930400pt;}
.y4f{bottom:488.509067pt;}
.y9e{bottom:490.505200pt;}
.yc0{bottom:490.511867pt;}
.y10b{bottom:491.287733pt;}
.y147{bottom:491.420800pt;}
.y25{bottom:492.701067pt;}
.y88{bottom:493.199867pt;}
.y2be{bottom:494.934400pt;}
.y1b3{bottom:497.515867pt;}
.y276{bottom:499.830533pt;}
.y300{bottom:499.964400pt;}
.y238{bottom:501.187867pt;}
.y1ec{bottom:502.642400pt;}
.y4e{bottom:503.177067pt;}
.y24{bottom:504.701067pt;}
.y9d{bottom:505.169200pt;}
.ybf{bottom:505.175867pt;}
.y10a{bottom:505.951733pt;}
.y146{bottom:506.084800pt;}
.y2bd{bottom:506.934400pt;}
.y87{bottom:507.867867pt;}
.y2ff{bottom:512.134400pt;}
.y1b2{bottom:512.179867pt;}
.y275{bottom:513.163867pt;}
.y237{bottom:515.851867pt;}
.y23{bottom:516.701067pt;}
.y1eb{bottom:517.354400pt;}
.y4d{bottom:517.845067pt;}
.y2bc{bottom:518.934400pt;}
.y9c{bottom:519.833200pt;}
.ybe{bottom:519.839867pt;}
.y109{bottom:520.615733pt;}
.y145{bottom:520.748800pt;}
.y86{bottom:522.529200pt;}
.y2fe{bottom:524.304400pt;}
.y274{bottom:526.497200pt;}
.y1b1{bottom:526.843867pt;}
.y22{bottom:528.701067pt;}
.y236{bottom:530.515867pt;}
.y2bb{bottom:530.934400pt;}
.y1ea{bottom:532.034400pt;}
.y4c{bottom:532.513067pt;}
.y9b{bottom:534.497200pt;}
.ybd{bottom:534.503867pt;}
.y108{bottom:535.279733pt;}
.y144{bottom:535.412800pt;}
.y2fd{bottom:536.474400pt;}
.y85{bottom:537.197200pt;}
.y273{bottom:539.830533pt;}
.y21{bottom:540.701067pt;}
.y1b0{bottom:541.510533pt;}
.y2ba{bottom:542.934400pt;}
.y235{bottom:545.179867pt;}
.y1e9{bottom:546.746400pt;}
.y4b{bottom:547.181067pt;}
.y2fc{bottom:548.644400pt;}
.ybc{bottom:549.167867pt;}
.y9a{bottom:549.169200pt;}
.y107{bottom:549.943733pt;}
.y143{bottom:550.076800pt;}
.y84{bottom:551.865200pt;}
.y272{bottom:553.163867pt;}
.y2b9{bottom:554.934400pt;}
.y20{bottom:557.501067pt;}
.y234{bottom:559.846533pt;}
.y2fb{bottom:560.814400pt;}
.y1e8{bottom:561.458400pt;}
.y4a{bottom:561.849067pt;}
.ybb{bottom:563.831867pt;}
.y99{bottom:563.833200pt;}
.y106{bottom:564.607733pt;}
.y1f{bottom:564.701067pt;}
.y142{bottom:564.740800pt;}
.y83{bottom:566.533200pt;}
.y2b8{bottom:566.934400pt;}
.y271{bottom:571.830533pt;}
.y2fa{bottom:572.984400pt;}
.y1af{bottom:574.481200pt;}
.y233{bottom:574.510533pt;}
.y1e7{bottom:576.170400pt;}
.y49{bottom:576.517067pt;}
.y1e{bottom:576.701067pt;}
.yba{bottom:578.495867pt;}
.y98{bottom:578.497200pt;}
.y2b7{bottom:578.934400pt;}
.y105{bottom:579.277067pt;}
.y141{bottom:579.404800pt;}
.y82{bottom:581.201200pt;}
.y2f9{bottom:585.154400pt;}
.y1d{bottom:588.701067pt;}
.y1ae{bottom:589.145200pt;}
.y232{bottom:589.177200pt;}
.y270{bottom:590.497200pt;}
.y1e6{bottom:590.882400pt;}
.y2b6{bottom:590.934400pt;}
.y48{bottom:591.185067pt;}
.y104{bottom:593.957067pt;}
.y140{bottom:594.068800pt;}
.y81{bottom:595.865200pt;}
.y2f8{bottom:597.324400pt;}
.y26f{bottom:602.497200pt;}
.y2b5{bottom:602.934400pt;}
.y1ad{bottom:603.809200pt;}
.y1c{bottom:605.501067pt;}
.y1e5{bottom:605.583733pt;}
.y47{bottom:605.853067pt;}
.y103{bottom:608.621067pt;}
.y13f{bottom:608.732800pt;}
.y2f7{bottom:609.494400pt;}
.y80{bottom:610.533200pt;}
.y1b{bottom:612.701067pt;}
.ye2{bottom:614.174400pt;}
.y2b4{bottom:614.934400pt;}
.y1ac{bottom:618.473200pt;}
.y1e4{bottom:620.295733pt;}
.y46{bottom:620.521067pt;}
.y2f6{bottom:621.664400pt;}
.y102{bottom:623.285067pt;}
.y13e{bottom:623.399467pt;}
.y1a{bottom:624.701067pt;}
.y7f{bottom:625.201200pt;}
.y231{bottom:625.867867pt;}
.y2b3{bottom:626.934400pt;}
.ye1{bottom:628.838400pt;}
.y26e{bottom:630.518533pt;}
.y1ab{bottom:633.137200pt;}
.y2f5{bottom:633.834400pt;}
.y1e3{bottom:635.007733pt;}
.y45{bottom:635.189067pt;}
.y101{bottom:637.949067pt;}
.y2b2{bottom:638.934400pt;}
.y230{bottom:640.531867pt;}
.y19{bottom:641.501067pt;}
.ye0{bottom:643.502400pt;}
.y7e{bottom:643.867200pt;}
.y26d{bottom:645.182533pt;}
.y2f4{bottom:646.004400pt;}
.y1aa{bottom:647.803867pt;}
.y18{bottom:648.701067pt;}
.y1e2{bottom:649.714400pt;}
.y44{bottom:649.857067pt;}
.y2b1{bottom:650.934400pt;}
.y96{bottom:652.056480pt;}
.y100{bottom:652.613067pt;}
.y22f{bottom:655.195867pt;}
.y13d{bottom:657.656267pt;}
.ydf{bottom:658.166400pt;}
.y2f3{bottom:658.174400pt;}
.y26c{bottom:659.846533pt;}
.y17{bottom:660.701067pt;}
.y2b0{bottom:662.934400pt;}
.y43{bottom:664.525067pt;}
.y7d{bottom:666.527867pt;}
.yff{bottom:667.277067pt;}
.y22e{bottom:669.859867pt;}
.y2f2{bottom:670.344400pt;}
.y13c{bottom:672.320267pt;}
.y16{bottom:672.701067pt;}
.yde{bottom:672.830400pt;}
.y26b{bottom:674.510533pt;}
.y2af{bottom:674.934400pt;}
.y42{bottom:679.193067pt;}
.y1a9{bottom:680.766533pt;}
.y7c{bottom:681.195867pt;}
.yfe{bottom:681.941067pt;}
.y2f1{bottom:682.514400pt;}
.y22d{bottom:684.523867pt;}
.y2ae{bottom:686.934400pt;}
.y13b{bottom:686.984267pt;}
.ydd{bottom:687.494400pt;}
.y26a{bottom:689.174533pt;}
.y15{bottom:689.501067pt;}
.y1e1{bottom:690.533067pt;}
.y41{bottom:693.861067pt;}
.y2f0{bottom:694.684400pt;}
.y1a8{bottom:695.430533pt;}
.y7b{bottom:695.863867pt;}
.yfd{bottom:696.607733pt;}
.y2ad{bottom:698.934400pt;}
.y22c{bottom:699.187867pt;}
.y13a{bottom:701.648267pt;}
.y269{bottom:703.838533pt;}
.y1e0{bottom:705.245067pt;}
.y2ef{bottom:706.854400pt;}
.y40{bottom:708.529067pt;}
.y14{bottom:708.701067pt;}
.y7a{bottom:710.531867pt;}
.y2ac{bottom:710.934400pt;}
.y22b{bottom:713.851867pt;}
.y139{bottom:716.312267pt;}
.y268{bottom:718.502533pt;}
.y2ee{bottom:719.024400pt;}
.y1df{bottom:719.957067pt;}
.y13{bottom:720.701067pt;}
.y2ab{bottom:722.934400pt;}
.y3f{bottom:723.197067pt;}
.y79{bottom:725.199867pt;}
.y22a{bottom:728.515867pt;}
.yfc{bottom:730.693067pt;}
.y138{bottom:730.976267pt;}
.y2ed{bottom:731.194400pt;}
.y12{bottom:732.701067pt;}
.y267{bottom:733.166533pt;}
.y1de{bottom:734.669067pt;}
.y2aa{bottom:734.934400pt;}
.y3e{bottom:737.865067pt;}
.y78{bottom:739.867867pt;}
.y229{bottom:743.179867pt;}
.y2ec{bottom:743.364400pt;}
.y11{bottom:744.701067pt;}
.yfb{bottom:745.357067pt;}
.y137{bottom:745.640267pt;}
.y219{bottom:745.737733pt;}
.y266{bottom:747.830533pt;}
.y1dd{bottom:749.381067pt;}
.y3d{bottom:752.533067pt;}
.y2eb{bottom:755.534400pt;}
.y10{bottom:756.701067pt;}
.y228{bottom:757.843867pt;}
.y218{bottom:758.407733pt;}
.y77{bottom:758.534533pt;}
.yfa{bottom:760.021067pt;}
.y136{bottom:760.304267pt;}
.y265{bottom:762.497200pt;}
.y1dc{bottom:764.093067pt;}
.y2a9{bottom:766.267733pt;}
.y3c{bottom:767.201067pt;}
.y2ea{bottom:767.704400pt;}
.yf{bottom:768.701067pt;}
.y217{bottom:771.077733pt;}
.y227{bottom:772.507867pt;}
.yf9{bottom:774.687733pt;}
.y135{bottom:774.968267pt;}
.y2a8{bottom:778.267733pt;}
.y1db{bottom:778.805067pt;}
.y2e9{bottom:779.874400pt;}
.y216{bottom:783.747733pt;}
.y226{bottom:787.171867pt;}
.y134{bottom:789.632267pt;}
.y2a7{bottom:790.267733pt;}
.y2e8{bottom:792.044400pt;}
.y1da{bottom:793.517067pt;}
.y264{bottom:794.561200pt;}
.y215{bottom:799.247733pt;}
.y225{bottom:801.835867pt;}
.y2a6{bottom:802.267733pt;}
.y9{bottom:803.867733pt;}
.y2e7{bottom:804.214400pt;}
.y133{bottom:804.296267pt;}
.y1d9{bottom:808.229067pt;}
.yf8{bottom:808.783733pt;}
.y263{bottom:809.225200pt;}
.y2a5{bottom:814.267733pt;}
.y2e6{bottom:816.384400pt;}
.y224{bottom:816.499867pt;}
.y214{bottom:817.417733pt;}
.y132{bottom:818.960267pt;}
.y1d8{bottom:822.941067pt;}
.yf7{bottom:823.447733pt;}
.y262{bottom:823.889200pt;}
.y8{bottom:824.667733pt;}
.y2a4{bottom:826.267733pt;}
.y2e5{bottom:828.554400pt;}
.y223{bottom:831.163867pt;}
.y131{bottom:833.624267pt;}
.y213{bottom:835.587733pt;}
.y1d7{bottom:837.653067pt;}
.yf6{bottom:838.111733pt;}
.y2a3{bottom:838.267733pt;}
.y261{bottom:838.553200pt;}
.y2e4{bottom:840.724400pt;}
.y7{bottom:845.467733pt;}
.y222{bottom:845.830533pt;}
.y130{bottom:848.288267pt;}
.y2a2{bottom:850.267733pt;}
.y1d6{bottom:852.365067pt;}
.yf5{bottom:852.775733pt;}
.y2e3{bottom:852.894400pt;}
.y260{bottom:853.217200pt;}
.y212{bottom:853.757733pt;}
.y12f{bottom:862.952267pt;}
.y2e2{bottom:865.064400pt;}
.y1d5{bottom:867.077067pt;}
.yf4{bottom:867.439733pt;}
.y25f{bottom:867.881200pt;}
.y211{bottom:871.927733pt;}
.y2a1{bottom:872.934400pt;}
.y2e1{bottom:877.234400pt;}
.y12e{bottom:877.616267pt;}
.y6{bottom:880.934400pt;}
.y1d4{bottom:881.789067pt;}
.yf3{bottom:882.103733pt;}
.y221{bottom:882.497200pt;}
.y25e{bottom:882.545200pt;}
.y2a0{bottom:884.934400pt;}
.y2e0{bottom:889.404400pt;}
.y210{bottom:890.097733pt;}
.y12d{bottom:892.280267pt;}
.y1d3{bottom:896.501067pt;}
.yf2{bottom:896.781067pt;}
.y29f{bottom:896.934400pt;}
.y220{bottom:897.161200pt;}
.y25d{bottom:897.209200pt;}
.y2df{bottom:901.574400pt;}
.y12c{bottom:906.944267pt;}
.y20f{bottom:908.267733pt;}
.y29e{bottom:908.934400pt;}
.y1d2{bottom:911.213067pt;}
.yf1{bottom:911.445067pt;}
.y21f{bottom:911.825200pt;}
.y25c{bottom:911.873200pt;}
.y5{bottom:912.934400pt;}
.y2de{bottom:913.744400pt;}
.y29d{bottom:920.934400pt;}
.y12b{bottom:921.608267pt;}
.y2dd{bottom:925.914400pt;}
.y1d1{bottom:925.925067pt;}
.yf0{bottom:926.109067pt;}
.y20e{bottom:926.437733pt;}
.y21e{bottom:926.489200pt;}
.y25b{bottom:926.537200pt;}
.y29c{bottom:932.934400pt;}
.y12a{bottom:936.274933pt;}
.y2dc{bottom:938.084400pt;}
.y1d0{bottom:940.637067pt;}
.yef{bottom:940.773067pt;}
.y21d{bottom:941.153200pt;}
.y25a{bottom:941.201200pt;}
.y20d{bottom:944.767733pt;}
.y4{bottom:944.934400pt;}
.y2db{bottom:950.254400pt;}
.y29b{bottom:950.267733pt;}
.y1cf{bottom:955.349067pt;}
.yee{bottom:955.437067pt;}
.y21c{bottom:955.822533pt;}
.y259{bottom:955.865200pt;}
.y29a{bottom:962.267733pt;}
.y2da{bottom:962.424400pt;}
.y20c{bottom:963.270400pt;}
.y1ce{bottom:970.061067pt;}
.yed{bottom:970.101067pt;}
.y21b{bottom:970.486533pt;}
.y129{bottom:970.503733pt;}
.y258{bottom:970.529200pt;}
.y299{bottom:974.267733pt;}
.y2d9{bottom:974.594400pt;}
.y20b{bottom:977.934400pt;}
.y3{bottom:982.267733pt;}
.yec{bottom:984.767733pt;}
.y21a{bottom:985.150533pt;}
.y128{bottom:985.167733pt;}
.y257{bottom:985.193200pt;}
.y298{bottom:986.267733pt;}
.y2d8{bottom:986.764400pt;}
.ya{bottom:1014.100933pt;}
.h16{height:18.864000pt;}
.h1a{height:19.106805pt;}
.h7{height:21.555456pt;}
.h19{height:26.751828pt;}
.h24{height:30.480000pt;}
.h2{height:32.512000pt;}
.h10{height:32.554667pt;}
.h17{height:34.393016pt;}
.h27{height:35.872000pt;}
.h9{height:36.328125pt;}
.h15{height:36.576000pt;}
.h1d{height:36.820312pt;}
.h8{height:38.608000pt;}
.h18{height:39.329417pt;}
.h6{height:44.704000pt;}
.h26{height:45.525547pt;}
.h25{height:45.536214pt;}
.hd{height:45.584747pt;}
.h1c{height:45.600214pt;}
.h13{height:45.621547pt;}
.h14{height:45.626880pt;}
.hc{height:45.632214pt;}
.h12{height:45.642880pt;}
.he{height:45.653547pt;}
.ha{height:45.664214pt;}
.hb{height:45.674880pt;}
.h11{height:45.685547pt;}
.h22{height:45.706880pt;}
.h1f{height:45.728214pt;}
.h23{height:45.749547pt;}
.h21{height:45.770880pt;}
.h20{height:45.792214pt;}
.h1e{height:46.090880pt;}
.h3{height:48.768000pt;}
.h1b{height:55.816125pt;}
.h5{height:66.227616pt;}
.h4{height:81.280000pt;}
.hf{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:127.444000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:39.285733pt;}
.x7{left:55.994667pt;}
.x5{left:60.666667pt;}
.x18{left:62.365733pt;}
.x6{left:64.577733pt;}
.xe{left:67.999867pt;}
.x1b{left:72.800000pt;}
.x16{left:77.139067pt;}
.x1a{left:124.000000pt;}
.x3{left:194.230000pt;}
.x2{left:228.276933pt;}
.xf{left:408.913467pt;}
.x10{left:420.917600pt;}
.x1c{left:425.720000pt;}
.x8{left:474.292933pt;}
.xa{left:482.965333pt;}
.x9{left:486.292933pt;}
.xb{left:493.493333pt;}
.xc{left:498.965333pt;}
.x12{left:509.586667pt;}
.x13{left:524.899067pt;}
.x15{left:579.192400pt;}
.x17{left:625.352400pt;}
.x19{left:637.031067pt;}
.x4{left:642.889867pt;}
.x1{left:706.340933pt;}
.x11{left:722.340933pt;}
.xd{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; }
  