
    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_fed0d03dfe462fed93c625ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091000;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_fb4bbc05bdf7cdd69dd4e8eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091000;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_c40a26c7131f39a1a981df45.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_18831c2aff383659bbef431d.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_9a94c862e99c7b2a860bf30b.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_a1a3fa56f65ec9f4a563dc1f.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_1597a921030966491ee25915.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978000;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_79e2a932d910132339eca5fe.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_eb695ee27b0d3a746a4a467c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_3f4477b3c3535b74f580e351.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_63713d8ff8d0e41d998a3738.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7ae8dad327a0d37ac10d9bc0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a69ae97096cbfbb8dcd32a9b.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_1acf85d02adc6aa05ba1bade.woff2')format("woff");}.fff{font-family:fff;line-height:0.983887;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_2bfe29e49f4cc40577fdf91c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.728000;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_faf8904a9642ca130e8b4fcb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.680176;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_8c7c2e18237f368a1978fcb2.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);}
.m3{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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);}
.v6{vertical-align:-24.300000px;}
.v7{vertical-align:-21.600000px;}
.v5{vertical-align:-1.032000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:19.410000px;}
.v4{vertical-align:24.240000px;}
.v2{vertical-align:25.650000px;}
.v1{vertical-align:35.100000px;}
.v3{vertical-align:54.000000px;}
.lsa{letter-spacing:-7.182000px;}
.ls5{letter-spacing:-1.776000px;}
.ls7{letter-spacing:-0.855000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000534px;}
.ls9{letter-spacing:0.005688px;}
.lsb{letter-spacing:0.539460px;}
.lsc{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.703488px;}
.ls12{letter-spacing:0.716040px;}
.ls11{letter-spacing:0.955800px;}
.lse{letter-spacing:1.053000px;}
.lsf{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.424430px;}
.ls6{letter-spacing:3.696000px;}
.ls1{letter-spacing:17.199600px;}
.ls0{letter-spacing:24.480000px;}
.ls3{letter-spacing:24.624000px;}
.ls8{letter-spacing:1673.184000px;}
.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;}
}
.ws8{word-spacing:-18.720780px;}
.ws1{word-spacing:-16.244430px;}
.wsf4{word-spacing:-16.092000px;}
.wsf3{word-spacing:-16.065000px;}
.wsf0{word-spacing:-15.551460px;}
.ws3{word-spacing:-15.012000px;}
.ws69{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.411360px;}
.wsa{word-spacing:-11.520480px;}
.ws6{word-spacing:-11.520000px;}
.ws137{word-spacing:-10.800450px;}
.ws135{word-spacing:-10.800000px;}
.wsf5{word-spacing:-10.668996px;}
.wsd{word-spacing:-9.952956px;}
.ws2{word-spacing:-9.069840px;}
.ws6a{word-spacing:-8.592480px;}
.ws133{word-spacing:-7.637760px;}
.ws134{word-spacing:-7.160400px;}
.wsb7{word-spacing:-5.346000px;}
.ws5b{word-spacing:-5.183460px;}
.ws10e{word-spacing:-4.752000px;}
.ws7f{word-spacing:-4.536000px;}
.ws9{word-spacing:-4.289220px;}
.ws63{word-spacing:-4.158000px;}
.wse6{word-spacing:-3.240000px;}
.ws36{word-spacing:-3.186540px;}
.wsc{word-spacing:-3.134430px;}
.wsf8{word-spacing:-3.078540px;}
.wse9{word-spacing:-3.024000px;}
.wsa0{word-spacing:-2.969460px;}
.ws3f{word-spacing:-2.861460px;}
.ws39{word-spacing:-2.808000px;}
.wsf9{word-spacing:-2.753460px;}
.wsaa{word-spacing:-2.646000px;}
.ws136{word-spacing:-2.639520px;}
.ws9e{word-spacing:-2.538000px;}
.ws13a{word-spacing:-2.474550px;}
.wsb4{word-spacing:-2.430000px;}
.ws129{word-spacing:-2.322000px;}
.ws131{word-spacing:-2.268540px;}
.ws92{word-spacing:-2.159460px;}
.ws101{word-spacing:-2.106000px;}
.ws61{word-spacing:-2.051460px;}
.ws139{word-spacing:-2.025000px;}
.ws9f{word-spacing:-1.998000px;}
.ws37{word-spacing:-1.944000px;}
.ws38{word-spacing:-1.861704px;}
.ws10b{word-spacing:-1.836000px;}
.ws2b{word-spacing:-1.620000px;}
.wse2{word-spacing:-1.566540px;}
.ws99{word-spacing:-1.512000px;}
.wsdd{word-spacing:-1.457460px;}
.wse{word-spacing:-1.424430px;}
.ws46{word-spacing:-1.404000px;}
.wsea{word-spacing:-1.349460px;}
.ws95{word-spacing:-1.296000px;}
.ws13{word-spacing:-1.241460px;}
.ws48{word-spacing:-1.188000px;}
.wse5{word-spacing:-1.080000px;}
.ws78{word-spacing:-1.026000px;}
.wsf1{word-spacing:-0.972540px;}
.ws86{word-spacing:-0.918000px;}
.ws3d{word-spacing:-0.864540px;}
.ws138{word-spacing:-0.810450px;}
.ws22{word-spacing:-0.756540px;}
.ws125{word-spacing:-0.716040px;}
.ws2a{word-spacing:-0.702000px;}
.wsdc{word-spacing:-0.647460px;}
.ws114{word-spacing:-0.573190px;}
.wsec{word-spacing:-0.539460px;}
.ws1d{word-spacing:-0.486000px;}
.ws7d{word-spacing:-0.432000px;}
.ws11f{word-spacing:-0.378000px;}
.wsb2{word-spacing:-0.162540px;}
.ws64{word-spacing:-0.108000px;}
.ws6b{word-spacing:-0.054540px;}
.ws5{word-spacing:0.000000px;}
.ws7b{word-spacing:0.054540px;}
.wsd4{word-spacing:0.270000px;}
.ws16{word-spacing:0.429266px;}
.ws9c{word-spacing:0.432000px;}
.ws9b{word-spacing:0.539460px;}
.ws9d{word-spacing:0.594000px;}
.ws15{word-spacing:0.647460px;}
.ws30{word-spacing:0.702000px;}
.ws71{word-spacing:0.810000px;}
.wsb{word-spacing:0.855000px;}
.ws41{word-spacing:0.864540px;}
.ws12d{word-spacing:0.918000px;}
.wsce{word-spacing:0.972540px;}
.wsa5{word-spacing:1.026000px;}
.ws35{word-spacing:1.134000px;}
.ws17{word-spacing:1.188000px;}
.wsd5{word-spacing:1.241460px;}
.ws5c{word-spacing:1.296000px;}
.wsb8{word-spacing:1.349460px;}
.ws14{word-spacing:1.404000px;}
.wsb3{word-spacing:1.512000px;}
.ws12a{word-spacing:1.566540px;}
.ws55{word-spacing:1.620000px;}
.ws8b{word-spacing:1.674540px;}
.ws5d{word-spacing:1.728000px;}
.ws7{word-spacing:1.776000px;}
.ws23{word-spacing:1.782000px;}
.ws65{word-spacing:1.836000px;}
.ws60{word-spacing:1.890000px;}
.ws10f{word-spacing:1.998000px;}
.ws109{word-spacing:2.051460px;}
.wsf{word-spacing:2.106000px;}
.wsc8{word-spacing:2.159460px;}
.wsc0{word-spacing:2.268540px;}
.wsca{word-spacing:2.322000px;}
.wsa8{word-spacing:2.376540px;}
.wsac{word-spacing:2.484540px;}
.ws56{word-spacing:2.592000px;}
.ws27{word-spacing:2.700000px;}
.ws7a{word-spacing:2.753460px;}
.wsfa{word-spacing:2.808000px;}
.wsae{word-spacing:2.861460px;}
.wsed{word-spacing:2.916000px;}
.wsc1{word-spacing:2.969460px;}
.wsaf{word-spacing:3.024000px;}
.ws50{word-spacing:3.132000px;}
.ws93{word-spacing:3.186540px;}
.ws116{word-spacing:3.240000px;}
.wsb0{word-spacing:3.348000px;}
.ws49{word-spacing:3.402000px;}
.ws45{word-spacing:3.510000px;}
.ws2d{word-spacing:3.544398px;}
.ws3e{word-spacing:3.563460px;}
.ws7e{word-spacing:3.671460px;}
.ws6f{word-spacing:3.726000px;}
.ws8e{word-spacing:3.780540px;}
.ws83{word-spacing:3.942000px;}
.wsab{word-spacing:4.158000px;}
.ws34{word-spacing:4.265460px;}
.ws72{word-spacing:4.373460px;}
.ws62{word-spacing:4.428000px;}
.wsa1{word-spacing:4.481460px;}
.ws6d{word-spacing:4.536000px;}
.ws107{word-spacing:4.590540px;}
.ws10c{word-spacing:4.644000px;}
.ws11{word-spacing:4.698540px;}
.ws52{word-spacing:4.752000px;}
.wsc9{word-spacing:4.806000px;}
.ws76{word-spacing:4.860000px;}
.ws121{word-spacing:4.914000px;}
.wsbe{word-spacing:4.968000px;}
.ws7c{word-spacing:5.022000px;}
.wse8{word-spacing:5.130000px;}
.ws4e{word-spacing:5.155488px;}
.ws103{word-spacing:5.183460px;}
.ws12{word-spacing:5.292540px;}
.ws1a{word-spacing:5.346000px;}
.ws88{word-spacing:5.400540px;}
.wsa6{word-spacing:5.454000px;}
.ws82{word-spacing:5.508540px;}
.ws18{word-spacing:5.616000px;}
.ws5e{word-spacing:5.670000px;}
.wsd6{word-spacing:5.724000px;}
.ws5f{word-spacing:5.777460px;}
.wsc6{word-spacing:5.832000px;}
.ws10d{word-spacing:5.885460px;}
.ws85{word-spacing:5.940000px;}
.ws91{word-spacing:5.993460px;}
.ws118{word-spacing:6.048000px;}
.ws112{word-spacing:6.156000px;}
.ws59{word-spacing:6.210540px;}
.ws1c{word-spacing:6.318000px;}
.wsbf{word-spacing:6.480000px;}
.wsb6{word-spacing:6.534000px;}
.ws44{word-spacing:6.642000px;}
.wsc3{word-spacing:6.695460px;}
.ws29{word-spacing:6.750000px;}
.ws42{word-spacing:6.804540px;}
.ws20{word-spacing:6.858000px;}
.ws43{word-spacing:6.966000px;}
.ws4b{word-spacing:7.020000px;}
.ws58{word-spacing:7.128000px;}
.wse1{word-spacing:7.236000px;}
.ws96{word-spacing:7.289460px;}
.ws117{word-spacing:7.344000px;}
.ws68{word-spacing:7.452000px;}
.ws40{word-spacing:7.506540px;}
.ws54{word-spacing:7.560000px;}
.ws2f{word-spacing:7.614540px;}
.wsc4{word-spacing:7.668000px;}
.ws4d{word-spacing:7.776000px;}
.ws113{word-spacing:7.884000px;}
.ws70{word-spacing:7.938000px;}
.ws6e{word-spacing:8.046000px;}
.ws1b{word-spacing:8.099460px;}
.wsff{word-spacing:8.154000px;}
.wscc{word-spacing:8.207460px;}
.wsd7{word-spacing:8.262000px;}
.ws79{word-spacing:8.316540px;}
.ws57{word-spacing:8.424540px;}
.wsb1{word-spacing:8.478000px;}
.ws80{word-spacing:8.640000px;}
.ws2e{word-spacing:8.694000px;}
.wsd8{word-spacing:8.748000px;}
.ws1f{word-spacing:8.801460px;}
.ws89{word-spacing:8.856000px;}
.ws119{word-spacing:8.909460px;}
.ws24{word-spacing:8.964000px;}
.ws3c{word-spacing:9.072000px;}
.ws11b{word-spacing:9.126540px;}
.ws100{word-spacing:9.180000px;}
.ws111{word-spacing:9.201114px;}
.ws90{word-spacing:9.234540px;}
.ws51{word-spacing:9.342000px;}
.wsfe{word-spacing:9.396000px;}
.ws74{word-spacing:9.450000px;}
.ws8d{word-spacing:9.611460px;}
.ws97{word-spacing:9.666000px;}
.ws73{word-spacing:9.774000px;}
.ws3b{word-spacing:9.828540px;}
.ws11a{word-spacing:9.882000px;}
.ws11c{word-spacing:10.044000px;}
.ws28{word-spacing:10.098000px;}
.ws9a{word-spacing:10.206000px;}
.ws106{word-spacing:10.260000px;}
.ws12e{word-spacing:10.368000px;}
.wsa3{word-spacing:10.584000px;}
.wsef{word-spacing:10.638540px;}
.wsfc{word-spacing:10.962000px;}
.wsbd{word-spacing:11.123460px;}
.ws47{word-spacing:11.178000px;}
.wsa2{word-spacing:11.231460px;}
.ws12c{word-spacing:11.286000px;}
.ws25{word-spacing:11.394000px;}
.ws33{word-spacing:11.556000px;}
.wsdf{word-spacing:11.664000px;}
.wse0{word-spacing:11.718000px;}
.ws104{word-spacing:11.850104px;}
.ws1e{word-spacing:11.933460px;}
.ws75{word-spacing:11.988000px;}
.wsb5{word-spacing:12.150540px;}
.ws53{word-spacing:12.204000px;}
.wsfd{word-spacing:12.312000px;}
.ws84{word-spacing:12.366000px;}
.ws4f{word-spacing:12.420000px;}
.ws10a{word-spacing:12.474000px;}
.ws4{word-spacing:12.479520px;}
.ws19{word-spacing:12.743460px;}
.wsf6{word-spacing:12.852540px;}
.ws87{word-spacing:13.014000px;}
.ws8c{word-spacing:13.122000px;}
.ws122{word-spacing:13.176000px;}
.wsd1{word-spacing:13.284000px;}
.ws10{word-spacing:13.445460px;}
.wsd3{word-spacing:13.500000px;}
.ws67{word-spacing:13.554540px;}
.wsc2{word-spacing:13.608000px;}
.ws108{word-spacing:13.662540px;}
.ws120{word-spacing:13.770000px;}
.ws110{word-spacing:13.878000px;}
.wscb{word-spacing:14.039460px;}
.wsf7{word-spacing:14.094000px;}
.ws32{word-spacing:14.141790px;}
.ws26{word-spacing:14.147460px;}
.wsba{word-spacing:14.418000px;}
.ws12f{word-spacing:14.472540px;}
.wsa7{word-spacing:14.634000px;}
.ws77{word-spacing:14.796000px;}
.ws81{word-spacing:14.957460px;}
.wse7{word-spacing:15.174540px;}
.wscf{word-spacing:15.228000px;}
.ws126{word-spacing:15.390000px;}
.ws102{word-spacing:15.498000px;}
.ws3a{word-spacing:15.714000px;}
.wsa9{word-spacing:15.768540px;}
.ws127{word-spacing:15.822000px;}
.ws6c{word-spacing:15.984540px;}
.ws128{word-spacing:16.092000px;}
.ws4a{word-spacing:16.416000px;}
.ws8a{word-spacing:16.469460px;}
.ws123{word-spacing:16.686540px;}
.ws132{word-spacing:16.848000px;}
.wsad{word-spacing:17.063460px;}
.ws124{word-spacing:17.226000px;}
.ws115{word-spacing:17.496540px;}
.ws105{word-spacing:17.873460px;}
.wsda{word-spacing:17.981460px;}
.ws98{word-spacing:18.252000px;}
.wsd2{word-spacing:18.414000px;}
.ws11d{word-spacing:18.900540px;}
.wsde{word-spacing:19.008540px;}
.wsc7{word-spacing:19.224000px;}
.wsbb{word-spacing:19.493460px;}
.ws8f{word-spacing:19.548000px;}
.wse3{word-spacing:19.764000px;}
.ws12b{word-spacing:19.872000px;}
.wsd9{word-spacing:20.142000px;}
.wsbc{word-spacing:20.952000px;}
.wseb{word-spacing:21.006540px;}
.wsc5{word-spacing:21.060000px;}
.wsdb{word-spacing:21.114540px;}
.wse4{word-spacing:21.222540px;}
.ws31{word-spacing:21.330000px;}
.ws130{word-spacing:21.384000px;}
.wsa4{word-spacing:22.464000px;}
.wsfb{word-spacing:22.518540px;}
.ws11e{word-spacing:22.950000px;}
.ws66{word-spacing:23.382000px;}
.ws4c{word-spacing:23.813460px;}
.wscd{word-spacing:24.192000px;}
.ws21{word-spacing:24.515460px;}
.ws94{word-spacing:25.488000px;}
.wsd0{word-spacing:28.349460px;}
.ws2c{word-spacing:28.728000px;}
.wsb9{word-spacing:29.861460px;}
.wsee{word-spacing:30.563460px;}
.ws5a{word-spacing:61.560000px;}
.wsf2{word-spacing:1638.624000px;}
._1e{margin-left:-1377.482220px;}
._1d{margin-left:-1185.512220px;}
._1b{margin-left:-957.039840px;}
._1c{margin-left:-867.184380px;}
._1a{margin-left:-501.008760px;}
._19{margin-left:-498.204000px;}
._18{margin-left:-237.058380px;}
._f{margin-left:-59.040000px;}
._11{margin-left:-47.970000px;}
._24{margin-left:-43.662000px;}
._2d{margin-left:-39.515400px;}
._30{margin-left:-37.642320px;}
._2e{margin-left:-35.780520px;}
._2c{margin-left:-34.344000px;}
._28{margin-left:-33.264000px;}
._26{margin-left:-29.966760px;}
._20{margin-left:-27.808920px;}
._31{margin-left:-26.644200px;}
._2b{margin-left:-25.110000px;}
._21{margin-left:-23.811300px;}
._22{margin-left:-21.870000px;}
._27{margin-left:-20.186640px;}
._6{margin-left:-18.720000px;}
._29{margin-left:-17.498700px;}
._1f{margin-left:-15.658920px;}
._23{margin-left:-14.232000px;}
._14{margin-left:-12.825000px;}
._10{margin-left:-11.520000px;}
._32{margin-left:-10.422000px;}
._e{margin-left:-9.421740px;}
._34{margin-left:-8.325450px;}
._c{margin-left:-7.105800px;}
._9{margin-left:-5.467800px;}
._2{margin-left:-4.452000px;}
._8{margin-left:-2.886000px;}
._0{margin-left:-1.780800px;}
._13{width:1.609800px;}
._15{width:2.886000px;}
._16{width:3.889800px;}
._7{width:5.046960px;}
._25{width:7.074000px;}
._2a{width:8.802000px;}
._1{width:11.524800px;}
._12{width:13.110000px;}
._a{width:14.430000px;}
._3{width:18.720000px;}
._b{width:20.280000px;}
._33{width:21.600000px;}
._d{width:24.037380px;}
._2f{width:25.579800px;}
._5{width:35.288460px;}
._4{width:39.002280px;}
._17{width:282.079800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:29.835000px;}
.fsc{font-size:31.824000px;}
.fsa{font-size:35.802000px;}
.fs8{font-size:37.791000px;}
.fs6{font-size:39.000000px;}
.fsd{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:51.714000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsb{font-size:57.879310px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:43.395600px;}
.y1{bottom:43.396200px;}
.ye7{bottom:43.407600px;}
.y2{bottom:43.411200px;}
.y27d{bottom:68.833350px;}
.yaa{bottom:68.835000px;}
.ye6{bottom:68.863650px;}
.y55{bottom:68.893200px;}
.y311{bottom:69.013200px;}
.y23d{bottom:69.064200px;}
.y16f{bottom:69.175350px;}
.y52{bottom:69.178200px;}
.y131{bottom:69.260850px;}
.y1fe{bottom:69.613350px;}
.y1c1{bottom:69.781350px;}
.y2c8{bottom:70.597200px;}
.yf5{bottom:73.136400px;}
.y184{bottom:73.157400px;}
.y17a{bottom:73.160400px;}
.y1e{bottom:74.016750px;}
.y310{bottom:82.633200px;}
.y2c7{bottom:84.169200px;}
.y27c{bottom:85.330350px;}
.ya9{bottom:85.332000px;}
.ye5{bottom:85.360650px;}
.y54{bottom:85.394700px;}
.y16e{bottom:85.699350px;}
.y51{bottom:85.765200px;}
.y23c{bottom:85.817700px;}
.y130{bottom:85.852350px;}
.y1c0{bottom:86.305350px;}
.y1fd{bottom:86.434350px;}
.y1d{bottom:87.516750px;}
.yf4{bottom:89.633400px;}
.y183{bottom:89.654400px;}
.y179{bottom:89.657400px;}
.y30f{bottom:96.253200px;}
.y2c6{bottom:97.741200px;}
.y1c{bottom:101.016750px;}
.y27b{bottom:101.827350px;}
.ya8{bottom:101.829000px;}
.ye4{bottom:101.857650px;}
.y53{bottom:101.896200px;}
.y16d{bottom:102.223350px;}
.y50{bottom:102.352200px;}
.y12f{bottom:102.443850px;}
.y23b{bottom:102.571200px;}
.y1bf{bottom:102.829350px;}
.y1fc{bottom:103.255350px;}
.y182{bottom:106.151400px;}
.y178{bottom:106.154400px;}
.yf3{bottom:106.163400px;}
.y30e{bottom:109.873200px;}
.y2c5{bottom:111.313200px;}
.y1b{bottom:114.516750px;}
.y27a{bottom:118.324350px;}
.ya7{bottom:118.326000px;}
.ye3{bottom:118.354650px;}
.y16c{bottom:118.747350px;}
.y4f{bottom:118.939200px;}
.y12e{bottom:119.035350px;}
.y23a{bottom:119.324700px;}
.y1be{bottom:119.353350px;}
.y1fb{bottom:120.076350px;}
.y181{bottom:122.648400px;}
.y177{bottom:122.651400px;}
.yf2{bottom:122.660400px;}
.y2c4{bottom:124.885200px;}
.y1a{bottom:128.016750px;}
.y279{bottom:134.821350px;}
.ya6{bottom:134.823000px;}
.ye2{bottom:134.851650px;}
.y16b{bottom:135.271350px;}
.y30d{bottom:135.493200px;}
.y4e{bottom:135.526200px;}
.y12d{bottom:135.626850px;}
.y1bd{bottom:135.877350px;}
.y239{bottom:136.078200px;}
.y1fa{bottom:136.897350px;}
.y2c3{bottom:138.457200px;}
.y180{bottom:139.145400px;}
.y176{bottom:139.148400px;}
.yf1{bottom:139.157400px;}
.y19{bottom:141.516750px;}
.y30c{bottom:149.113200px;}
.y278{bottom:151.318350px;}
.ya5{bottom:151.320000px;}
.ye1{bottom:151.348650px;}
.y16a{bottom:151.795350px;}
.y2c2{bottom:152.029200px;}
.y4d{bottom:152.113200px;}
.y12c{bottom:152.218350px;}
.y1bc{bottom:152.401350px;}
.y238{bottom:152.831700px;}
.y1f9{bottom:153.718350px;}
.y18{bottom:155.016750px;}
.y17f{bottom:155.642400px;}
.y175{bottom:155.645400px;}
.yf0{bottom:155.654400px;}
.y6b{bottom:160.193700px;}
.y30b{bottom:162.733200px;}
.y39b{bottom:165.113700px;}
.y2c1{bottom:165.601200px;}
.y354{bottom:165.694950px;}
.y277{bottom:167.815350px;}
.ya4{bottom:167.817000px;}
.ye0{bottom:167.845650px;}
.y169{bottom:168.319350px;}
.y4c{bottom:168.700200px;}
.y12b{bottom:168.809850px;}
.y1bb{bottom:168.925350px;}
.y237{bottom:169.585200px;}
.y1f8{bottom:170.539350px;}
.y17e{bottom:172.139400px;}
.y174{bottom:172.142400px;}
.yef{bottom:172.151400px;}
.y30a{bottom:176.353200px;}
.y6a{bottom:176.695200px;}
.y39a{bottom:178.613700px;}
.y353{bottom:179.296200px;}
.y34{bottom:179.396250px;}
.y276{bottom:184.312350px;}
.ya3{bottom:184.323000px;}
.ydf{bottom:184.342650px;}
.y168{bottom:184.843350px;}
.y2c0{bottom:185.173200px;}
.y4b{bottom:185.287200px;}
.y12a{bottom:185.401350px;}
.y1ba{bottom:185.707350px;}
.y236{bottom:186.338700px;}
.y1f7{bottom:187.360350px;}
.y17d{bottom:188.636400px;}
.y173{bottom:188.639400px;}
.yee{bottom:188.648400px;}
.y309{bottom:189.973200px;}
.y399{bottom:192.113700px;}
.y33{bottom:192.896250px;}
.y352{bottom:192.897450px;}
.y69{bottom:193.196700px;}
.y2bf{bottom:198.745200px;}
.y275{bottom:200.809350px;}
.ya2{bottom:200.820000px;}
.yde{bottom:200.926650px;}
.y167{bottom:201.367350px;}
.y4a{bottom:201.874200px;}
.y129{bottom:201.992850px;}
.y1b9{bottom:202.231350px;}
.y235{bottom:203.104200px;}
.y308{bottom:203.593200px;}
.y1f6{bottom:204.181350px;}
.y17c{bottom:205.133400px;}
.y172{bottom:205.136400px;}
.yed{bottom:205.145400px;}
.y398{bottom:205.613700px;}
.y32{bottom:206.396250px;}
.y351{bottom:206.498700px;}
.y68{bottom:209.698200px;}
.y2be{bottom:212.317200px;}
.y274{bottom:217.306350px;}
.ya1{bottom:217.317000px;}
.ydd{bottom:217.423650px;}
.y166{bottom:217.891350px;}
.y49{bottom:218.461200px;}
.y128{bottom:218.584350px;}
.y1b8{bottom:218.755350px;}
.y397{bottom:219.113700px;}
.y234{bottom:219.857700px;}
.y31{bottom:219.896250px;}
.y350{bottom:220.099950px;}
.y1f5{bottom:221.002350px;}
.y17b{bottom:221.630400px;}
.y171{bottom:221.633400px;}
.yec{bottom:221.642400px;}
.y307{bottom:223.213200px;}
.y2bd{bottom:225.889200px;}
.y67{bottom:226.199700px;}
.y396{bottom:232.613700px;}
.y30{bottom:233.396250px;}
.y34f{bottom:233.701200px;}
.y273{bottom:233.803350px;}
.ya0{bottom:233.820000px;}
.ydc{bottom:233.920650px;}
.y165{bottom:234.415350px;}
.y48{bottom:235.048200px;}
.y127{bottom:235.167600px;}
.y1b7{bottom:235.279350px;}
.y233{bottom:236.611200px;}
.y306{bottom:236.833200px;}
.y1f4{bottom:237.823350px;}
.y170{bottom:238.130400px;}
.yeb{bottom:238.139400px;}
.y2bc{bottom:239.461200px;}
.y66{bottom:242.701200px;}
.y395{bottom:246.113700px;}
.y2f{bottom:246.896250px;}
.y34e{bottom:247.302450px;}
.y272{bottom:250.300350px;}
.y9f{bottom:250.317000px;}
.ydb{bottom:250.417650px;}
.y305{bottom:250.453200px;}
.y164{bottom:250.939350px;}
.y47{bottom:251.635200px;}
.y1b6{bottom:251.803350px;}
.y126{bottom:252.424350px;}
.y2bb{bottom:253.033200px;}
.y232{bottom:253.364700px;}
.yea{bottom:254.636400px;}
.y1f3{bottom:254.644350px;}
.y394{bottom:259.613700px;}
.y34d{bottom:260.903700px;}
.y65{bottom:263.689950px;}
.y304{bottom:264.073200px;}
.y2ba{bottom:266.605200px;}
.y271{bottom:266.797350px;}
.y9e{bottom:266.820000px;}
.yda{bottom:266.914650px;}
.y163{bottom:267.463350px;}
.y46{bottom:268.222200px;}
.y1b5{bottom:268.327350px;}
.y231{bottom:270.118200px;}
.ye9{bottom:271.133400px;}
.y1f2{bottom:271.465350px;}
.y393{bottom:273.113700px;}
.y34c{bottom:274.504950px;}
.y303{bottom:277.693200px;}
.y2b9{bottom:280.177200px;}
.y64{bottom:280.946700px;}
.y270{bottom:283.312350px;}
.y9d{bottom:283.317000px;}
.yd9{bottom:283.411650px;}
.y162{bottom:283.987350px;}
.y45{bottom:284.809200px;}
.y1b4{bottom:284.851350px;}
.y392{bottom:286.613700px;}
.y230{bottom:286.871700px;}
.ye8{bottom:287.630400px;}
.y34b{bottom:288.106200px;}
.y1f1{bottom:288.286350px;}
.y302{bottom:291.313200px;}
.y125{bottom:298.454850px;}
.y2b8{bottom:299.749200px;}
.y26f{bottom:299.809350px;}
.y9c{bottom:299.823000px;}
.yd8{bottom:299.908650px;}
.y391{bottom:300.113700px;}
.y161{bottom:300.511350px;}
.y1b3{bottom:301.375350px;}
.y44{bottom:301.396200px;}
.y34a{bottom:301.707450px;}
.y22f{bottom:303.625200px;}
.y2e{bottom:304.676250px;}
.y301{bottom:304.933200px;}
.y1f0{bottom:305.107350px;}
.y63{bottom:307.195200px;}
.y2b7{bottom:313.321200px;}
.y390{bottom:313.613700px;}
.y124{bottom:315.046350px;}
.y349{bottom:315.308700px;}
.y26e{bottom:316.306350px;}
.y9b{bottom:316.320000px;}
.yd7{bottom:316.405650px;}
.y160{bottom:317.035350px;}
.y1b2{bottom:317.899350px;}
.y43{bottom:317.983200px;}
.y2d{bottom:318.176250px;}
.y300{bottom:318.553200px;}
.y22e{bottom:320.381700px;}
.y1ef{bottom:321.928350px;}
.y62{bottom:323.696700px;}
.y2b6{bottom:326.893200px;}
.y38f{bottom:327.113700px;}
.y348{bottom:328.909950px;}
.y123{bottom:331.637850px;}
.y2ff{bottom:332.173200px;}
.y26d{bottom:332.803350px;}
.y9a{bottom:332.817000px;}
.yd6{bottom:332.902650px;}
.y15f{bottom:333.559350px;}
.y1b1{bottom:334.423350px;}
.y42{bottom:334.570200px;}
.y22d{bottom:337.135200px;}
.y1ee{bottom:338.749350px;}
.y61{bottom:340.198200px;}
.y2b5{bottom:340.465200px;}
.y38e{bottom:340.613700px;}
.y347{bottom:342.511200px;}
.y122{bottom:348.227850px;}
.y26c{bottom:349.300350px;}
.y99{bottom:349.314000px;}
.yd5{bottom:349.399650px;}
.y15e{bottom:350.083350px;}
.y1b0{bottom:350.947350px;}
.y41{bottom:351.157200px;}
.y2fe{bottom:351.793200px;}
.y22c{bottom:353.894700px;}
.y2b4{bottom:354.037200px;}
.y38d{bottom:354.113700px;}
.y1ed{bottom:355.570350px;}
.y346{bottom:356.112450px;}
.y60{bottom:356.699700px;}
.y121{bottom:364.816350px;}
.y2fd{bottom:365.413200px;}
.y26b{bottom:365.797350px;}
.y98{bottom:365.823000px;}
.yd4{bottom:365.896650px;}
.y15d{bottom:366.607350px;}
.y1af{bottom:367.471350px;}
.y2b3{bottom:367.609200px;}
.y38c{bottom:367.613700px;}
.y40{bottom:367.744200px;}
.y345{bottom:369.713700px;}
.y22b{bottom:370.648200px;}
.y1ec{bottom:372.391350px;}
.y5f{bottom:373.201200px;}
.y38b{bottom:381.113700px;}
.y2b2{bottom:381.181200px;}
.y120{bottom:381.407850px;}
.y26a{bottom:382.294350px;}
.y97{bottom:382.320000px;}
.yd3{bottom:382.393650px;}
.y15c{bottom:383.131350px;}
.y344{bottom:383.314950px;}
.y2c{bottom:383.701650px;}
.y1ae{bottom:383.995350px;}
.y3f{bottom:384.331200px;}
.y2fc{bottom:385.033200px;}
.y22a{bottom:387.401700px;}
.y1eb{bottom:389.212350px;}
.y5e{bottom:394.196700px;}
.y38a{bottom:394.613700px;}
.y2b1{bottom:394.753200px;}
.y343{bottom:396.916200px;}
.y2b{bottom:397.201650px;}
.y11f{bottom:397.990350px;}
.y269{bottom:398.800350px;}
.y96{bottom:398.817000px;}
.yd2{bottom:398.890650px;}
.y15b{bottom:399.655350px;}
.y1ad{bottom:400.519350px;}
.y3e{bottom:400.918200px;}
.y229{bottom:404.155200px;}
.y2fb{bottom:404.653200px;}
.y1ea{bottom:406.033350px;}
.y389{bottom:408.113700px;}
.y2b0{bottom:408.325200px;}
.y342{bottom:410.517450px;}
.y11e{bottom:414.581850px;}
.y268{bottom:415.297350px;}
.y95{bottom:415.326000px;}
.yd1{bottom:415.387650px;}
.y15a{bottom:416.179350px;}
.y1ac{bottom:417.043350px;}
.y3d{bottom:417.505200px;}
.y2fa{bottom:418.273200px;}
.y5d{bottom:420.445200px;}
.y228{bottom:420.908700px;}
.y388{bottom:421.613700px;}
.y2af{bottom:421.897200px;}
.y1e9{bottom:422.722350px;}
.y341{bottom:424.118700px;}
.y2a{bottom:424.201650px;}
.y11d{bottom:431.173350px;}
.y267{bottom:431.803350px;}
.y94{bottom:431.823000px;}
.yd0{bottom:431.884650px;}
.y2f9{bottom:431.893200px;}
.y159{bottom:432.703350px;}
.y1ab{bottom:433.567350px;}
.y3c{bottom:434.092200px;}
.y387{bottom:435.113700px;}
.y2ae{bottom:435.469200px;}
.y5c{bottom:436.946700px;}
.y227{bottom:437.666700px;}
.y29{bottom:437.701650px;}
.y340{bottom:437.719950px;}
.y1e8{bottom:439.543350px;}
.y2f8{bottom:445.513200px;}
.y11c{bottom:447.764850px;}
.y266{bottom:448.300350px;}
.y93{bottom:448.320000px;}
.ycf{bottom:448.381650px;}
.y386{bottom:448.613700px;}
.y2ad{bottom:449.041200px;}
.y158{bottom:449.227350px;}
.y1aa{bottom:450.091350px;}
.y3b{bottom:450.679200px;}
.y33f{bottom:451.321200px;}
.y5b{bottom:453.448200px;}
.y226{bottom:454.420200px;}
.y1e7{bottom:456.364350px;}
.y2f7{bottom:459.133200px;}
.y385{bottom:462.113700px;}
.y11b{bottom:464.356350px;}
.y28{bottom:464.701650px;}
.y265{bottom:464.797350px;}
.y92{bottom:464.817000px;}
.yce{bottom:464.878650px;}
.y33e{bottom:464.922450px;}
.y157{bottom:465.751350px;}
.y1a9{bottom:466.615350px;}
.y3a{bottom:467.266200px;}
.y5a{bottom:469.949700px;}
.y225{bottom:471.178200px;}
.y1e6{bottom:473.185350px;}
.y2ac{bottom:474.613200px;}
.y384{bottom:475.613700px;}
.y27{bottom:478.201650px;}
.y33d{bottom:478.523700px;}
.y2f6{bottom:478.753200px;}
.y11a{bottom:480.947850px;}
.y264{bottom:481.294350px;}
.y91{bottom:481.341000px;}
.ycd{bottom:481.375650px;}
.y156{bottom:482.275350px;}
.y1a8{bottom:483.139350px;}
.y39{bottom:483.853200px;}
.y59{bottom:486.448200px;}
.y224{bottom:487.931700px;}
.y383{bottom:489.113700px;}
.y2ab{bottom:489.685200px;}
.y1e5{bottom:490.006350px;}
.y26{bottom:491.701650px;}
.y33c{bottom:492.124950px;}
.y119{bottom:497.528850px;}
.y263{bottom:497.818350px;}
.y90{bottom:497.838000px;}
.ycc{bottom:497.872650px;}
.y2f5{bottom:498.373200px;}
.y155{bottom:498.817350px;}
.y1a7{bottom:499.663350px;}
.y38{bottom:500.440200px;}
.y382{bottom:502.613700px;}
.y58{bottom:502.949700px;}
.y223{bottom:504.685200px;}
.y2aa{bottom:504.757200px;}
.y33b{bottom:505.726200px;}
.y1e4{bottom:506.827350px;}
.y2f4{bottom:511.993200px;}
.y118{bottom:514.120350px;}
.y262{bottom:514.315350px;}
.y8f{bottom:514.335000px;}
.ycb{bottom:514.369650px;}
.y154{bottom:515.341350px;}
.y381{bottom:516.113700px;}
.y1a6{bottom:516.187350px;}
.y37{bottom:517.027200px;}
.y33a{bottom:519.327450px;}
.y57{bottom:519.451200px;}
.y2a9{bottom:519.829200px;}
.y222{bottom:521.443200px;}
.y25{bottom:523.201650px;}
.y1e3{bottom:523.648350px;}
.y380{bottom:529.823700px;}
.y117{bottom:530.711850px;}
.y261{bottom:530.812350px;}
.y8e{bottom:530.832000px;}
.yca{bottom:530.866650px;}
.y2f3{bottom:531.613200px;}
.y153{bottom:531.865350px;}
.y1a5{bottom:532.711350px;}
.y339{bottom:532.928700px;}
.y36{bottom:533.614200px;}
.y24{bottom:536.701650px;}
.y221{bottom:538.196700px;}
.y56{bottom:540.451200px;}
.y1e2{bottom:540.469350px;}
.y37f{bottom:543.323700px;}
.y2a8{bottom:544.801200px;}
.y338{bottom:546.529950px;}
.y116{bottom:547.303350px;}
.y260{bottom:547.309350px;}
.y8d{bottom:547.329000px;}
.yc9{bottom:547.363650px;}
.y152{bottom:548.389350px;}
.y1a4{bottom:549.235350px;}
.y35{bottom:550.201200px;}
.y2f2{bottom:551.233200px;}
.y220{bottom:554.950200px;}
.y37e{bottom:556.823700px;}
.y1e1{bottom:557.290350px;}
.y2a7{bottom:558.376200px;}
.y23{bottom:559.201650px;}
.y337{bottom:560.131200px;}
.y25f{bottom:563.806350px;}
.y8c{bottom:563.826000px;}
.yc8{bottom:563.860650px;}
.y115{bottom:563.894850px;}
.y2f1{bottom:564.853200px;}
.y151{bottom:564.905850px;}
.y1a3{bottom:565.759350px;}
.y37d{bottom:570.323700px;}
.y21f{bottom:571.709700px;}
.y2a6{bottom:571.951200px;}
.y22{bottom:572.701650px;}
.y336{bottom:573.732450px;}
.y1e0{bottom:574.111350px;}
.y2f0{bottom:578.473200px;}
.y25e{bottom:580.303350px;}
.y8b{bottom:580.323000px;}
.yc7{bottom:580.357650px;}
.y114{bottom:580.486350px;}
.y150{bottom:582.162600px;}
.y1a2{bottom:582.283350px;}
.y37c{bottom:583.823700px;}
.y2a5{bottom:585.526200px;}
.y21{bottom:586.201650px;}
.y335{bottom:587.333700px;}
.y21e{bottom:588.463200px;}
.y1df{bottom:590.932350px;}
.y2ef{bottom:592.093200px;}
.y2a4{bottom:593.704200px;}
.y25d{bottom:596.800350px;}
.y8a{bottom:596.820000px;}
.yc6{bottom:596.854650px;}
.y113{bottom:597.077850px;}
.y37b{bottom:597.323700px;}
.y1a1{bottom:598.807350px;}
.y14f{bottom:599.419350px;}
.y20{bottom:599.701650px;}
.y334{bottom:600.934950px;}
.y21d{bottom:605.216700px;}
.y2ee{bottom:605.713200px;}
.y1de{bottom:607.753350px;}
.y17{bottom:609.451200px;}
.y37a{bottom:610.823700px;}
.y2a3{bottom:612.676200px;}
.y1f{bottom:613.201650px;}
.y25c{bottom:613.297350px;}
.y89{bottom:613.317000px;}
.yc5{bottom:613.351650px;}
.y112{bottom:613.669350px;}
.y333{bottom:614.536200px;}
.y1a0{bottom:615.331350px;}
.y2ed{bottom:619.333200px;}
.y2a2{bottom:620.854200px;}
.y21c{bottom:621.970200px;}
.y379{bottom:624.323700px;}
.y1dd{bottom:624.574350px;}
.y332{bottom:628.137450px;}
.y25b{bottom:629.803350px;}
.y88{bottom:629.847000px;}
.yc4{bottom:629.848650px;}
.y111{bottom:630.257850px;}
.y19f{bottom:631.855350px;}
.y16{bottom:632.851200px;}
.y2ec{bottom:632.953200px;}
.y378{bottom:637.823700px;}
.y21b{bottom:638.723700px;}
.y2a1{bottom:639.826200px;}
.y1dc{bottom:641.395350px;}
.y331{bottom:641.738700px;}
.y14e{bottom:645.526350px;}
.y25a{bottom:646.300350px;}
.y87{bottom:646.344000px;}
.yc3{bottom:646.345650px;}
.y2eb{bottom:646.573200px;}
.y110{bottom:646.840350px;}
.y2a0{bottom:648.004200px;}
.y19e{bottom:648.379350px;}
.y377{bottom:651.323700px;}
.y330{bottom:655.339950px;}
.y21a{bottom:655.480200px;}
.y15{bottom:656.251200px;}
.y1db{bottom:658.216350px;}
.y2ea{bottom:660.193200px;}
.y14d{bottom:662.050350px;}
.y259{bottom:662.797350px;}
.y86{bottom:662.841000px;}
.yc2{bottom:662.842650px;}
.y10f{bottom:663.431850px;}
.y376{bottom:664.823700px;}
.y19d{bottom:664.903350px;}
.y29f{bottom:666.976200px;}
.y32f{bottom:668.941200px;}
.y219{bottom:672.236700px;}
.y2e9{bottom:673.813200px;}
.y1da{bottom:675.037350px;}
.y29e{bottom:675.154200px;}
.y375{bottom:678.323700px;}
.y14c{bottom:678.574350px;}
.y258{bottom:679.297350px;}
.y85{bottom:679.338000px;}
.yc1{bottom:679.342650px;}
.y14{bottom:679.651200px;}
.y10e{bottom:680.023350px;}
.y19c{bottom:681.427350px;}
.y32e{bottom:682.542450px;}
.y2e8{bottom:687.433200px;}
.y218{bottom:688.990200px;}
.y374{bottom:691.823700px;}
.y1d9{bottom:691.858350px;}
.y29d{bottom:694.126200px;}
.y14b{bottom:695.098350px;}
.y257{bottom:695.806350px;}
.y84{bottom:695.835000px;}
.yc0{bottom:695.839650px;}
.y32d{bottom:696.143700px;}
.y10d{bottom:696.614850px;}
.y19b{bottom:697.951350px;}
.y2e7{bottom:701.053200px;}
.y13{bottom:703.048200px;}
.y373{bottom:705.323700px;}
.y217{bottom:705.746700px;}
.y29c{bottom:707.701200px;}
.y1d8{bottom:708.679350px;}
.y32c{bottom:709.744950px;}
.y14a{bottom:711.622350px;}
.y256{bottom:712.303350px;}
.ybf{bottom:712.326150px;}
.y83{bottom:712.332000px;}
.y10c{bottom:713.206350px;}
.y19a{bottom:714.475350px;}
.y2e6{bottom:714.673200px;}
.y29b{bottom:715.879200px;}
.y372{bottom:718.823700px;}
.y216{bottom:722.500200px;}
.y32b{bottom:723.346200px;}
.y1d7{bottom:725.500350px;}
.y12{bottom:725.551200px;}
.y149{bottom:728.146350px;}
.y2e5{bottom:728.293200px;}
.y255{bottom:728.800350px;}
.y82{bottom:728.829000px;}
.ybe{bottom:729.582900px;}
.y10b{bottom:729.797850px;}
.y199{bottom:730.999350px;}
.y371{bottom:732.323700px;}
.y29a{bottom:734.851200px;}
.y32a{bottom:736.947450px;}
.y215{bottom:739.256700px;}
.y2e4{bottom:741.913200px;}
.y1d6{bottom:742.321350px;}
.y148{bottom:744.670350px;}
.y254{bottom:745.297350px;}
.y81{bottom:745.326000px;}
.y370{bottom:745.823700px;}
.y10a{bottom:746.377350px;}
.ybd{bottom:746.839650px;}
.y198{bottom:747.523350px;}
.y299{bottom:748.426200px;}
.y11{bottom:748.951200px;}
.y329{bottom:750.548700px;}
.y2e3{bottom:755.533200px;}
.y214{bottom:756.010200px;}
.y298{bottom:756.604200px;}
.y1d5{bottom:759.142350px;}
.y36f{bottom:759.323700px;}
.y147{bottom:761.194350px;}
.y253{bottom:761.806350px;}
.y80{bottom:761.823000px;}
.y109{bottom:762.968850px;}
.y197{bottom:764.047350px;}
.y328{bottom:764.149950px;}
.y2e2{bottom:769.153200px;}
.y10{bottom:772.348200px;}
.y213{bottom:772.766700px;}
.y36e{bottom:772.823700px;}
.y297{bottom:775.576200px;}
.y1d4{bottom:775.963350px;}
.y146{bottom:777.718350px;}
.y327{bottom:777.751200px;}
.y252{bottom:778.303350px;}
.y7f{bottom:778.320000px;}
.y108{bottom:779.560350px;}
.y196{bottom:780.571350px;}
.y2e1{bottom:782.773200px;}
.ybc{bottom:784.577550px;}
.y36d{bottom:786.323700px;}
.y296{bottom:789.151200px;}
.y212{bottom:789.520200px;}
.y326{bottom:791.352450px;}
.y1d3{bottom:792.772350px;}
.y145{bottom:794.242350px;}
.y251{bottom:794.800350px;}
.y7e{bottom:794.817000px;}
.yf{bottom:794.851200px;}
.y107{bottom:796.151850px;}
.y2e0{bottom:796.393200px;}
.y195{bottom:797.095350px;}
.y295{bottom:797.329200px;}
.y36c{bottom:799.823700px;}
.ybb{bottom:801.074550px;}
.y325{bottom:804.953700px;}
.y211{bottom:806.276700px;}
.y1d2{bottom:809.593350px;}
.y2df{bottom:810.013200px;}
.y144{bottom:810.766350px;}
.y250{bottom:811.297350px;}
.y7d{bottom:811.326000px;}
.y106{bottom:812.743350px;}
.y36b{bottom:813.323700px;}
.y194{bottom:813.619350px;}
.y294{bottom:816.301200px;}
.yba{bottom:817.574550px;}
.ye{bottom:818.251200px;}
.y324{bottom:818.554950px;}
.y210{bottom:823.030200px;}
.y2de{bottom:823.633200px;}
.y293{bottom:824.479200px;}
.y1d1{bottom:826.414350px;}
.y36a{bottom:826.823700px;}
.y143{bottom:827.290350px;}
.y24f{bottom:827.803350px;}
.y7c{bottom:827.823000px;}
.y105{bottom:829.334850px;}
.y193{bottom:830.143350px;}
.y323{bottom:832.156200px;}
.y2dd{bottom:837.253200px;}
.y20f{bottom:839.788200px;}
.y369{bottom:840.323700px;}
.yd{bottom:841.648200px;}
.y1d0{bottom:843.222600px;}
.y292{bottom:843.451200px;}
.y142{bottom:843.904350px;}
.y24e{bottom:844.300350px;}
.y7b{bottom:844.320000px;}
.y322{bottom:845.757450px;}
.y104{bottom:845.926350px;}
.y192{bottom:846.667350px;}
.y2dc{bottom:850.873200px;}
.y291{bottom:851.629200px;}
.y368{bottom:853.823700px;}
.yb9{bottom:855.327600px;}
.y20e{bottom:856.541700px;}
.y321{bottom:859.358700px;}
.y141{bottom:860.428350px;}
.y1cf{bottom:860.479350px;}
.y24d{bottom:860.797350px;}
.y7a{bottom:860.817000px;}
.y103{bottom:862.517850px;}
.y191{bottom:863.191350px;}
.yc{bottom:864.148200px;}
.y2db{bottom:864.493200px;}
.y367{bottom:867.323700px;}
.y290{bottom:870.601200px;}
.yb8{bottom:871.824600px;}
.y320{bottom:872.959950px;}
.y20d{bottom:873.295200px;}
.y140{bottom:876.952350px;}
.y24c{bottom:877.306350px;}
.y79{bottom:877.317000px;}
.y2da{bottom:878.113200px;}
.y28f{bottom:878.782200px;}
.y102{bottom:879.109350px;}
.y190{bottom:879.715350px;}
.y366{bottom:880.823700px;}
.y31f{bottom:886.561200px;}
.yb{bottom:886.648200px;}
.yb7{bottom:888.321600px;}
.y20c{bottom:890.050200px;}
.y2d9{bottom:891.733200px;}
.y28e{bottom:892.354200px;}
.y13f{bottom:893.476350px;}
.y24b{bottom:893.803350px;}
.y78{bottom:893.829000px;}
.y365{bottom:894.323700px;}
.y101{bottom:895.692600px;}
.y18f{bottom:896.239350px;}
.y31e{bottom:900.162450px;}
.yb6{bottom:904.818600px;}
.y2d8{bottom:905.353200px;}
.y1ce{bottom:906.484350px;}
.y20b{bottom:906.805200px;}
.y364{bottom:907.823700px;}
.ya{bottom:909.148200px;}
.y13e{bottom:910.000350px;}
.y24a{bottom:910.300350px;}
.y77{bottom:910.326000px;}
.y28d{bottom:911.326200px;}
.y18e{bottom:912.762600px;}
.y100{bottom:912.949350px;}
.y31d{bottom:913.763700px;}
.y2d7{bottom:918.973200px;}
.yb5{bottom:921.315600px;}
.y363{bottom:921.323700px;}
.y1cd{bottom:923.305350px;}
.y20a{bottom:923.560200px;}
.y28c{bottom:924.901200px;}
.y13d{bottom:926.524350px;}
.y249{bottom:926.797350px;}
.y76{bottom:926.823000px;}
.y31c{bottom:927.364950px;}
.y18d{bottom:930.019350px;}
.y9{bottom:931.648200px;}
.y2d6{bottom:932.593200px;}
.y28b{bottom:933.079200px;}
.y362{bottom:934.823700px;}
.yb4{bottom:937.812600px;}
.y1cc{bottom:940.126350px;}
.y209{bottom:940.315200px;}
.y31b{bottom:940.966200px;}
.y13c{bottom:943.048350px;}
.y248{bottom:943.294350px;}
.y75{bottom:943.320000px;}
.y2d5{bottom:946.213200px;}
.y361{bottom:948.323700px;}
.y6c{bottom:951.836685px;}
.y28a{bottom:952.051200px;}
.y8{bottom:954.151200px;}
.yb3{bottom:954.309600px;}
.y31a{bottom:954.571200px;}
.y1cb{bottom:956.947350px;}
.y208{bottom:957.071700px;}
.yff{bottom:958.978350px;}
.y13b{bottom:959.572350px;}
.y247{bottom:959.800350px;}
.y74{bottom:959.817000px;}
.y2d4{bottom:959.833200px;}
.y289{bottom:960.229200px;}
.y360{bottom:961.823700px;}
.yb2{bottom:970.802850px;}
.y2d3{bottom:973.453200px;}
.y1ca{bottom:973.768350px;}
.y207{bottom:973.825200px;}
.y35f{bottom:975.323700px;}
.yfe{bottom:975.569850px;}
.y13a{bottom:976.096350px;}
.y18c{bottom:976.102350px;}
.y246{bottom:976.297350px;}
.y73{bottom:976.314000px;}
.y288{bottom:979.201200px;}
.y2d2{bottom:987.073200px;}
.yb1{bottom:988.059600px;}
.y35e{bottom:988.823700px;}
.y206{bottom:990.587700px;}
.y1c9{bottom:990.589350px;}
.yfd{bottom:992.161350px;}
.y139{bottom:992.620350px;}
.y18b{bottom:992.626350px;}
.y287{bottom:992.776200px;}
.y245{bottom:992.800350px;}
.y72{bottom:992.809500px;}
.y7{bottom:994.051200px;}
.y319{bottom:1000.687200px;}
.y2d1{bottom:1000.693200px;}
.y286{bottom:1000.954200px;}
.y35d{bottom:1002.323700px;}
.y205{bottom:1007.341200px;}
.y1c8{bottom:1007.410350px;}
.yfc{bottom:1008.752850px;}
.y138{bottom:1009.144350px;}
.y18a{bottom:1009.150350px;}
.y244{bottom:1009.297350px;}
.y318{bottom:1014.295200px;}
.y2d0{bottom:1014.313200px;}
.y35c{bottom:1015.823700px;}
.y285{bottom:1019.926200px;}
.y204{bottom:1024.094700px;}
.y1c7{bottom:1024.231350px;}
.yfb{bottom:1025.341350px;}
.y137{bottom:1025.668350px;}
.y189{bottom:1025.674350px;}
.y243{bottom:1025.803350px;}
.yb0{bottom:1025.836500px;}
.y317{bottom:1027.903200px;}
.y2cf{bottom:1027.933200px;}
.y284{bottom:1028.104200px;}
.y35b{bottom:1029.323700px;}
.y6{bottom:1030.051200px;}
.y203{bottom:1040.848200px;}
.y1c6{bottom:1041.052350px;}
.y316{bottom:1041.511200px;}
.y2ce{bottom:1041.553200px;}
.yfa{bottom:1041.932850px;}
.y136{bottom:1042.192350px;}
.y188{bottom:1042.198350px;}
.y242{bottom:1042.300350px;}
.yaf{bottom:1042.333500px;}
.y35a{bottom:1042.823700px;}
.y283{bottom:1047.076200px;}
.y315{bottom:1055.119200px;}
.y2cd{bottom:1055.173200px;}
.y282{bottom:1055.254200px;}
.y359{bottom:1056.323700px;}
.y202{bottom:1057.601700px;}
.y1c5{bottom:1057.873350px;}
.y71{bottom:1058.359500px;}
.yf9{bottom:1058.519850px;}
.y135{bottom:1058.716350px;}
.y187{bottom:1058.722350px;}
.y241{bottom:1058.797350px;}
.yae{bottom:1058.830500px;}
.y5{bottom:1066.051200px;}
.y314{bottom:1068.727200px;}
.y2cc{bottom:1068.793200px;}
.y358{bottom:1069.823700px;}
.y281{bottom:1074.226200px;}
.y201{bottom:1074.355200px;}
.y1c4{bottom:1074.694350px;}
.y70{bottom:1074.861000px;}
.yf8{bottom:1075.111350px;}
.y134{bottom:1075.240350px;}
.y186{bottom:1075.246350px;}
.y240{bottom:1075.300350px;}
.yad{bottom:1075.327500px;}
.y313{bottom:1082.335200px;}
.y280{bottom:1082.404200px;}
.y2cb{bottom:1082.413200px;}
.y357{bottom:1083.323700px;}
.y200{bottom:1091.108700px;}
.y6f{bottom:1091.362500px;}
.y1c3{bottom:1091.515350px;}
.yf7{bottom:1091.702850px;}
.y133{bottom:1091.750850px;}
.y185{bottom:1091.770350px;}
.y23f{bottom:1091.797350px;}
.yac{bottom:1091.824500px;}
.y312{bottom:1095.943200px;}
.y2ca{bottom:1096.033200px;}
.y356{bottom:1096.823700px;}
.y27f{bottom:1101.376200px;}
.y4{bottom:1105.051200px;}
.y1ff{bottom:1107.863700px;}
.y6e{bottom:1107.864000px;}
.y132{bottom:1108.274850px;}
.yf6{bottom:1108.294350px;}
.y23e{bottom:1108.307700px;}
.yab{bottom:1108.321500px;}
.y1c2{bottom:1108.336350px;}
.y27e{bottom:1109.551200px;}
.y2c9{bottom:1109.653200px;}
.y355{bottom:1110.323700px;}
.y3{bottom:1140.863550px;}
.h30{height:27.655056px;}
.h8{height:36.576000px;}
.h32{height:39.105000px;}
.h31{height:40.356000px;}
.hf{height:40.869141px;}
.h1b{height:41.148000px;}
.h13{height:41.422852px;}
.h28{height:41.557345px;}
.h2{height:41.712000px;}
.he{height:41.760000px;}
.h9{height:43.434000px;}
.h33{height:45.336615px;}
.ha{height:49.533000px;}
.h3{height:50.292000px;}
.h27{height:50.364240px;}
.h24{height:51.036240px;}
.h1a{height:51.048240px;}
.h19{height:51.228840px;}
.h14{height:51.264240px;}
.h15{height:51.288240px;}
.h2f{height:51.300240px;}
.h25{height:51.324240px;}
.h10{height:51.336240px;}
.h2e{height:51.342840px;}
.h12{height:51.348240px;}
.h2d{height:51.354240px;}
.h16{height:51.360240px;}
.h18{height:51.372240px;}
.h2c{height:51.378240px;}
.h11{height:51.384240px;}
.h2b{height:51.390240px;}
.h17{height:51.396240px;}
.h21{height:51.402240px;}
.h1e{height:51.408240px;}
.h1d{height:51.414240px;}
.h20{height:51.432240px;}
.h22{height:51.438240px;}
.h1f{height:51.444240px;}
.h1c{height:51.449124px;}
.h23{height:51.450240px;}
.h26{height:51.461124px;}
.h2a{height:51.485124px;}
.h29{height:51.924240px;}
.hb{height:54.446742px;}
.hc{height:54.458742px;}
.h4{height:62.568000px;}
.h6{height:80.039466px;}
.h7{height:80.051466px;}
.h5{height:91.440000px;}
.hd{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:62.997000px;}
.x5{left:68.250000px;}
.x8{left:73.025100px;}
.x6{left:74.877000px;}
.xe{left:76.494000px;}
.x15{left:81.900000px;}
.x4{left:218.508750px;}
.x2{left:275.027550px;}
.xf{left:460.033200px;}
.x10{left:473.533650px;}
.x16{left:478.935000px;}
.x12{left:526.264500px;}
.x9{left:533.590500px;}
.xa{left:543.336000px;}
.xb{left:555.180000px;}
.xc{left:561.332850px;}
.x13{left:567.475350px;}
.x3{left:752.324100px;}
.x1{left:806.153550px;}
.x14{left:818.393550px;}
.x11{left:824.153550px;}
.xd{left:853.499955px;}
@media print{
.v6{vertical-align:-21.600000pt;}
.v7{vertical-align:-19.200000pt;}
.v5{vertical-align:-0.917333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:17.253333pt;}
.v4{vertical-align:21.546667pt;}
.v2{vertical-align:22.800000pt;}
.v1{vertical-align:31.200000pt;}
.v3{vertical-align:48.000000pt;}
.lsa{letter-spacing:-6.384000pt;}
.ls5{letter-spacing:-1.578667pt;}
.ls7{letter-spacing:-0.760000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000475pt;}
.ls9{letter-spacing:0.005056pt;}
.lsb{letter-spacing:0.479520pt;}
.lsc{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.625323pt;}
.ls12{letter-spacing:0.636480pt;}
.ls11{letter-spacing:0.849600pt;}
.lse{letter-spacing:0.936000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.266160pt;}
.ls6{letter-spacing:3.285333pt;}
.ls1{letter-spacing:15.288533pt;}
.ls0{letter-spacing:21.760000pt;}
.ls3{letter-spacing:21.888000pt;}
.ls8{letter-spacing:1487.274667pt;}
.ws8{word-spacing:-16.640693pt;}
.ws1{word-spacing:-14.439493pt;}
.wsf4{word-spacing:-14.304000pt;}
.wsf3{word-spacing:-14.280000pt;}
.wsf0{word-spacing:-13.823520pt;}
.ws3{word-spacing:-13.344000pt;}
.ws69{word-spacing:-11.520000pt;}
.ws0{word-spacing:-11.032320pt;}
.wsa{word-spacing:-10.240427pt;}
.ws6{word-spacing:-10.240000pt;}
.ws137{word-spacing:-9.600400pt;}
.ws135{word-spacing:-9.600000pt;}
.wsf5{word-spacing:-9.483552pt;}
.wsd{word-spacing:-8.847072pt;}
.ws2{word-spacing:-8.062080pt;}
.ws6a{word-spacing:-7.637760pt;}
.ws133{word-spacing:-6.789120pt;}
.ws134{word-spacing:-6.364800pt;}
.wsb7{word-spacing:-4.752000pt;}
.ws5b{word-spacing:-4.607520pt;}
.ws10e{word-spacing:-4.224000pt;}
.ws7f{word-spacing:-4.032000pt;}
.ws9{word-spacing:-3.812640pt;}
.ws63{word-spacing:-3.696000pt;}
.wse6{word-spacing:-2.880000pt;}
.ws36{word-spacing:-2.832480pt;}
.wsc{word-spacing:-2.786160pt;}
.wsf8{word-spacing:-2.736480pt;}
.wse9{word-spacing:-2.688000pt;}
.wsa0{word-spacing:-2.639520pt;}
.ws3f{word-spacing:-2.543520pt;}
.ws39{word-spacing:-2.496000pt;}
.wsf9{word-spacing:-2.447520pt;}
.wsaa{word-spacing:-2.352000pt;}
.ws136{word-spacing:-2.346240pt;}
.ws9e{word-spacing:-2.256000pt;}
.ws13a{word-spacing:-2.199600pt;}
.wsb4{word-spacing:-2.160000pt;}
.ws129{word-spacing:-2.064000pt;}
.ws131{word-spacing:-2.016480pt;}
.ws92{word-spacing:-1.919520pt;}
.ws101{word-spacing:-1.872000pt;}
.ws61{word-spacing:-1.823520pt;}
.ws139{word-spacing:-1.800000pt;}
.ws9f{word-spacing:-1.776000pt;}
.ws37{word-spacing:-1.728000pt;}
.ws38{word-spacing:-1.654848pt;}
.ws10b{word-spacing:-1.632000pt;}
.ws2b{word-spacing:-1.440000pt;}
.wse2{word-spacing:-1.392480pt;}
.ws99{word-spacing:-1.344000pt;}
.wsdd{word-spacing:-1.295520pt;}
.wse{word-spacing:-1.266160pt;}
.ws46{word-spacing:-1.248000pt;}
.wsea{word-spacing:-1.199520pt;}
.ws95{word-spacing:-1.152000pt;}
.ws13{word-spacing:-1.103520pt;}
.ws48{word-spacing:-1.056000pt;}
.wse5{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.912000pt;}
.wsf1{word-spacing:-0.864480pt;}
.ws86{word-spacing:-0.816000pt;}
.ws3d{word-spacing:-0.768480pt;}
.ws138{word-spacing:-0.720400pt;}
.ws22{word-spacing:-0.672480pt;}
.ws125{word-spacing:-0.636480pt;}
.ws2a{word-spacing:-0.624000pt;}
.wsdc{word-spacing:-0.575520pt;}
.ws114{word-spacing:-0.509502pt;}
.wsec{word-spacing:-0.479520pt;}
.ws1d{word-spacing:-0.432000pt;}
.ws7d{word-spacing:-0.384000pt;}
.ws11f{word-spacing:-0.336000pt;}
.wsb2{word-spacing:-0.144480pt;}
.ws64{word-spacing:-0.096000pt;}
.ws6b{word-spacing:-0.048480pt;}
.ws5{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.048480pt;}
.wsd4{word-spacing:0.240000pt;}
.ws16{word-spacing:0.381570pt;}
.ws9c{word-spacing:0.384000pt;}
.ws9b{word-spacing:0.479520pt;}
.ws9d{word-spacing:0.528000pt;}
.ws15{word-spacing:0.575520pt;}
.ws30{word-spacing:0.624000pt;}
.ws71{word-spacing:0.720000pt;}
.wsb{word-spacing:0.760000pt;}
.ws41{word-spacing:0.768480pt;}
.ws12d{word-spacing:0.816000pt;}
.wsce{word-spacing:0.864480pt;}
.wsa5{word-spacing:0.912000pt;}
.ws35{word-spacing:1.008000pt;}
.ws17{word-spacing:1.056000pt;}
.wsd5{word-spacing:1.103520pt;}
.ws5c{word-spacing:1.152000pt;}
.wsb8{word-spacing:1.199520pt;}
.ws14{word-spacing:1.248000pt;}
.wsb3{word-spacing:1.344000pt;}
.ws12a{word-spacing:1.392480pt;}
.ws55{word-spacing:1.440000pt;}
.ws8b{word-spacing:1.488480pt;}
.ws5d{word-spacing:1.536000pt;}
.ws7{word-spacing:1.578667pt;}
.ws23{word-spacing:1.584000pt;}
.ws65{word-spacing:1.632000pt;}
.ws60{word-spacing:1.680000pt;}
.ws10f{word-spacing:1.776000pt;}
.ws109{word-spacing:1.823520pt;}
.wsf{word-spacing:1.872000pt;}
.wsc8{word-spacing:1.919520pt;}
.wsc0{word-spacing:2.016480pt;}
.wsca{word-spacing:2.064000pt;}
.wsa8{word-spacing:2.112480pt;}
.wsac{word-spacing:2.208480pt;}
.ws56{word-spacing:2.304000pt;}
.ws27{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.447520pt;}
.wsfa{word-spacing:2.496000pt;}
.wsae{word-spacing:2.543520pt;}
.wsed{word-spacing:2.592000pt;}
.wsc1{word-spacing:2.639520pt;}
.wsaf{word-spacing:2.688000pt;}
.ws50{word-spacing:2.784000pt;}
.ws93{word-spacing:2.832480pt;}
.ws116{word-spacing:2.880000pt;}
.wsb0{word-spacing:2.976000pt;}
.ws49{word-spacing:3.024000pt;}
.ws45{word-spacing:3.120000pt;}
.ws2d{word-spacing:3.150576pt;}
.ws3e{word-spacing:3.167520pt;}
.ws7e{word-spacing:3.263520pt;}
.ws6f{word-spacing:3.312000pt;}
.ws8e{word-spacing:3.360480pt;}
.ws83{word-spacing:3.504000pt;}
.wsab{word-spacing:3.696000pt;}
.ws34{word-spacing:3.791520pt;}
.ws72{word-spacing:3.887520pt;}
.ws62{word-spacing:3.936000pt;}
.wsa1{word-spacing:3.983520pt;}
.ws6d{word-spacing:4.032000pt;}
.ws107{word-spacing:4.080480pt;}
.ws10c{word-spacing:4.128000pt;}
.ws11{word-spacing:4.176480pt;}
.ws52{word-spacing:4.224000pt;}
.wsc9{word-spacing:4.272000pt;}
.ws76{word-spacing:4.320000pt;}
.ws121{word-spacing:4.368000pt;}
.wsbe{word-spacing:4.416000pt;}
.ws7c{word-spacing:4.464000pt;}
.wse8{word-spacing:4.560000pt;}
.ws4e{word-spacing:4.582656pt;}
.ws103{word-spacing:4.607520pt;}
.ws12{word-spacing:4.704480pt;}
.ws1a{word-spacing:4.752000pt;}
.ws88{word-spacing:4.800480pt;}
.wsa6{word-spacing:4.848000pt;}
.ws82{word-spacing:4.896480pt;}
.ws18{word-spacing:4.992000pt;}
.ws5e{word-spacing:5.040000pt;}
.wsd6{word-spacing:5.088000pt;}
.ws5f{word-spacing:5.135520pt;}
.wsc6{word-spacing:5.184000pt;}
.ws10d{word-spacing:5.231520pt;}
.ws85{word-spacing:5.280000pt;}
.ws91{word-spacing:5.327520pt;}
.ws118{word-spacing:5.376000pt;}
.ws112{word-spacing:5.472000pt;}
.ws59{word-spacing:5.520480pt;}
.ws1c{word-spacing:5.616000pt;}
.wsbf{word-spacing:5.760000pt;}
.wsb6{word-spacing:5.808000pt;}
.ws44{word-spacing:5.904000pt;}
.wsc3{word-spacing:5.951520pt;}
.ws29{word-spacing:6.000000pt;}
.ws42{word-spacing:6.048480pt;}
.ws20{word-spacing:6.096000pt;}
.ws43{word-spacing:6.192000pt;}
.ws4b{word-spacing:6.240000pt;}
.ws58{word-spacing:6.336000pt;}
.wse1{word-spacing:6.432000pt;}
.ws96{word-spacing:6.479520pt;}
.ws117{word-spacing:6.528000pt;}
.ws68{word-spacing:6.624000pt;}
.ws40{word-spacing:6.672480pt;}
.ws54{word-spacing:6.720000pt;}
.ws2f{word-spacing:6.768480pt;}
.wsc4{word-spacing:6.816000pt;}
.ws4d{word-spacing:6.912000pt;}
.ws113{word-spacing:7.008000pt;}
.ws70{word-spacing:7.056000pt;}
.ws6e{word-spacing:7.152000pt;}
.ws1b{word-spacing:7.199520pt;}
.wsff{word-spacing:7.248000pt;}
.wscc{word-spacing:7.295520pt;}
.wsd7{word-spacing:7.344000pt;}
.ws79{word-spacing:7.392480pt;}
.ws57{word-spacing:7.488480pt;}
.wsb1{word-spacing:7.536000pt;}
.ws80{word-spacing:7.680000pt;}
.ws2e{word-spacing:7.728000pt;}
.wsd8{word-spacing:7.776000pt;}
.ws1f{word-spacing:7.823520pt;}
.ws89{word-spacing:7.872000pt;}
.ws119{word-spacing:7.919520pt;}
.ws24{word-spacing:7.968000pt;}
.ws3c{word-spacing:8.064000pt;}
.ws11b{word-spacing:8.112480pt;}
.ws100{word-spacing:8.160000pt;}
.ws111{word-spacing:8.178768pt;}
.ws90{word-spacing:8.208480pt;}
.ws51{word-spacing:8.304000pt;}
.wsfe{word-spacing:8.352000pt;}
.ws74{word-spacing:8.400000pt;}
.ws8d{word-spacing:8.543520pt;}
.ws97{word-spacing:8.592000pt;}
.ws73{word-spacing:8.688000pt;}
.ws3b{word-spacing:8.736480pt;}
.ws11a{word-spacing:8.784000pt;}
.ws11c{word-spacing:8.928000pt;}
.ws28{word-spacing:8.976000pt;}
.ws9a{word-spacing:9.072000pt;}
.ws106{word-spacing:9.120000pt;}
.ws12e{word-spacing:9.216000pt;}
.wsa3{word-spacing:9.408000pt;}
.wsef{word-spacing:9.456480pt;}
.wsfc{word-spacing:9.744000pt;}
.wsbd{word-spacing:9.887520pt;}
.ws47{word-spacing:9.936000pt;}
.wsa2{word-spacing:9.983520pt;}
.ws12c{word-spacing:10.032000pt;}
.ws25{word-spacing:10.128000pt;}
.ws33{word-spacing:10.272000pt;}
.wsdf{word-spacing:10.368000pt;}
.wse0{word-spacing:10.416000pt;}
.ws104{word-spacing:10.533426pt;}
.ws1e{word-spacing:10.607520pt;}
.ws75{word-spacing:10.656000pt;}
.wsb5{word-spacing:10.800480pt;}
.ws53{word-spacing:10.848000pt;}
.wsfd{word-spacing:10.944000pt;}
.ws84{word-spacing:10.992000pt;}
.ws4f{word-spacing:11.040000pt;}
.ws10a{word-spacing:11.088000pt;}
.ws4{word-spacing:11.092907pt;}
.ws19{word-spacing:11.327520pt;}
.wsf6{word-spacing:11.424480pt;}
.ws87{word-spacing:11.568000pt;}
.ws8c{word-spacing:11.664000pt;}
.ws122{word-spacing:11.712000pt;}
.wsd1{word-spacing:11.808000pt;}
.ws10{word-spacing:11.951520pt;}
.wsd3{word-spacing:12.000000pt;}
.ws67{word-spacing:12.048480pt;}
.wsc2{word-spacing:12.096000pt;}
.ws108{word-spacing:12.144480pt;}
.ws120{word-spacing:12.240000pt;}
.ws110{word-spacing:12.336000pt;}
.wscb{word-spacing:12.479520pt;}
.wsf7{word-spacing:12.528000pt;}
.ws32{word-spacing:12.570480pt;}
.ws26{word-spacing:12.575520pt;}
.wsba{word-spacing:12.816000pt;}
.ws12f{word-spacing:12.864480pt;}
.wsa7{word-spacing:13.008000pt;}
.ws77{word-spacing:13.152000pt;}
.ws81{word-spacing:13.295520pt;}
.wse7{word-spacing:13.488480pt;}
.wscf{word-spacing:13.536000pt;}
.ws126{word-spacing:13.680000pt;}
.ws102{word-spacing:13.776000pt;}
.ws3a{word-spacing:13.968000pt;}
.wsa9{word-spacing:14.016480pt;}
.ws127{word-spacing:14.064000pt;}
.ws6c{word-spacing:14.208480pt;}
.ws128{word-spacing:14.304000pt;}
.ws4a{word-spacing:14.592000pt;}
.ws8a{word-spacing:14.639520pt;}
.ws123{word-spacing:14.832480pt;}
.ws132{word-spacing:14.976000pt;}
.wsad{word-spacing:15.167520pt;}
.ws124{word-spacing:15.312000pt;}
.ws115{word-spacing:15.552480pt;}
.ws105{word-spacing:15.887520pt;}
.wsda{word-spacing:15.983520pt;}
.ws98{word-spacing:16.224000pt;}
.wsd2{word-spacing:16.368000pt;}
.ws11d{word-spacing:16.800480pt;}
.wsde{word-spacing:16.896480pt;}
.wsc7{word-spacing:17.088000pt;}
.wsbb{word-spacing:17.327520pt;}
.ws8f{word-spacing:17.376000pt;}
.wse3{word-spacing:17.568000pt;}
.ws12b{word-spacing:17.664000pt;}
.wsd9{word-spacing:17.904000pt;}
.wsbc{word-spacing:18.624000pt;}
.wseb{word-spacing:18.672480pt;}
.wsc5{word-spacing:18.720000pt;}
.wsdb{word-spacing:18.768480pt;}
.wse4{word-spacing:18.864480pt;}
.ws31{word-spacing:18.960000pt;}
.ws130{word-spacing:19.008000pt;}
.wsa4{word-spacing:19.968000pt;}
.wsfb{word-spacing:20.016480pt;}
.ws11e{word-spacing:20.400000pt;}
.ws66{word-spacing:20.784000pt;}
.ws4c{word-spacing:21.167520pt;}
.wscd{word-spacing:21.504000pt;}
.ws21{word-spacing:21.791520pt;}
.ws94{word-spacing:22.656000pt;}
.wsd0{word-spacing:25.199520pt;}
.ws2c{word-spacing:25.536000pt;}
.wsb9{word-spacing:26.543520pt;}
.wsee{word-spacing:27.167520pt;}
.ws5a{word-spacing:54.720000pt;}
.wsf2{word-spacing:1456.554667pt;}
._1e{margin-left:-1224.428640pt;}
._1d{margin-left:-1053.788640pt;}
._1b{margin-left:-850.702080pt;}
._1c{margin-left:-770.830560pt;}
._1a{margin-left:-445.341120pt;}
._19{margin-left:-442.848000pt;}
._18{margin-left:-210.718560pt;}
._f{margin-left:-52.480000pt;}
._11{margin-left:-42.640000pt;}
._24{margin-left:-38.810667pt;}
._2d{margin-left:-35.124800pt;}
._30{margin-left:-33.459840pt;}
._2e{margin-left:-31.804907pt;}
._2c{margin-left:-30.528000pt;}
._28{margin-left:-29.568000pt;}
._26{margin-left:-26.637120pt;}
._20{margin-left:-24.719040pt;}
._31{margin-left:-23.683733pt;}
._2b{margin-left:-22.320000pt;}
._21{margin-left:-21.165600pt;}
._22{margin-left:-19.440000pt;}
._27{margin-left:-17.943680pt;}
._6{margin-left:-16.640000pt;}
._29{margin-left:-15.554400pt;}
._1f{margin-left:-13.919040pt;}
._23{margin-left:-12.650667pt;}
._14{margin-left:-11.400000pt;}
._10{margin-left:-10.240000pt;}
._32{margin-left:-9.264000pt;}
._e{margin-left:-8.374880pt;}
._34{margin-left:-7.400400pt;}
._c{margin-left:-6.316267pt;}
._9{margin-left:-4.860267pt;}
._2{margin-left:-3.957333pt;}
._8{margin-left:-2.565333pt;}
._0{margin-left:-1.582933pt;}
._13{width:1.430933pt;}
._15{width:2.565333pt;}
._16{width:3.457600pt;}
._7{width:4.486187pt;}
._25{width:6.288000pt;}
._2a{width:7.824000pt;}
._1{width:10.244267pt;}
._12{width:11.653333pt;}
._a{width:12.826667pt;}
._3{width:16.640000pt;}
._b{width:18.026667pt;}
._33{width:19.200000pt;}
._d{width:21.366560pt;}
._2f{width:22.737600pt;}
._5{width:31.367520pt;}
._4{width:34.668693pt;}
._17{width:250.737600pt;}
.fse{font-size:26.520000pt;}
.fsc{font-size:28.288000pt;}
.fsa{font-size:31.824000pt;}
.fs8{font-size:33.592000pt;}
.fs6{font-size:34.666667pt;}
.fsd{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:45.968000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsb{font-size:51.448276pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:38.573867pt;}
.y1{bottom:38.574400pt;}
.ye7{bottom:38.584533pt;}
.y2{bottom:38.587733pt;}
.y27d{bottom:61.185200pt;}
.yaa{bottom:61.186667pt;}
.ye6{bottom:61.212133pt;}
.y55{bottom:61.238400pt;}
.y311{bottom:61.345067pt;}
.y23d{bottom:61.390400pt;}
.y16f{bottom:61.489200pt;}
.y52{bottom:61.491733pt;}
.y131{bottom:61.565200pt;}
.y1fe{bottom:61.878533pt;}
.y1c1{bottom:62.027867pt;}
.y2c8{bottom:62.753067pt;}
.yf5{bottom:65.010133pt;}
.y184{bottom:65.028800pt;}
.y17a{bottom:65.031467pt;}
.y1e{bottom:65.792667pt;}
.y310{bottom:73.451733pt;}
.y2c7{bottom:74.817067pt;}
.y27c{bottom:75.849200pt;}
.ya9{bottom:75.850667pt;}
.ye5{bottom:75.876133pt;}
.y54{bottom:75.906400pt;}
.y16e{bottom:76.177200pt;}
.y51{bottom:76.235733pt;}
.y23c{bottom:76.282400pt;}
.y130{bottom:76.313200pt;}
.y1c0{bottom:76.715867pt;}
.y1fd{bottom:76.830533pt;}
.y1d{bottom:77.792667pt;}
.yf4{bottom:79.674133pt;}
.y183{bottom:79.692800pt;}
.y179{bottom:79.695467pt;}
.y30f{bottom:85.558400pt;}
.y2c6{bottom:86.881067pt;}
.y1c{bottom:89.792667pt;}
.y27b{bottom:90.513200pt;}
.ya8{bottom:90.514667pt;}
.ye4{bottom:90.540133pt;}
.y53{bottom:90.574400pt;}
.y16d{bottom:90.865200pt;}
.y50{bottom:90.979733pt;}
.y12f{bottom:91.061200pt;}
.y23b{bottom:91.174400pt;}
.y1bf{bottom:91.403867pt;}
.y1fc{bottom:91.782533pt;}
.y182{bottom:94.356800pt;}
.y178{bottom:94.359467pt;}
.yf3{bottom:94.367467pt;}
.y30e{bottom:97.665067pt;}
.y2c5{bottom:98.945067pt;}
.y1b{bottom:101.792667pt;}
.y27a{bottom:105.177200pt;}
.ya7{bottom:105.178667pt;}
.ye3{bottom:105.204133pt;}
.y16c{bottom:105.553200pt;}
.y4f{bottom:105.723733pt;}
.y12e{bottom:105.809200pt;}
.y23a{bottom:106.066400pt;}
.y1be{bottom:106.091867pt;}
.y1fb{bottom:106.734533pt;}
.y181{bottom:109.020800pt;}
.y177{bottom:109.023467pt;}
.yf2{bottom:109.031467pt;}
.y2c4{bottom:111.009067pt;}
.y1a{bottom:113.792667pt;}
.y279{bottom:119.841200pt;}
.ya6{bottom:119.842667pt;}
.ye2{bottom:119.868133pt;}
.y16b{bottom:120.241200pt;}
.y30d{bottom:120.438400pt;}
.y4e{bottom:120.467733pt;}
.y12d{bottom:120.557200pt;}
.y1bd{bottom:120.779867pt;}
.y239{bottom:120.958400pt;}
.y1fa{bottom:121.686533pt;}
.y2c3{bottom:123.073067pt;}
.y180{bottom:123.684800pt;}
.y176{bottom:123.687467pt;}
.yf1{bottom:123.695467pt;}
.y19{bottom:125.792667pt;}
.y30c{bottom:132.545067pt;}
.y278{bottom:134.505200pt;}
.ya5{bottom:134.506667pt;}
.ye1{bottom:134.532133pt;}
.y16a{bottom:134.929200pt;}
.y2c2{bottom:135.137067pt;}
.y4d{bottom:135.211733pt;}
.y12c{bottom:135.305200pt;}
.y1bc{bottom:135.467867pt;}
.y238{bottom:135.850400pt;}
.y1f9{bottom:136.638533pt;}
.y18{bottom:137.792667pt;}
.y17f{bottom:138.348800pt;}
.y175{bottom:138.351467pt;}
.yf0{bottom:138.359467pt;}
.y6b{bottom:142.394400pt;}
.y30b{bottom:144.651733pt;}
.y39b{bottom:146.767733pt;}
.y2c1{bottom:147.201067pt;}
.y354{bottom:147.284400pt;}
.y277{bottom:149.169200pt;}
.ya4{bottom:149.170667pt;}
.ye0{bottom:149.196133pt;}
.y169{bottom:149.617200pt;}
.y4c{bottom:149.955733pt;}
.y12b{bottom:150.053200pt;}
.y1bb{bottom:150.155867pt;}
.y237{bottom:150.742400pt;}
.y1f8{bottom:151.590533pt;}
.y17e{bottom:153.012800pt;}
.y174{bottom:153.015467pt;}
.yef{bottom:153.023467pt;}
.y30a{bottom:156.758400pt;}
.y6a{bottom:157.062400pt;}
.y39a{bottom:158.767733pt;}
.y353{bottom:159.374400pt;}
.y34{bottom:159.463333pt;}
.y276{bottom:163.833200pt;}
.ya3{bottom:163.842667pt;}
.ydf{bottom:163.860133pt;}
.y168{bottom:164.305200pt;}
.y2c0{bottom:164.598400pt;}
.y4b{bottom:164.699733pt;}
.y12a{bottom:164.801200pt;}
.y1ba{bottom:165.073200pt;}
.y236{bottom:165.634400pt;}
.y1f7{bottom:166.542533pt;}
.y17d{bottom:167.676800pt;}
.y173{bottom:167.679467pt;}
.yee{bottom:167.687467pt;}
.y309{bottom:168.865067pt;}
.y399{bottom:170.767733pt;}
.y33{bottom:171.463333pt;}
.y352{bottom:171.464400pt;}
.y69{bottom:171.730400pt;}
.y2bf{bottom:176.662400pt;}
.y275{bottom:178.497200pt;}
.ya2{bottom:178.506667pt;}
.yde{bottom:178.601467pt;}
.y167{bottom:178.993200pt;}
.y4a{bottom:179.443733pt;}
.y129{bottom:179.549200pt;}
.y1b9{bottom:179.761200pt;}
.y235{bottom:180.537067pt;}
.y308{bottom:180.971733pt;}
.y1f6{bottom:181.494533pt;}
.y17c{bottom:182.340800pt;}
.y172{bottom:182.343467pt;}
.yed{bottom:182.351467pt;}
.y398{bottom:182.767733pt;}
.y32{bottom:183.463333pt;}
.y351{bottom:183.554400pt;}
.y68{bottom:186.398400pt;}
.y2be{bottom:188.726400pt;}
.y274{bottom:193.161200pt;}
.ya1{bottom:193.170667pt;}
.ydd{bottom:193.265467pt;}
.y166{bottom:193.681200pt;}
.y49{bottom:194.187733pt;}
.y128{bottom:194.297200pt;}
.y1b8{bottom:194.449200pt;}
.y397{bottom:194.767733pt;}
.y234{bottom:195.429067pt;}
.y31{bottom:195.463333pt;}
.y350{bottom:195.644400pt;}
.y1f5{bottom:196.446533pt;}
.y17b{bottom:197.004800pt;}
.y171{bottom:197.007467pt;}
.yec{bottom:197.015467pt;}
.y307{bottom:198.411733pt;}
.y2bd{bottom:200.790400pt;}
.y67{bottom:201.066400pt;}
.y396{bottom:206.767733pt;}
.y30{bottom:207.463333pt;}
.y34f{bottom:207.734400pt;}
.y273{bottom:207.825200pt;}
.ya0{bottom:207.840000pt;}
.ydc{bottom:207.929467pt;}
.y165{bottom:208.369200pt;}
.y48{bottom:208.931733pt;}
.y127{bottom:209.037867pt;}
.y1b7{bottom:209.137200pt;}
.y233{bottom:210.321067pt;}
.y306{bottom:210.518400pt;}
.y1f4{bottom:211.398533pt;}
.y170{bottom:211.671467pt;}
.yeb{bottom:211.679467pt;}
.y2bc{bottom:212.854400pt;}
.y66{bottom:215.734400pt;}
.y395{bottom:218.767733pt;}
.y2f{bottom:219.463333pt;}
.y34e{bottom:219.824400pt;}
.y272{bottom:222.489200pt;}
.y9f{bottom:222.504000pt;}
.ydb{bottom:222.593467pt;}
.y305{bottom:222.625067pt;}
.y164{bottom:223.057200pt;}
.y47{bottom:223.675733pt;}
.y1b6{bottom:223.825200pt;}
.y126{bottom:224.377200pt;}
.y2bb{bottom:224.918400pt;}
.y232{bottom:225.213067pt;}
.yea{bottom:226.343467pt;}
.y1f3{bottom:226.350533pt;}
.y394{bottom:230.767733pt;}
.y34d{bottom:231.914400pt;}
.y65{bottom:234.391067pt;}
.y304{bottom:234.731733pt;}
.y2ba{bottom:236.982400pt;}
.y271{bottom:237.153200pt;}
.y9e{bottom:237.173333pt;}
.yda{bottom:237.257467pt;}
.y163{bottom:237.745200pt;}
.y46{bottom:238.419733pt;}
.y1b5{bottom:238.513200pt;}
.y231{bottom:240.105067pt;}
.ye9{bottom:241.007467pt;}
.y1f2{bottom:241.302533pt;}
.y393{bottom:242.767733pt;}
.y34c{bottom:244.004400pt;}
.y303{bottom:246.838400pt;}
.y2b9{bottom:249.046400pt;}
.y64{bottom:249.730400pt;}
.y270{bottom:251.833200pt;}
.y9d{bottom:251.837333pt;}
.yd9{bottom:251.921467pt;}
.y162{bottom:252.433200pt;}
.y45{bottom:253.163733pt;}
.y1b4{bottom:253.201200pt;}
.y392{bottom:254.767733pt;}
.y230{bottom:254.997067pt;}
.ye8{bottom:255.671467pt;}
.y34b{bottom:256.094400pt;}
.y1f1{bottom:256.254533pt;}
.y302{bottom:258.945067pt;}
.y125{bottom:265.293200pt;}
.y2b8{bottom:266.443733pt;}
.y26f{bottom:266.497200pt;}
.y9c{bottom:266.509333pt;}
.yd8{bottom:266.585467pt;}
.y391{bottom:266.767733pt;}
.y161{bottom:267.121200pt;}
.y1b3{bottom:267.889200pt;}
.y44{bottom:267.907733pt;}
.y34a{bottom:268.184400pt;}
.y22f{bottom:269.889067pt;}
.y2e{bottom:270.823333pt;}
.y301{bottom:271.051733pt;}
.y1f0{bottom:271.206533pt;}
.y63{bottom:273.062400pt;}
.y2b7{bottom:278.507733pt;}
.y390{bottom:278.767733pt;}
.y124{bottom:280.041200pt;}
.y349{bottom:280.274400pt;}
.y26e{bottom:281.161200pt;}
.y9b{bottom:281.173333pt;}
.yd7{bottom:281.249467pt;}
.y160{bottom:281.809200pt;}
.y1b2{bottom:282.577200pt;}
.y43{bottom:282.651733pt;}
.y2d{bottom:282.823333pt;}
.y300{bottom:283.158400pt;}
.y22e{bottom:284.783733pt;}
.y1ef{bottom:286.158533pt;}
.y62{bottom:287.730400pt;}
.y2b6{bottom:290.571733pt;}
.y38f{bottom:290.767733pt;}
.y348{bottom:292.364400pt;}
.y123{bottom:294.789200pt;}
.y2ff{bottom:295.265067pt;}
.y26d{bottom:295.825200pt;}
.y9a{bottom:295.837333pt;}
.yd6{bottom:295.913467pt;}
.y15f{bottom:296.497200pt;}
.y1b1{bottom:297.265200pt;}
.y42{bottom:297.395733pt;}
.y22d{bottom:299.675733pt;}
.y1ee{bottom:301.110533pt;}
.y61{bottom:302.398400pt;}
.y2b5{bottom:302.635733pt;}
.y38e{bottom:302.767733pt;}
.y347{bottom:304.454400pt;}
.y122{bottom:309.535867pt;}
.y26c{bottom:310.489200pt;}
.y99{bottom:310.501333pt;}
.yd5{bottom:310.577467pt;}
.y15e{bottom:311.185200pt;}
.y1b0{bottom:311.953200pt;}
.y41{bottom:312.139733pt;}
.y2fe{bottom:312.705067pt;}
.y22c{bottom:314.573067pt;}
.y2b4{bottom:314.699733pt;}
.y38d{bottom:314.767733pt;}
.y1ed{bottom:316.062533pt;}
.y346{bottom:316.544400pt;}
.y60{bottom:317.066400pt;}
.y121{bottom:324.281200pt;}
.y2fd{bottom:324.811733pt;}
.y26b{bottom:325.153200pt;}
.y98{bottom:325.176000pt;}
.yd4{bottom:325.241467pt;}
.y15d{bottom:325.873200pt;}
.y1af{bottom:326.641200pt;}
.y2b3{bottom:326.763733pt;}
.y38c{bottom:326.767733pt;}
.y40{bottom:326.883733pt;}
.y345{bottom:328.634400pt;}
.y22b{bottom:329.465067pt;}
.y1ec{bottom:331.014533pt;}
.y5f{bottom:331.734400pt;}
.y38b{bottom:338.767733pt;}
.y2b2{bottom:338.827733pt;}
.y120{bottom:339.029200pt;}
.y26a{bottom:339.817200pt;}
.y97{bottom:339.840000pt;}
.yd3{bottom:339.905467pt;}
.y15c{bottom:340.561200pt;}
.y344{bottom:340.724400pt;}
.y2c{bottom:341.068133pt;}
.y1ae{bottom:341.329200pt;}
.y3f{bottom:341.627733pt;}
.y2fc{bottom:342.251733pt;}
.y22a{bottom:344.357067pt;}
.y1eb{bottom:345.966533pt;}
.y5e{bottom:350.397067pt;}
.y38a{bottom:350.767733pt;}
.y2b1{bottom:350.891733pt;}
.y343{bottom:352.814400pt;}
.y2b{bottom:353.068133pt;}
.y11f{bottom:353.769200pt;}
.y269{bottom:354.489200pt;}
.y96{bottom:354.504000pt;}
.yd2{bottom:354.569467pt;}
.y15b{bottom:355.249200pt;}
.y1ad{bottom:356.017200pt;}
.y3e{bottom:356.371733pt;}
.y229{bottom:359.249067pt;}
.y2fb{bottom:359.691733pt;}
.y1ea{bottom:360.918533pt;}
.y389{bottom:362.767733pt;}
.y2b0{bottom:362.955733pt;}
.y342{bottom:364.904400pt;}
.y11e{bottom:368.517200pt;}
.y268{bottom:369.153200pt;}
.y95{bottom:369.178667pt;}
.yd1{bottom:369.233467pt;}
.y15a{bottom:369.937200pt;}
.y1ac{bottom:370.705200pt;}
.y3d{bottom:371.115733pt;}
.y2fa{bottom:371.798400pt;}
.y5d{bottom:373.729067pt;}
.y228{bottom:374.141067pt;}
.y388{bottom:374.767733pt;}
.y2af{bottom:375.019733pt;}
.y1e9{bottom:375.753200pt;}
.y341{bottom:376.994400pt;}
.y2a{bottom:377.068133pt;}
.y11d{bottom:383.265200pt;}
.y267{bottom:383.825200pt;}
.y94{bottom:383.842667pt;}
.yd0{bottom:383.897467pt;}
.y2f9{bottom:383.905067pt;}
.y159{bottom:384.625200pt;}
.y1ab{bottom:385.393200pt;}
.y3c{bottom:385.859733pt;}
.y387{bottom:386.767733pt;}
.y2ae{bottom:387.083733pt;}
.y5c{bottom:388.397067pt;}
.y227{bottom:389.037067pt;}
.y29{bottom:389.068133pt;}
.y340{bottom:389.084400pt;}
.y1e8{bottom:390.705200pt;}
.y2f8{bottom:396.011733pt;}
.y11c{bottom:398.013200pt;}
.y266{bottom:398.489200pt;}
.y93{bottom:398.506667pt;}
.ycf{bottom:398.561467pt;}
.y386{bottom:398.767733pt;}
.y2ad{bottom:399.147733pt;}
.y158{bottom:399.313200pt;}
.y1aa{bottom:400.081200pt;}
.y3b{bottom:400.603733pt;}
.y33f{bottom:401.174400pt;}
.y5b{bottom:403.065067pt;}
.y226{bottom:403.929067pt;}
.y1e7{bottom:405.657200pt;}
.y2f7{bottom:408.118400pt;}
.y385{bottom:410.767733pt;}
.y11b{bottom:412.761200pt;}
.y28{bottom:413.068133pt;}
.y265{bottom:413.153200pt;}
.y92{bottom:413.170667pt;}
.yce{bottom:413.225467pt;}
.y33e{bottom:413.264400pt;}
.y157{bottom:414.001200pt;}
.y1a9{bottom:414.769200pt;}
.y3a{bottom:415.347733pt;}
.y5a{bottom:417.733067pt;}
.y225{bottom:418.825067pt;}
.y1e6{bottom:420.609200pt;}
.y2ac{bottom:421.878400pt;}
.y384{bottom:422.767733pt;}
.y27{bottom:425.068133pt;}
.y33d{bottom:425.354400pt;}
.y2f6{bottom:425.558400pt;}
.y11a{bottom:427.509200pt;}
.y264{bottom:427.817200pt;}
.y91{bottom:427.858667pt;}
.ycd{bottom:427.889467pt;}
.y156{bottom:428.689200pt;}
.y1a8{bottom:429.457200pt;}
.y39{bottom:430.091733pt;}
.y59{bottom:432.398400pt;}
.y224{bottom:433.717067pt;}
.y383{bottom:434.767733pt;}
.y2ab{bottom:435.275733pt;}
.y1e5{bottom:435.561200pt;}
.y26{bottom:437.068133pt;}
.y33c{bottom:437.444400pt;}
.y119{bottom:442.247867pt;}
.y263{bottom:442.505200pt;}
.y90{bottom:442.522667pt;}
.ycc{bottom:442.553467pt;}
.y2f5{bottom:442.998400pt;}
.y155{bottom:443.393200pt;}
.y1a7{bottom:444.145200pt;}
.y38{bottom:444.835733pt;}
.y382{bottom:446.767733pt;}
.y58{bottom:447.066400pt;}
.y223{bottom:448.609067pt;}
.y2aa{bottom:448.673067pt;}
.y33b{bottom:449.534400pt;}
.y1e4{bottom:450.513200pt;}
.y2f4{bottom:455.105067pt;}
.y118{bottom:456.995867pt;}
.y262{bottom:457.169200pt;}
.y8f{bottom:457.186667pt;}
.ycb{bottom:457.217467pt;}
.y154{bottom:458.081200pt;}
.y381{bottom:458.767733pt;}
.y1a6{bottom:458.833200pt;}
.y37{bottom:459.579733pt;}
.y33a{bottom:461.624400pt;}
.y57{bottom:461.734400pt;}
.y2a9{bottom:462.070400pt;}
.y222{bottom:463.505067pt;}
.y25{bottom:465.068133pt;}
.y1e3{bottom:465.465200pt;}
.y380{bottom:470.954400pt;}
.y117{bottom:471.743867pt;}
.y261{bottom:471.833200pt;}
.y8e{bottom:471.850667pt;}
.yca{bottom:471.881467pt;}
.y2f3{bottom:472.545067pt;}
.y153{bottom:472.769200pt;}
.y1a5{bottom:473.521200pt;}
.y339{bottom:473.714400pt;}
.y36{bottom:474.323733pt;}
.y24{bottom:477.068133pt;}
.y221{bottom:478.397067pt;}
.y56{bottom:480.401067pt;}
.y1e2{bottom:480.417200pt;}
.y37f{bottom:482.954400pt;}
.y2a8{bottom:484.267733pt;}
.y338{bottom:485.804400pt;}
.y116{bottom:486.491867pt;}
.y260{bottom:486.497200pt;}
.y8d{bottom:486.514667pt;}
.yc9{bottom:486.545467pt;}
.y152{bottom:487.457200pt;}
.y1a4{bottom:488.209200pt;}
.y35{bottom:489.067733pt;}
.y2f2{bottom:489.985067pt;}
.y220{bottom:493.289067pt;}
.y37e{bottom:494.954400pt;}
.y1e1{bottom:495.369200pt;}
.y2a7{bottom:496.334400pt;}
.y23{bottom:497.068133pt;}
.y337{bottom:497.894400pt;}
.y25f{bottom:501.161200pt;}
.y8c{bottom:501.178667pt;}
.yc8{bottom:501.209467pt;}
.y115{bottom:501.239867pt;}
.y2f1{bottom:502.091733pt;}
.y151{bottom:502.138533pt;}
.y1a3{bottom:502.897200pt;}
.y37d{bottom:506.954400pt;}
.y21f{bottom:508.186400pt;}
.y2a6{bottom:508.401067pt;}
.y22{bottom:509.068133pt;}
.y336{bottom:509.984400pt;}
.y1e0{bottom:510.321200pt;}
.y2f0{bottom:514.198400pt;}
.y25e{bottom:515.825200pt;}
.y8b{bottom:515.842667pt;}
.yc7{bottom:515.873467pt;}
.y114{bottom:515.987867pt;}
.y150{bottom:517.477867pt;}
.y1a2{bottom:517.585200pt;}
.y37c{bottom:518.954400pt;}
.y2a5{bottom:520.467733pt;}
.y21{bottom:521.068133pt;}
.y335{bottom:522.074400pt;}
.y21e{bottom:523.078400pt;}
.y1df{bottom:525.273200pt;}
.y2ef{bottom:526.305067pt;}
.y2a4{bottom:527.737067pt;}
.y25d{bottom:530.489200pt;}
.y8a{bottom:530.506667pt;}
.yc6{bottom:530.537467pt;}
.y113{bottom:530.735867pt;}
.y37b{bottom:530.954400pt;}
.y1a1{bottom:532.273200pt;}
.y14f{bottom:532.817200pt;}
.y20{bottom:533.068133pt;}
.y334{bottom:534.164400pt;}
.y21d{bottom:537.970400pt;}
.y2ee{bottom:538.411733pt;}
.y1de{bottom:540.225200pt;}
.y17{bottom:541.734400pt;}
.y37a{bottom:542.954400pt;}
.y2a3{bottom:544.601067pt;}
.y1f{bottom:545.068133pt;}
.y25c{bottom:545.153200pt;}
.y89{bottom:545.170667pt;}
.yc5{bottom:545.201467pt;}
.y112{bottom:545.483867pt;}
.y333{bottom:546.254400pt;}
.y1a0{bottom:546.961200pt;}
.y2ed{bottom:550.518400pt;}
.y2a2{bottom:551.870400pt;}
.y21c{bottom:552.862400pt;}
.y379{bottom:554.954400pt;}
.y1dd{bottom:555.177200pt;}
.y332{bottom:558.344400pt;}
.y25b{bottom:559.825200pt;}
.y88{bottom:559.864000pt;}
.yc4{bottom:559.865467pt;}
.y111{bottom:560.229200pt;}
.y19f{bottom:561.649200pt;}
.y16{bottom:562.534400pt;}
.y2ec{bottom:562.625067pt;}
.y378{bottom:566.954400pt;}
.y21b{bottom:567.754400pt;}
.y2a1{bottom:568.734400pt;}
.y1dc{bottom:570.129200pt;}
.y331{bottom:570.434400pt;}
.y14e{bottom:573.801200pt;}
.y25a{bottom:574.489200pt;}
.y87{bottom:574.528000pt;}
.yc3{bottom:574.529467pt;}
.y2eb{bottom:574.731733pt;}
.y110{bottom:574.969200pt;}
.y2a0{bottom:576.003733pt;}
.y19e{bottom:576.337200pt;}
.y377{bottom:578.954400pt;}
.y330{bottom:582.524400pt;}
.y21a{bottom:582.649067pt;}
.y15{bottom:583.334400pt;}
.y1db{bottom:585.081200pt;}
.y2ea{bottom:586.838400pt;}
.y14d{bottom:588.489200pt;}
.y259{bottom:589.153200pt;}
.y86{bottom:589.192000pt;}
.yc2{bottom:589.193467pt;}
.y10f{bottom:589.717200pt;}
.y376{bottom:590.954400pt;}
.y19d{bottom:591.025200pt;}
.y29f{bottom:592.867733pt;}
.y32f{bottom:594.614400pt;}
.y219{bottom:597.543733pt;}
.y2e9{bottom:598.945067pt;}
.y1da{bottom:600.033200pt;}
.y29e{bottom:600.137067pt;}
.y375{bottom:602.954400pt;}
.y14c{bottom:603.177200pt;}
.y258{bottom:603.819867pt;}
.y85{bottom:603.856000pt;}
.yc1{bottom:603.860133pt;}
.y14{bottom:604.134400pt;}
.y10e{bottom:604.465200pt;}
.y19c{bottom:605.713200pt;}
.y32e{bottom:606.704400pt;}
.y2e8{bottom:611.051733pt;}
.y218{bottom:612.435733pt;}
.y374{bottom:614.954400pt;}
.y1d9{bottom:614.985200pt;}
.y29d{bottom:617.001067pt;}
.y14b{bottom:617.865200pt;}
.y257{bottom:618.494533pt;}
.y84{bottom:618.520000pt;}
.yc0{bottom:618.524133pt;}
.y32d{bottom:618.794400pt;}
.y10d{bottom:619.213200pt;}
.y19b{bottom:620.401200pt;}
.y2e7{bottom:623.158400pt;}
.y13{bottom:624.931733pt;}
.y373{bottom:626.954400pt;}
.y217{bottom:627.330400pt;}
.y29c{bottom:629.067733pt;}
.y1d8{bottom:629.937200pt;}
.y32c{bottom:630.884400pt;}
.y14a{bottom:632.553200pt;}
.y256{bottom:633.158533pt;}
.ybf{bottom:633.178800pt;}
.y83{bottom:633.184000pt;}
.y10c{bottom:633.961200pt;}
.y19a{bottom:635.089200pt;}
.y2e6{bottom:635.265067pt;}
.y29b{bottom:636.337067pt;}
.y372{bottom:638.954400pt;}
.y216{bottom:642.222400pt;}
.y32b{bottom:642.974400pt;}
.y1d7{bottom:644.889200pt;}
.y12{bottom:644.934400pt;}
.y149{bottom:647.241200pt;}
.y2e5{bottom:647.371733pt;}
.y255{bottom:647.822533pt;}
.y82{bottom:647.848000pt;}
.ybe{bottom:648.518133pt;}
.y10b{bottom:648.709200pt;}
.y199{bottom:649.777200pt;}
.y371{bottom:650.954400pt;}
.y29a{bottom:653.201067pt;}
.y32a{bottom:655.064400pt;}
.y215{bottom:657.117067pt;}
.y2e4{bottom:659.478400pt;}
.y1d6{bottom:659.841200pt;}
.y148{bottom:661.929200pt;}
.y254{bottom:662.486533pt;}
.y81{bottom:662.512000pt;}
.y370{bottom:662.954400pt;}
.y10a{bottom:663.446533pt;}
.ybd{bottom:663.857467pt;}
.y198{bottom:664.465200pt;}
.y299{bottom:665.267733pt;}
.y11{bottom:665.734400pt;}
.y329{bottom:667.154400pt;}
.y2e3{bottom:671.585067pt;}
.y214{bottom:672.009067pt;}
.y298{bottom:672.537067pt;}
.y1d5{bottom:674.793200pt;}
.y36f{bottom:674.954400pt;}
.y147{bottom:676.617200pt;}
.y253{bottom:677.161200pt;}
.y80{bottom:677.176000pt;}
.y109{bottom:678.194533pt;}
.y197{bottom:679.153200pt;}
.y328{bottom:679.244400pt;}
.y2e2{bottom:683.691733pt;}
.y10{bottom:686.531733pt;}
.y213{bottom:686.903733pt;}
.y36e{bottom:686.954400pt;}
.y297{bottom:689.401067pt;}
.y1d4{bottom:689.745200pt;}
.y146{bottom:691.305200pt;}
.y327{bottom:691.334400pt;}
.y252{bottom:691.825200pt;}
.y7f{bottom:691.840000pt;}
.y108{bottom:692.942533pt;}
.y196{bottom:693.841200pt;}
.y2e1{bottom:695.798400pt;}
.ybc{bottom:697.402267pt;}
.y36d{bottom:698.954400pt;}
.y296{bottom:701.467733pt;}
.y212{bottom:701.795733pt;}
.y326{bottom:703.424400pt;}
.y1d3{bottom:704.686533pt;}
.y145{bottom:705.993200pt;}
.y251{bottom:706.489200pt;}
.y7e{bottom:706.504000pt;}
.yf{bottom:706.534400pt;}
.y107{bottom:707.690533pt;}
.y2e0{bottom:707.905067pt;}
.y195{bottom:708.529200pt;}
.y295{bottom:708.737067pt;}
.y36c{bottom:710.954400pt;}
.ybb{bottom:712.066267pt;}
.y325{bottom:715.514400pt;}
.y211{bottom:716.690400pt;}
.y1d2{bottom:719.638533pt;}
.y2df{bottom:720.011733pt;}
.y144{bottom:720.681200pt;}
.y250{bottom:721.153200pt;}
.y7d{bottom:721.178667pt;}
.y106{bottom:722.438533pt;}
.y36b{bottom:722.954400pt;}
.y194{bottom:723.217200pt;}
.y294{bottom:725.601067pt;}
.yba{bottom:726.732933pt;}
.ye{bottom:727.334400pt;}
.y324{bottom:727.604400pt;}
.y210{bottom:731.582400pt;}
.y2de{bottom:732.118400pt;}
.y293{bottom:732.870400pt;}
.y1d1{bottom:734.590533pt;}
.y36a{bottom:734.954400pt;}
.y143{bottom:735.369200pt;}
.y24f{bottom:735.825200pt;}
.y7c{bottom:735.842667pt;}
.y105{bottom:737.186533pt;}
.y193{bottom:737.905200pt;}
.y323{bottom:739.694400pt;}
.y2dd{bottom:744.225067pt;}
.y20f{bottom:746.478400pt;}
.y369{bottom:746.954400pt;}
.yd{bottom:748.131733pt;}
.y1d0{bottom:749.531200pt;}
.y292{bottom:749.734400pt;}
.y142{bottom:750.137200pt;}
.y24e{bottom:750.489200pt;}
.y7b{bottom:750.506667pt;}
.y322{bottom:751.784400pt;}
.y104{bottom:751.934533pt;}
.y192{bottom:752.593200pt;}
.y2dc{bottom:756.331733pt;}
.y291{bottom:757.003733pt;}
.y368{bottom:758.954400pt;}
.yb9{bottom:760.291200pt;}
.y20e{bottom:761.370400pt;}
.y321{bottom:763.874400pt;}
.y141{bottom:764.825200pt;}
.y1cf{bottom:764.870533pt;}
.y24d{bottom:765.153200pt;}
.y7a{bottom:765.170667pt;}
.y103{bottom:766.682533pt;}
.y191{bottom:767.281200pt;}
.yc{bottom:768.131733pt;}
.y2db{bottom:768.438400pt;}
.y367{bottom:770.954400pt;}
.y290{bottom:773.867733pt;}
.yb8{bottom:774.955200pt;}
.y320{bottom:775.964400pt;}
.y20d{bottom:776.262400pt;}
.y140{bottom:779.513200pt;}
.y24c{bottom:779.827867pt;}
.y79{bottom:779.837333pt;}
.y2da{bottom:780.545067pt;}
.y28f{bottom:781.139733pt;}
.y102{bottom:781.430533pt;}
.y190{bottom:781.969200pt;}
.y366{bottom:782.954400pt;}
.y31f{bottom:788.054400pt;}
.yb{bottom:788.131733pt;}
.yb7{bottom:789.619200pt;}
.y20c{bottom:791.155733pt;}
.y2d9{bottom:792.651733pt;}
.y28e{bottom:793.203733pt;}
.y13f{bottom:794.201200pt;}
.y24b{bottom:794.491867pt;}
.y78{bottom:794.514667pt;}
.y365{bottom:794.954400pt;}
.y101{bottom:796.171200pt;}
.y18f{bottom:796.657200pt;}
.y31e{bottom:800.144400pt;}
.yb6{bottom:804.283200pt;}
.y2d8{bottom:804.758400pt;}
.y1ce{bottom:805.763867pt;}
.y20b{bottom:806.049067pt;}
.y364{bottom:806.954400pt;}
.ya{bottom:808.131733pt;}
.y13e{bottom:808.889200pt;}
.y24a{bottom:809.155867pt;}
.y77{bottom:809.178667pt;}
.y28d{bottom:810.067733pt;}
.y18e{bottom:811.344533pt;}
.y100{bottom:811.510533pt;}
.y31d{bottom:812.234400pt;}
.y2d7{bottom:816.865067pt;}
.yb5{bottom:818.947200pt;}
.y363{bottom:818.954400pt;}
.y1cd{bottom:820.715867pt;}
.y20a{bottom:820.942400pt;}
.y28c{bottom:822.134400pt;}
.y13d{bottom:823.577200pt;}
.y249{bottom:823.819867pt;}
.y76{bottom:823.842667pt;}
.y31c{bottom:824.324400pt;}
.y18d{bottom:826.683867pt;}
.y9{bottom:828.131733pt;}
.y2d6{bottom:828.971733pt;}
.y28b{bottom:829.403733pt;}
.y362{bottom:830.954400pt;}
.yb4{bottom:833.611200pt;}
.y1cc{bottom:835.667867pt;}
.y209{bottom:835.835733pt;}
.y31b{bottom:836.414400pt;}
.y13c{bottom:838.265200pt;}
.y248{bottom:838.483867pt;}
.y75{bottom:838.506667pt;}
.y2d5{bottom:841.078400pt;}
.y361{bottom:842.954400pt;}
.y6c{bottom:846.077053pt;}
.y28a{bottom:846.267733pt;}
.y8{bottom:848.134400pt;}
.yb3{bottom:848.275200pt;}
.y31a{bottom:848.507733pt;}
.y1cb{bottom:850.619867pt;}
.y208{bottom:850.730400pt;}
.yff{bottom:852.425200pt;}
.y13b{bottom:852.953200pt;}
.y247{bottom:853.155867pt;}
.y74{bottom:853.170667pt;}
.y2d4{bottom:853.185067pt;}
.y289{bottom:853.537067pt;}
.y360{bottom:854.954400pt;}
.yb2{bottom:862.935867pt;}
.y2d3{bottom:865.291733pt;}
.y1ca{bottom:865.571867pt;}
.y207{bottom:865.622400pt;}
.y35f{bottom:866.954400pt;}
.yfe{bottom:867.173200pt;}
.y13a{bottom:867.641200pt;}
.y18c{bottom:867.646533pt;}
.y246{bottom:867.819867pt;}
.y73{bottom:867.834667pt;}
.y288{bottom:870.401067pt;}
.y2d2{bottom:877.398400pt;}
.yb1{bottom:878.275200pt;}
.y35e{bottom:878.954400pt;}
.y206{bottom:880.522400pt;}
.y1c9{bottom:880.523867pt;}
.yfd{bottom:881.921200pt;}
.y139{bottom:882.329200pt;}
.y18b{bottom:882.334533pt;}
.y287{bottom:882.467733pt;}
.y245{bottom:882.489200pt;}
.y72{bottom:882.497333pt;}
.y7{bottom:883.601067pt;}
.y319{bottom:889.499733pt;}
.y2d1{bottom:889.505067pt;}
.y286{bottom:889.737067pt;}
.y35d{bottom:890.954400pt;}
.y205{bottom:895.414400pt;}
.y1c8{bottom:895.475867pt;}
.yfc{bottom:896.669200pt;}
.y138{bottom:897.017200pt;}
.y18a{bottom:897.022533pt;}
.y244{bottom:897.153200pt;}
.y318{bottom:901.595733pt;}
.y2d0{bottom:901.611733pt;}
.y35c{bottom:902.954400pt;}
.y285{bottom:906.601067pt;}
.y204{bottom:910.306400pt;}
.y1c7{bottom:910.427867pt;}
.yfb{bottom:911.414533pt;}
.y137{bottom:911.705200pt;}
.y189{bottom:911.710533pt;}
.y243{bottom:911.825200pt;}
.yb0{bottom:911.854667pt;}
.y317{bottom:913.691733pt;}
.y2cf{bottom:913.718400pt;}
.y284{bottom:913.870400pt;}
.y35b{bottom:914.954400pt;}
.y6{bottom:915.601067pt;}
.y203{bottom:925.198400pt;}
.y1c6{bottom:925.379867pt;}
.y316{bottom:925.787733pt;}
.y2ce{bottom:925.825067pt;}
.yfa{bottom:926.162533pt;}
.y136{bottom:926.393200pt;}
.y188{bottom:926.398533pt;}
.y242{bottom:926.489200pt;}
.yaf{bottom:926.518667pt;}
.y35a{bottom:926.954400pt;}
.y283{bottom:930.734400pt;}
.y315{bottom:937.883733pt;}
.y2cd{bottom:937.931733pt;}
.y282{bottom:938.003733pt;}
.y359{bottom:938.954400pt;}
.y202{bottom:940.090400pt;}
.y1c5{bottom:940.331867pt;}
.y71{bottom:940.764000pt;}
.yf9{bottom:940.906533pt;}
.y135{bottom:941.081200pt;}
.y187{bottom:941.086533pt;}
.y241{bottom:941.153200pt;}
.yae{bottom:941.182667pt;}
.y5{bottom:947.601067pt;}
.y314{bottom:949.979733pt;}
.y2cc{bottom:950.038400pt;}
.y358{bottom:950.954400pt;}
.y281{bottom:954.867733pt;}
.y201{bottom:954.982400pt;}
.y1c4{bottom:955.283867pt;}
.y70{bottom:955.432000pt;}
.yf8{bottom:955.654533pt;}
.y134{bottom:955.769200pt;}
.y186{bottom:955.774533pt;}
.y240{bottom:955.822533pt;}
.yad{bottom:955.846667pt;}
.y313{bottom:962.075733pt;}
.y280{bottom:962.137067pt;}
.y2cb{bottom:962.145067pt;}
.y357{bottom:962.954400pt;}
.y200{bottom:969.874400pt;}
.y6f{bottom:970.100000pt;}
.y1c3{bottom:970.235867pt;}
.yf7{bottom:970.402533pt;}
.y133{bottom:970.445200pt;}
.y185{bottom:970.462533pt;}
.y23f{bottom:970.486533pt;}
.yac{bottom:970.510667pt;}
.y312{bottom:974.171733pt;}
.y2ca{bottom:974.251733pt;}
.y356{bottom:974.954400pt;}
.y27f{bottom:979.001067pt;}
.y4{bottom:982.267733pt;}
.y1ff{bottom:984.767733pt;}
.y6e{bottom:984.768000pt;}
.y132{bottom:985.133200pt;}
.yf6{bottom:985.150533pt;}
.y23e{bottom:985.162400pt;}
.yab{bottom:985.174667pt;}
.y1c2{bottom:985.187867pt;}
.y27e{bottom:986.267733pt;}
.y2c9{bottom:986.358400pt;}
.y355{bottom:986.954400pt;}
.y3{bottom:1014.100933pt;}
.h30{height:24.582272pt;}
.h8{height:32.512000pt;}
.h32{height:34.760000pt;}
.h31{height:35.872000pt;}
.hf{height:36.328125pt;}
.h1b{height:36.576000pt;}
.h13{height:36.820312pt;}
.h28{height:36.939862pt;}
.h2{height:37.077333pt;}
.he{height:37.120000pt;}
.h9{height:38.608000pt;}
.h33{height:40.299213pt;}
.ha{height:44.029333pt;}
.h3{height:44.704000pt;}
.h27{height:44.768214pt;}
.h24{height:45.365547pt;}
.h1a{height:45.376214pt;}
.h19{height:45.536747pt;}
.h14{height:45.568214pt;}
.h15{height:45.589547pt;}
.h2f{height:45.600214pt;}
.h25{height:45.621547pt;}
.h10{height:45.632214pt;}
.h2e{height:45.638080pt;}
.h12{height:45.642880pt;}
.h2d{height:45.648214pt;}
.h16{height:45.653547pt;}
.h18{height:45.664214pt;}
.h2c{height:45.669547pt;}
.h11{height:45.674880pt;}
.h2b{height:45.680214pt;}
.h17{height:45.685547pt;}
.h21{height:45.690880pt;}
.h1e{height:45.696214pt;}
.h1d{height:45.701547pt;}
.h20{height:45.717547pt;}
.h22{height:45.722880pt;}
.h1f{height:45.728214pt;}
.h1c{height:45.732555pt;}
.h23{height:45.733547pt;}
.h26{height:45.743221pt;}
.h2a{height:45.764555pt;}
.h29{height:46.154880pt;}
.hb{height:48.397104pt;}
.hc{height:48.407771pt;}
.h4{height:55.616000pt;}
.h6{height:71.146192pt;}
.h7{height:71.156859pt;}
.h5{height:81.280000pt;}
.hd{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:55.997333pt;}
.x5{left:60.666667pt;}
.x8{left:64.911200pt;}
.x6{left:66.557333pt;}
.xe{left:67.994667pt;}
.x15{left:72.800000pt;}
.x4{left:194.230000pt;}
.x2{left:244.468933pt;}
.xf{left:408.918400pt;}
.x10{left:420.918800pt;}
.x16{left:425.720000pt;}
.x12{left:467.790667pt;}
.x9{left:474.302667pt;}
.xa{left:482.965333pt;}
.xb{left:493.493333pt;}
.xc{left:498.962533pt;}
.x13{left:504.422533pt;}
.x3{left:668.732533pt;}
.x1{left:716.580933pt;}
.x14{left:727.460933pt;}
.x11{left:732.580933pt;}
.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; }
  