
    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_fc42902259579039ad14b64b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_c8cd6714ef5d10783d123a38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107000;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_44747414e9c06f7333b46d55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087000;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_801acce0fece72714a37d378.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_e156fec9ded2f91d405a91c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_8018aaabdd782faec30a5bb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m1{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);}
.v4{vertical-align:-27.972000px;}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.580400px;}
.v5{vertical-align:32.400000px;}
.v1{vertical-align:33.966000px;}
.v7{vertical-align:64.800000px;}
.ls4{letter-spacing:-1.234800px;}
.lsd{letter-spacing:-1.176000px;}
.ls7{letter-spacing:-0.882000px;}
.lsc{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.588000px;}
.lsb{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000088px;}
.ls9{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.549000px;}
.lse{letter-spacing:0.588000px;}
.lsf{letter-spacing:2.826000px;}
.ls5{letter-spacing:2.982000px;}
.lsa{letter-spacing:3.144600px;}
.ls6{letter-spacing:4.945200px;}
.ls8{letter-spacing:5.092200px;}
.ls0{letter-spacing:5.760000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws4{word-spacing:-17.640000px;}
.wsc0{word-spacing:-14.523600px;}
.ws6{word-spacing:-13.935600px;}
.wsb5{word-spacing:-13.524000px;}
.ws4b{word-spacing:-13.200000px;}
.ws2{word-spacing:-12.936000px;}
.ws67{word-spacing:-12.798000px;}
.ws5{word-spacing:-12.642000px;}
.wsa1{word-spacing:-12.540000px;}
.ws9c{word-spacing:-12.528000px;}
.ws21{word-spacing:-12.348000px;}
.ws4c{word-spacing:-12.054000px;}
.ws66{word-spacing:-11.880000px;}
.ws22{word-spacing:-11.701200px;}
.ws9e{word-spacing:-11.610000px;}
.ws3{word-spacing:-11.067672px;}
.ws9d{word-spacing:-10.800000px;}
.ws7f{word-spacing:-10.560000px;}
.wsc2{word-spacing:-8.124455px;}
.wsc1{word-spacing:-7.541688px;}
.ws1{word-spacing:-7.370286px;}
.ws12{word-spacing:-6.585600px;}
.wsa{word-spacing:-4.998000px;}
.ws9{word-spacing:-4.527600px;}
.ws3e{word-spacing:-4.057200px;}
.wsb6{word-spacing:-3.116400px;}
.ws15{word-spacing:-2.704800px;}
.ws61{word-spacing:-2.646000px;}
.wsa3{word-spacing:-2.528400px;}
.ws45{word-spacing:-2.469600px;}
.wsb2{word-spacing:-2.410800px;}
.ws89{word-spacing:-2.352000px;}
.wsc8{word-spacing:-2.293200px;}
.wsb3{word-spacing:-2.234400px;}
.ws78{word-spacing:-2.175600px;}
.wsa7{word-spacing:-2.116800px;}
.ws53{word-spacing:-2.058000px;}
.ws8{word-spacing:-2.016000px;}
.ws88{word-spacing:-1.999200px;}
.wsb4{word-spacing:-1.940400px;}
.ws70{word-spacing:-1.881600px;}
.ws6e{word-spacing:-1.822800px;}
.wsb9{word-spacing:-1.764000px;}
.wse{word-spacing:-1.705200px;}
.wsba{word-spacing:-1.646400px;}
.ws3d{word-spacing:-1.587600px;}
.ws8b{word-spacing:-1.528800px;}
.ws2d{word-spacing:-1.470000px;}
.ws2c{word-spacing:-1.411200px;}
.ws18{word-spacing:-1.352400px;}
.wsa5{word-spacing:-1.293600px;}
.wsa2{word-spacing:-1.234800px;}
.ws49{word-spacing:-1.176000px;}
.ws47{word-spacing:-1.117200px;}
.ws48{word-spacing:-1.058400px;}
.ws3a{word-spacing:-0.999600px;}
.ws60{word-spacing:-0.940800px;}
.wsc6{word-spacing:-0.882000px;}
.ws9b{word-spacing:-0.823200px;}
.wsa9{word-spacing:-0.764400px;}
.ws7b{word-spacing:-0.705600px;}
.ws7c{word-spacing:-0.646800px;}
.ws94{word-spacing:-0.588000px;}
.ws6c{word-spacing:-0.529200px;}
.ws24{word-spacing:-0.470400px;}
.ws23{word-spacing:-0.411600px;}
.ws5e{word-spacing:-0.294000px;}
.ws69{word-spacing:-0.235200px;}
.ws4f{word-spacing:-0.176400px;}
.ws8a{word-spacing:-0.117600px;}
.ws8f{word-spacing:-0.058800px;}
.ws7d{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws71{word-spacing:0.058800px;}
.ws83{word-spacing:0.117600px;}
.ws5c{word-spacing:0.176400px;}
.ws98{word-spacing:0.294000px;}
.ws5d{word-spacing:0.352800px;}
.wsb7{word-spacing:0.411600px;}
.ws37{word-spacing:0.470400px;}
.ws87{word-spacing:0.529200px;}
.ws46{word-spacing:0.588000px;}
.wsaa{word-spacing:0.646800px;}
.ws2e{word-spacing:0.705600px;}
.ws58{word-spacing:0.764400px;}
.ws59{word-spacing:0.823200px;}
.ws2f{word-spacing:0.882000px;}
.ws63{word-spacing:1.058400px;}
.wsac{word-spacing:1.176000px;}
.ws75{word-spacing:1.234800px;}
.ws50{word-spacing:1.293600px;}
.ws14{word-spacing:1.352400px;}
.ws2b{word-spacing:1.411200px;}
.wsab{word-spacing:1.470000px;}
.ws44{word-spacing:1.528800px;}
.ws5a{word-spacing:1.587600px;}
.ws43{word-spacing:1.646400px;}
.ws31{word-spacing:1.705200px;}
.wsf{word-spacing:1.764000px;}
.ws79{word-spacing:1.881600px;}
.ws36{word-spacing:1.940400px;}
.ws97{word-spacing:1.999200px;}
.ws35{word-spacing:2.058000px;}
.ws76{word-spacing:2.116800px;}
.ws92{word-spacing:2.175600px;}
.wsbb{word-spacing:2.234400px;}
.ws73{word-spacing:2.293200px;}
.ws91{word-spacing:2.352000px;}
.ws8d{word-spacing:2.410800px;}
.wsb1{word-spacing:2.469600px;}
.wsa8{word-spacing:2.528400px;}
.ws62{word-spacing:2.587200px;}
.ws55{word-spacing:2.646000px;}
.ws3b{word-spacing:2.704800px;}
.ws33{word-spacing:2.763600px;}
.ws28{word-spacing:2.822400px;}
.wsbe{word-spacing:2.881200px;}
.ws4d{word-spacing:2.940000px;}
.ws40{word-spacing:2.998800px;}
.ws10{word-spacing:3.057600px;}
.ws84{word-spacing:3.175200px;}
.ws4e{word-spacing:3.234000px;}
.ws11{word-spacing:3.292800px;}
.ws2a{word-spacing:3.410400px;}
.ws17{word-spacing:3.469200px;}
.ws8c{word-spacing:3.528000px;}
.ws39{word-spacing:3.586800px;}
.ws57{word-spacing:3.645600px;}
.ws30{word-spacing:3.704400px;}
.ws6f{word-spacing:3.763200px;}
.ws38{word-spacing:3.822000px;}
.ws34{word-spacing:3.880800px;}
.ws5b{word-spacing:3.939600px;}
.wsa6{word-spacing:4.057200px;}
.wsc3{word-spacing:4.174800px;}
.ws42{word-spacing:4.233600px;}
.ws52{word-spacing:4.410000px;}
.ws41{word-spacing:4.527600px;}
.ws29{word-spacing:4.586400px;}
.ws32{word-spacing:4.704000px;}
.ws4a{word-spacing:4.762800px;}
.wsa0{word-spacing:4.821600px;}
.ws20{word-spacing:4.880400px;}
.ws5f{word-spacing:4.939200px;}
.wsbf{word-spacing:4.998000px;}
.ws72{word-spacing:5.056800px;}
.ws6b{word-spacing:5.115600px;}
.ws56{word-spacing:5.233200px;}
.ws82{word-spacing:5.292000px;}
.ws64{word-spacing:5.350800px;}
.wsad{word-spacing:5.409600px;}
.ws6a{word-spacing:5.468400px;}
.wsbc{word-spacing:5.527200px;}
.ws51{word-spacing:5.586000px;}
.wsb0{word-spacing:5.644800px;}
.wsc5{word-spacing:5.703600px;}
.ws93{word-spacing:5.762400px;}
.ws3f{word-spacing:5.821200px;}
.wsb8{word-spacing:5.880000px;}
.ws54{word-spacing:5.938800px;}
.ws81{word-spacing:6.056400px;}
.ws6d{word-spacing:6.232800px;}
.ws3c{word-spacing:6.291600px;}
.wsa4{word-spacing:6.350400px;}
.wsc7{word-spacing:6.409200px;}
.ws8e{word-spacing:6.468000px;}
.ws80{word-spacing:6.526800px;}
.ws74{word-spacing:6.703200px;}
.wsbd{word-spacing:6.820800px;}
.ws1e{word-spacing:6.997200px;}
.ws77{word-spacing:7.114800px;}
.wsc4{word-spacing:7.232400px;}
.ws7a{word-spacing:7.350000px;}
.ws86{word-spacing:7.702800px;}
.ws19{word-spacing:7.761600px;}
.ws85{word-spacing:8.114400px;}
.ws96{word-spacing:8.408400px;}
.ws1a{word-spacing:8.643600px;}
.wsb{word-spacing:8.937600px;}
.ws26{word-spacing:8.996400px;}
.ws95{word-spacing:9.055200px;}
.ws1d{word-spacing:9.231600px;}
.ws25{word-spacing:9.702000px;}
.wsaf{word-spacing:10.348800px;}
.wsae{word-spacing:11.113200px;}
.ws1f{word-spacing:12.465600px;}
.ws9a{word-spacing:12.994800px;}
.wsc{word-spacing:13.171200px;}
.ws1b{word-spacing:13.700400px;}
.ws99{word-spacing:13.994400px;}
.wsd{word-spacing:14.406000px;}
.ws16{word-spacing:14.935200px;}
.ws1c{word-spacing:17.875200px;}
.ws27{word-spacing:18.810000px;}
.ws13{word-spacing:20.168400px;}
.ws90{word-spacing:28.988400px;}
.ws68{word-spacing:201.693000px;}
.wsc9{word-spacing:394.054800px;}
.wscc{word-spacing:428.184000px;}
.ws7e{word-spacing:502.767600px;}
.ws65{word-spacing:578.521800px;}
.wsca{word-spacing:593.692800px;}
.ws9f{word-spacing:678.835800px;}
.wscb{word-spacing:800.064000px;}
._11{margin-left:-2891.340000px;}
._28{margin-left:-13.576800px;}
._29{margin-left:-8.622000px;}
._e{margin-left:-7.585200px;}
._8{margin-left:-6.426840px;}
._0{margin-left:-4.624200px;}
._17{margin-left:-3.600480px;}
._3{margin-left:-2.550000px;}
._1{margin-left:-1.179600px;}
._2{width:1.200000px;}
._10{width:2.703000px;}
._d{width:4.906200px;}
._c{width:6.904800px;}
._b{width:8.835720px;}
._7{width:11.752200px;}
._16{width:13.168200px;}
._9{width:17.128800px;}
._a{width:18.522000px;}
._f{width:19.710000px;}
._13{width:21.358800px;}
._12{width:23.829000px;}
._4{width:61.760610px;}
._5{width:76.761000px;}
._1b{width:86.107200px;}
._2e{width:122.434800px;}
._27{width:146.988600px;}
._15{width:164.648400px;}
._19{width:165.907200px;}
._1a{width:173.263200px;}
._24{width:175.392600px;}
._23{width:190.891200px;}
._2d{width:250.946400px;}
._2c{width:270.008400px;}
._2a{width:304.522800px;}
._26{width:344.091000px;}
._22{width:360.244680px;}
._20{width:428.678400px;}
._18{width:451.137600px;}
._1e{width:460.203000px;}
._21{width:487.743600px;}
._25{width:493.404000px;}
._2f{width:494.424000px;}
._1f{width:664.596000px;}
._1c{width:698.390400px;}
._1d{width:752.453400px;}
._2b{width:753.516000px;}
._14{width:1021.284000px;}
._6{width:1249.306800px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(207,0,61);}
.fc1{color:rgb(85,84,84);}
.fc0{color:rgb(60,60,59);}
.fs6{font-size:34.280400px;}
.fs5{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:48.972000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:58.800000px;}
.fs4{font-size:59.466000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.274700px;}
.y1{bottom:49.274850px;}
.y20e{bottom:74.261100px;}
.y6b{bottom:74.409300px;}
.ya5{bottom:74.409450px;}
.ya{bottom:74.409600px;}
.y1d6{bottom:83.288400px;}
.ye0{bottom:83.288550px;}
.y20d{bottom:91.097850px;}
.y249{bottom:91.107300px;}
.ya4{bottom:91.309200px;}
.y9{bottom:93.404100px;}
.y1d5{bottom:99.488400px;}
.ydf{bottom:99.488550px;}
.y6a{bottom:99.658950px;}
.y199{bottom:106.195200px;}
.y1d2{bottom:107.588400px;}
.y248{bottom:107.805150px;}
.y20c{bottom:107.934600px;}
.y1d4{bottom:115.688400px;}
.y69{bottom:116.404650px;}
.ya3{bottom:116.712750px;}
.y285{bottom:120.799650px;}
.y247{bottom:124.502850px;}
.yde{bottom:124.819200px;}
.y2f{bottom:129.360000px;}
.y1d3{bottom:131.888400px;}
.y68{bottom:133.150500px;}
.y20b{bottom:133.275300px;}
.y198{bottom:135.330000px;}
.y120{bottom:136.810200px;}
.y284{bottom:137.299650px;}
.ydc{bottom:141.019200px;}
.y246{bottom:141.200550px;}
.ya2{bottom:142.116450px;}
.y2e{bottom:145.860150px;}
.y67{bottom:149.896200px;}
.y20a{bottom:150.111900px;}
.y197{bottom:151.530000px;}
.y283{bottom:153.799650px;}
.ydb{bottom:157.219200px;}
.y245{bottom:157.898400px;}
.ya1{bottom:159.016050px;}
.y192{bottom:159.630000px;}
.y2d{bottom:162.360300px;}
.y11f{bottom:165.945150px;}
.y209{bottom:166.948650px;}
.y196{bottom:167.730000px;}
.y282{bottom:170.299650px;}
.ydd{bottom:173.419200px;}
.y244{bottom:174.596250px;}
.y66{bottom:175.145850px;}
.y190{bottom:175.830000px;}
.y2c{bottom:178.860300px;}
.y11e{bottom:182.145150px;}
.y1d1{bottom:182.549850px;}
.y208{bottom:183.785400px;}
.y195{bottom:183.930000px;}
.ya0{bottom:184.419750px;}
.y281{bottom:186.799650px;}
.y243{bottom:191.293950px;}
.y65{bottom:191.891550px;}
.y191{bottom:192.030000px;}
.y2b{bottom:195.360600px;}
.y18b{bottom:196.595400px;}
.yda{bottom:198.749850px;}
.y194{bottom:200.130000px;}
.y207{bottom:200.622150px;}
.y9f{bottom:201.319500px;}
.y155{bottom:201.775950px;}
.yd0{bottom:202.284600px;}
.y280{bottom:203.299650px;}
.y1ce{bottom:206.849850px;}
.y11d{bottom:207.475800px;}
.y242{bottom:207.991650px;}
.y64{bottom:208.637400px;}
.y2a{bottom:211.860600px;}
.y18a{bottom:212.795400px;}
.y1d0{bottom:214.949850px;}
.y193{bottom:216.330000px;}
.y206{bottom:217.458900px;}
.y9e{bottom:218.219100px;}
.y154{bottom:218.275950px;}
.ycf{bottom:218.484450px;}
.y27f{bottom:219.799650px;}
.yd9{bottom:224.080650px;}
.y241{bottom:224.689500px;}
.y63{bottom:225.383100px;}
.y1cf{bottom:231.149850px;}
.y11c{bottom:232.806450px;}
.y153{bottom:234.775950px;}
.y9d{bottom:235.118700px;}
.y27e{bottom:236.299650px;}
.yd8{bottom:240.280650px;}
.y119{bottom:240.906600px;}
.y240{bottom:241.387350px;}
.y18f{bottom:241.660650px;}
.y62{bottom:242.128800px;}
.y205{bottom:242.799600px;}
.y11b{bottom:249.006450px;}
.y18d{bottom:249.760800px;}
.y152{bottom:251.275950px;}
.y9c{bottom:252.018450px;}
.y27d{bottom:252.799650px;}
.y1cd{bottom:256.480500px;}
.yd7{bottom:256.480650px;}
.y118{bottom:257.106600px;}
.y18c{bottom:257.860800px;}
.y29{bottom:258.124500px;}
.y204{bottom:259.636350px;}
.y23f{bottom:262.337100px;}
.y11a{bottom:265.206600px;}
.y61{bottom:267.378450px;}
.y151{bottom:267.775950px;}
.y9b{bottom:268.918050px;}
.y27c{bottom:269.299650px;}
.y1cb{bottom:272.680500px;}
.yd6{bottom:272.680650px;}
.y18e{bottom:274.060800px;}
.y28{bottom:274.924650px;}
.y203{bottom:276.473100px;}
.yd1{bottom:280.780650px;}
.y60{bottom:284.124150px;}
.y150{bottom:284.275950px;}
.y27b{bottom:285.799650px;}
.y9a{bottom:285.817800px;}
.y1cc{bottom:288.880500px;}
.yd5{bottom:288.880650px;}
.y115{bottom:290.537250px;}
.y27{bottom:291.424800px;}
.y202{bottom:293.309850px;}
.y23e{bottom:296.893050px;}
.y117{bottom:298.637250px;}
.y189{bottom:299.391450px;}
.y5f{bottom:300.870000px;}
.y27a{bottom:302.299650px;}
.y99{bottom:302.717400px;}
.y14f{bottom:305.028000px;}
.yd4{bottom:305.080650px;}
.y113{bottom:306.737250px;}
.y188{bottom:307.491450px;}
.y26{bottom:307.924950px;}
.y201{bottom:310.146450px;}
.y23d{bottom:313.590750px;}
.y1ca{bottom:314.211300px;}
.y116{bottom:314.837250px;}
.y5e{bottom:317.615700px;}
.y279{bottom:318.799650px;}
.y98{bottom:319.617150px;}
.yd3{bottom:321.280650px;}
.y114{bottom:322.937250px;}
.y25{bottom:324.425100px;}
.y200{bottom:326.983200px;}
.y23c{bottom:330.288600px;}
.y278{bottom:335.299650px;}
.yd2{bottom:337.480650px;}
.y14e{bottom:339.386250px;}
.y1c9{bottom:339.542100px;}
.y187{bottom:340.922100px;}
.y24{bottom:340.925100px;}
.y5d{bottom:342.865200px;}
.y1ff{bottom:343.819950px;}
.y97{bottom:345.020850px;}
.y23b{bottom:346.986450px;}
.y112{bottom:348.267900px;}
.y185{bottom:349.022100px;}
.y277{bottom:351.799650px;}
.y1c8{bottom:355.741950px;}
.y14d{bottom:355.886250px;}
.y110{bottom:356.367900px;}
.y184{bottom:357.122100px;}
.y23{bottom:357.425250px;}
.y5c{bottom:359.611050px;}
.y1fe{bottom:360.656700px;}
.y96{bottom:361.920450px;}
.yce{bottom:362.811300px;}
.y23a{bottom:363.684150px;}
.y1c5{bottom:363.842100px;}
.y10d{bottom:364.467900px;}
.y276{bottom:368.299650px;}
.ycd{bottom:370.911300px;}
.y1c7{bottom:371.941950px;}
.y14c{bottom:372.386250px;}
.y10f{bottom:372.567900px;}
.y186{bottom:373.322100px;}
.y22{bottom:373.925400px;}
.y5b{bottom:376.356750px;}
.y1fd{bottom:377.493450px;}
.y10c{bottom:380.667900px;}
.y275{bottom:384.799650px;}
.y95{bottom:387.324150px;}
.y1c6{bottom:388.142100px;}
.y10e{bottom:388.767900px;}
.y239{bottom:388.885950px;}
.y14b{bottom:388.886250px;}
.y111{bottom:396.867900px;}
.y183{bottom:398.652900px;}
.y274{bottom:401.299650px;}
.y5a{bottom:401.606400px;}
.y1fc{bottom:402.834150px;}
.y21{bottom:403.181400px;}
.y94{bottom:404.223750px;}
.ycc{bottom:404.341950px;}
.y14a{bottom:405.386250px;}
.y238{bottom:405.583650px;}
.y1c4{bottom:413.472750px;}
.y182{bottom:414.852900px;}
.y273{bottom:417.799650px;}
.y59{bottom:418.352100px;}
.y1fb{bottom:419.670900px;}
.y149{bottom:421.886250px;}
.y10b{bottom:422.198700px;}
.y237{bottom:422.281350px;}
.y93{bottom:429.627300px;}
.y1c3{bottom:429.672750px;}
.y108{bottom:430.298700px;}
.y20{bottom:432.974550px;}
.y272{bottom:434.299650px;}
.y58{bottom:435.097800px;}
.y1fa{bottom:436.507650px;}
.y1c0{bottom:437.772600px;}
.y148{bottom:438.386250px;}
.y10a{bottom:438.398700px;}
.y236{bottom:438.979200px;}
.y180{bottom:440.183550px;}
.y1c2{bottom:445.872750px;}
.y107{bottom:446.498700px;}
.y92{bottom:446.527050px;}
.y271{bottom:450.799650px;}
.y57{bottom:451.843650px;}
.y1f9{bottom:453.344400px;}
.y109{bottom:454.598700px;}
.y147{bottom:454.886250px;}
.y235{bottom:455.676900px;}
.y17e{bottom:456.383550px;}
.ycb{bottom:457.843050px;}
.y1c1{bottom:462.072750px;}
.y181{bottom:464.483550px;}
.y270{bottom:467.299650px;}
.y16e{bottom:468.018300px;}
.y56{bottom:468.589350px;}
.y146{bottom:471.386250px;}
.y91{bottom:471.930750px;}
.y234{bottom:472.374750px;}
.y17d{bottom:472.583550px;}
.yca{bottom:474.878400px;}
.y1f8{bottom:478.685100px;}
.y106{bottom:479.929350px;}
.y26f{bottom:483.799650px;}
.y16d{bottom:484.218300px;}
.y55{bottom:485.335050px;}
.y1bf{bottom:487.403400px;}
.y145{bottom:487.886250px;}
.y17f{bottom:488.783550px;}
.y90{bottom:488.830350px;}
.y233{bottom:489.072450px;}
.y1bc{bottom:495.503400px;}
.y1f7{bottom:495.521700px;}
.y1f{bottom:495.789600px;}
.y105{bottom:496.129350px;}
.yc9{bottom:496.165800px;}
.y26e{bottom:500.299650px;}
.y54{bottom:502.080900px;}
.y1be{bottom:503.603400px;}
.y2b5{bottom:503.851050px;}
.y144{bottom:504.386250px;}
.y8f{bottom:505.730100px;}
.y232{bottom:505.770300px;}
.y1bb{bottom:511.703400px;}
.y1f6{bottom:512.358450px;}
.y1e{bottom:512.589750px;}
.y17c{bottom:514.114350px;}
.y26d{bottom:516.799650px;}
.y53{bottom:518.826600px;}
.y1bd{bottom:519.803400px;}
.y143{bottom:520.886250px;}
.y178{bottom:522.214350px;}
.y231{bottom:522.468000px;}
.y8e{bottom:522.629700px;}
.y1d{bottom:529.089900px;}
.y2b3{bottom:529.181850px;}
.y1f5{bottom:529.195200px;}
.y17b{bottom:530.314350px;}
.yc8{bottom:531.059550px;}
.y26c{bottom:533.299650px;}
.y52{bottom:535.572300px;}
.y2b2{bottom:537.281850px;}
.y142{bottom:537.386250px;}
.y176{bottom:538.414350px;}
.y230{bottom:539.165850px;}
.y8d{bottom:539.529450px;}
.y1ba{bottom:545.134200px;}
.y2b4{bottom:545.381850px;}
.y1c{bottom:545.590050px;}
.y1f4{bottom:546.031950px;}
.y17a{bottom:546.514350px;}
.yc7{bottom:548.094900px;}
.y104{bottom:549.094950px;}
.y26b{bottom:549.799650px;}
.y51{bottom:552.318000px;}
.y141{bottom:553.886250px;}
.y177{bottom:554.614350px;}
.y22f{bottom:555.863550px;}
.y8c{bottom:556.429050px;}
.y1b9{bottom:561.334200px;}
.y1b{bottom:562.090050px;}
.y179{bottom:562.714350px;}
.y1f3{bottom:562.868700px;}
.yc6{bottom:565.130400px;}
.y103{bottom:565.594950px;}
.y26a{bottom:566.299650px;}
.y50{bottom:569.063700px;}
.y2b1{bottom:570.712500px;}
.y22e{bottom:572.561400px;}
.y8b{bottom:573.328800px;}
.y1b8{bottom:577.534200px;}
.y1a{bottom:578.590200px;}
.y140{bottom:578.890200px;}
.y102{bottom:582.094950px;}
.yc5{bottom:582.165900px;}
.y269{bottom:582.799650px;}
.y4f{bottom:585.809400px;}
.y2b0{bottom:586.912500px;}
.y173{bottom:588.045000px;}
.y1f2{bottom:588.209400px;}
.y22d{bottom:589.259100px;}
.y8a{bottom:590.228400px;}
.y1b7{bottom:593.734200px;}
.y19{bottom:595.090350px;}
.yc4{bottom:599.201250px;}
.y268{bottom:599.299650px;}
.y1b2{bottom:601.834200px;}
.y4e{bottom:602.555250px;}
.y13f{bottom:603.894150px;}
.y172{bottom:604.245000px;}
.y1f1{bottom:605.046000px;}
.y22c{bottom:605.956950px;}
.y101{bottom:607.098900px;}
.y89{bottom:607.128150px;}
.y1b6{bottom:609.934200px;}
.y18{bottom:611.590500px;}
.y2af{bottom:612.243150px;}
.y175{bottom:612.345000px;}
.y267{bottom:615.799650px;}
.yc3{bottom:616.236750px;}
.y4d{bottom:619.300950px;}
.y2ac{bottom:620.343150px;}
.y13e{bottom:620.394150px;}
.y16f{bottom:620.445000px;}
.y1f0{bottom:621.882750px;}
.y100{bottom:623.598900px;}
.y88{bottom:624.027750px;}
.y1b5{bottom:626.134200px;}
.y2ae{bottom:628.443300px;}
.y174{bottom:628.545000px;}
.y22b{bottom:631.158600px;}
.y266{bottom:632.299650px;}
.yc2{bottom:633.272100px;}
.y4c{bottom:636.046650px;}
.y2ab{bottom:636.543300px;}
.y171{bottom:636.645150px;}
.y1ef{bottom:638.719500px;}
.yff{bottom:640.098900px;}
.y17{bottom:640.846500px;}
.y87{bottom:640.927500px;}
.y1b4{bottom:642.334200px;}
.y2ad{bottom:644.643150px;}
.y13d{bottom:645.398100px;}
.y22a{bottom:647.856450px;}
.y265{bottom:648.799650px;}
.yc1{bottom:650.307600px;}
.y4b{bottom:652.792350px;}
.y170{bottom:652.845000px;}
.yfe{bottom:656.598900px;}
.y86{bottom:657.827250px;}
.y1b3{bottom:658.534200px;}
.y1ee{bottom:664.060200px;}
.y229{bottom:664.554150px;}
.y264{bottom:665.299650px;}
.yc0{bottom:667.342950px;}
.y4a{bottom:669.538050px;}
.y2a9{bottom:669.973950px;}
.y13c{bottom:670.402050px;}
.y16{bottom:670.639650px;}
.yfd{bottom:673.098900px;}
.y85{bottom:674.726850px;}
.y2a8{bottom:678.073950px;}
.y16b{bottom:678.175800px;}
.y1ed{bottom:680.896950px;}
.y228{bottom:681.252000px;}
.y263{bottom:681.799650px;}
.y1b1{bottom:683.864850px;}
.ybf{bottom:684.378450px;}
.y2aa{bottom:686.173950px;}
.y16a{bottom:686.275800px;}
.y49{bottom:686.283900px;}
.y13b{bottom:686.902050px;}
.yfc{bottom:689.598900px;}
.y84{bottom:691.626600px;}
.y16c{bottom:694.375800px;}
.y1ec{bottom:697.733700px;}
.y262{bottom:698.299650px;}
.ybe{bottom:701.413800px;}
.y48{bottom:703.029600px;}
.y13a{bottom:703.402050px;}
.yfb{bottom:706.098900px;}
.y227{bottom:706.453650px;}
.y83{bottom:708.526200px;}
.y2a5{bottom:711.504600px;}
.y1eb{bottom:714.570450px;}
.y261{bottom:714.799650px;}
.ybd{bottom:718.449300px;}
.y2a7{bottom:719.604600px;}
.y169{bottom:719.706600px;}
.y47{bottom:719.775300px;}
.y139{bottom:719.902050px;}
.yfa{bottom:722.598900px;}
.y226{bottom:723.151500px;}
.y82{bottom:725.425800px;}
.y2a4{bottom:727.704600px;}
.y168{bottom:727.806600px;}
.y260{bottom:731.299650px;}
.y1ea{bottom:731.407200px;}
.y15{bottom:733.454700px;}
.ybc{bottom:735.484800px;}
.y2a1{bottom:735.804600px;}
.y138{bottom:736.402050px;}
.y46{bottom:736.521000px;}
.y1b0{bottom:737.074800px;}
.y225{bottom:739.849200px;}
.y81{bottom:742.325550px;}
.y2a3{bottom:743.904600px;}
.yf9{bottom:747.602850px;}
.y25f{bottom:747.799650px;}
.y1e9{bottom:748.243950px;}
.y14{bottom:750.254850px;}
.y2a6{bottom:752.004600px;}
.ybb{bottom:752.520150px;}
.y45{bottom:753.266700px;}
.y1af{bottom:753.819300px;}
.y224{bottom:756.547050px;}
.y80{bottom:759.225300px;}
.y2a2{bottom:760.104600px;}
.y137{bottom:761.405850px;}
.yf8{bottom:764.102850px;}
.y25e{bottom:764.299650px;}
.y1e8{bottom:765.080550px;}
.y13{bottom:766.754850px;}
.yba{bottom:769.555500px;}
.y44{bottom:770.012550px;}
.y1ae{bottom:770.563800px;}
.y7f{bottom:776.124900px;}
.yf7{bottom:780.602850px;}
.y25d{bottom:780.799650px;}
.y223{bottom:781.748700px;}
.y1e7{bottom:781.917450px;}
.y12{bottom:783.255000px;}
.y29e{bottom:785.435250px;}
.y136{bottom:786.409950px;}
.yb9{bottom:786.591000px;}
.y43{bottom:786.758250px;}
.y1ad{bottom:787.308300px;}
.y167{bottom:788.872050px;}
.y7e{bottom:793.024650px;}
.y2a0{bottom:793.535400px;}
.yf6{bottom:797.102850px;}
.y25c{bottom:797.299650px;}
.y222{bottom:798.446550px;}
.y1e6{bottom:798.754050px;}
.y11{bottom:799.755300px;}
.y29d{bottom:801.635400px;}
.y135{bottom:802.909950px;}
.yb8{bottom:803.626500px;}
.y1ac{bottom:804.052800px;}
.y166{bottom:805.372050px;}
.y42{bottom:807.755850px;}
.y29a{bottom:809.735250px;}
.y7d{bottom:809.924250px;}
.yf5{bottom:813.602850px;}
.y25b{bottom:813.799650px;}
.y221{bottom:815.144250px;}
.y1e5{bottom:815.590800px;}
.y10{bottom:816.255300px;}
.y29c{bottom:817.835400px;}
.y134{bottom:819.409950px;}
.yb7{bottom:820.661850px;}
.y1ab{bottom:820.797150px;}
.y165{bottom:821.872050px;}
.y29f{bottom:825.935250px;}
.y7c{bottom:826.823850px;}
.yf4{bottom:830.102850px;}
.y25a{bottom:830.299650px;}
.y220{bottom:831.842100px;}
.y1e4{bottom:832.427550px;}
.yf{bottom:832.755450px;}
.y29b{bottom:834.035400px;}
.y133{bottom:835.909950px;}
.y1aa{bottom:837.541650px;}
.yb6{bottom:837.697200px;}
.y41{bottom:842.359800px;}
.y7b{bottom:843.723600px;}
.yf3{bottom:846.602850px;}
.y259{bottom:846.799650px;}
.y1e3{bottom:849.264300px;}
.y132{bottom:852.409950px;}
.ye{bottom:854.150700px;}
.y1a9{bottom:854.286000px;}
.y21f{bottom:857.043750px;}
.yb5{bottom:858.984750px;}
.y40{bottom:859.105650px;}
.y299{bottom:859.366050px;}
.yf2{bottom:863.102850px;}
.y258{bottom:863.299650px;}
.y7a{bottom:864.875250px;}
.y1e2{bottom:866.101050px;}
.y164{bottom:868.135950px;}
.y131{bottom:868.909950px;}
.y1a8{bottom:871.030500px;}
.y21e{bottom:873.741600px;}
.y297{bottom:875.566200px;}
.y3f{bottom:875.851350px;}
.yf1{bottom:879.602850px;}
.y257{bottom:879.799650px;}
.yd{bottom:882.763650px;}
.y130{bottom:885.409950px;}
.y1e1{bottom:887.189700px;}
.y1a7{bottom:887.775000px;}
.y21d{bottom:890.439300px;}
.y296{bottom:891.766050px;}
.y3e{bottom:892.597050px;}
.yb4{bottom:893.878350px;}
.y79{bottom:894.956100px;}
.y256{bottom:896.299650px;}
.y163{bottom:897.270750px;}
.y12f{bottom:901.909950px;}
.y1a6{bottom:904.519350px;}
.y21c{bottom:907.137150px;}
.y298{bottom:907.966050px;}
.y3d{bottom:909.342750px;}
.yb3{bottom:910.913850px;}
.y255{bottom:912.799650px;}
.y162{bottom:913.470750px;}
.yc{bottom:916.571550px;}
.y12e{bottom:918.409950px;}
.y1a5{bottom:921.263850px;}
.y1e0{bottom:921.884700px;}
.y21b{bottom:923.834850px;}
.yf0{bottom:925.866600px;}
.y3c{bottom:926.088450px;}
.yb2{bottom:927.949200px;}
.y254{bottom:929.299650px;}
.y161{bottom:929.670750px;}
.y78{bottom:929.713950px;}
.yb{bottom:930.821550px;}
.y295{bottom:933.296850px;}
.y12d{bottom:934.909950px;}
.y1a4{bottom:938.008350px;}
.y1df{bottom:938.721450px;}
.y21a{bottom:940.532550px;}
.y292{bottom:941.396700px;}
.y3b{bottom:942.834300px;}
.yb1{bottom:944.984700px;}
.y253{bottom:945.799650px;}
.y160{bottom:945.870750px;}
.y77{bottom:946.613700px;}
.y294{bottom:949.496850px;}
.y12c{bottom:951.409950px;}
.yef{bottom:955.001550px;}
.y219{bottom:957.230400px;}
.y291{bottom:957.596700px;}
.y1a3{bottom:959.004750px;}
.y3a{bottom:959.580000px;}
.yb0{bottom:962.020050px;}
.y15f{bottom:962.070750px;}
.y252{bottom:962.299650px;}
.y76{bottom:963.513450px;}
.y293{bottom:965.696850px;}
.y12b{bottom:967.909950px;}
.yed{bottom:971.201550px;}
.y218{bottom:973.928250px;}
.y39{bottom:976.325700px;}
.y251{bottom:978.799650px;}
.yaf{bottom:979.055550px;}
.y75{bottom:980.413050px;}
.y8{bottom:982.277400px;}
.y12a{bottom:984.409950px;}
.y1de{bottom:985.321950px;}
.yee{bottom:987.401400px;}
.y290{bottom:991.027500px;}
.ye9{bottom:991.966800px;}
.y38{bottom:993.071550px;}
.y1a2{bottom:993.607500px;}
.y250{bottom:995.299650px;}
.yae{bottom:996.091050px;}
.y74{bottom:997.312800px;}
.y217{bottom:999.129900px;}
.y129{bottom:1000.909950px;}
.y15e{bottom:1003.601400px;}
.y28e{bottom:1007.227500px;}
.ye8{bottom:1008.166800px;}
.y7{bottom:1009.577400px;}
.y37{bottom:1009.817250px;}
.y1a1{bottom:1010.351850px;}
.y24f{bottom:1011.799650px;}
.yec{bottom:1012.732200px;}
.yad{bottom:1013.126400px;}
.y1dd{bottom:1014.793650px;}
.y216{bottom:1015.827600px;}
.y128{bottom:1017.409950px;}
.y73{bottom:1022.716350px;}
.y28f{bottom:1023.427500px;}
.y36{bottom:1026.562950px;}
.yea{bottom:1028.932200px;}
.yac{bottom:1030.161750px;}
.y1dc{bottom:1030.993500px;}
.y1a0{bottom:1031.348400px;}
.y24e{bottom:1032.551550px;}
.y6{bottom:1036.877550px;}
.y72{bottom:1039.616100px;}
.y215{bottom:1041.029400px;}
.y127{bottom:1042.413750px;}
.y35{bottom:1043.308650px;}
.yeb{bottom:1045.132200px;}
.y1db{bottom:1047.193650px;}
.yab{bottom:1047.197250px;}
.y28d{bottom:1048.758150px;}
.y15d{bottom:1053.232200px;}
.y71{bottom:1056.515700px;}
.y28c{bottom:1056.858150px;}
.y214{bottom:1057.727100px;}
.y15c{bottom:1061.332200px;}
.y1da{bottom:1063.393650px;}
.yaa{bottom:1064.232750px;}
.y34{bottom:1064.306400px;}
.y19f{bottom:1065.951000px;}
.y126{bottom:1067.417700px;}
.ye7{bottom:1070.462850px;}
.y70{bottom:1073.415450px;}
.y213{bottom:1074.424950px;}
.y24d{bottom:1075.413750px;}
.y15b{bottom:1077.532200px;}
.ye6{bottom:1078.562850px;}
.y1d9{bottom:1079.593650px;}
.y19e{bottom:1082.695500px;}
.y125{bottom:1083.917700px;}
.y1d7{bottom:1087.693650px;}
.ya9{bottom:1089.772050px;}
.y28b{bottom:1090.288950px;}
.y212{bottom:1091.122800px;}
.y24c{bottom:1091.913750px;}
.y1d8{bottom:1095.793650px;}
.y288{bottom:1098.388950px;}
.y6f{bottom:1098.819000px;}
.y4{bottom:1099.275600px;}
.y19d{bottom:1099.440000px;}
.y124{bottom:1100.417700px;}
.y15a{bottom:1102.862850px;}
.y28a{bottom:1106.488950px;}
.ya8{bottom:1106.807550px;}
.y24b{bottom:1108.413750px;}
.y157{bottom:1110.962850px;}
.ye5{bottom:1111.993500px;}
.y3{bottom:1114.275600px;}
.y287{bottom:1114.588950px;}
.y5{bottom:1115.204400px;}
.y6e{bottom:1115.718750px;}
.y19c{bottom:1116.184350px;}
.y211{bottom:1116.324450px;}
.y123{bottom:1116.917700px;}
.y159{bottom:1119.062850px;}
.y289{bottom:1122.688950px;}
.y24a{bottom:1124.913750px;}
.y156{bottom:1127.162850px;}
.ye4{bottom:1128.193650px;}
.ya7{bottom:1132.346850px;}
.y6d{bottom:1132.618350px;}
.y33{bottom:1132.926150px;}
.y19b{bottom:1132.928850px;}
.y210{bottom:1133.022150px;}
.y122{bottom:1133.417700px;}
.y158{bottom:1135.262850px;}
.ye1{bottom:1136.293650px;}
.ye3{bottom:1144.393650px;}
.ya6{bottom:1149.382350px;}
.y6c{bottom:1149.518100px;}
.y32{bottom:1149.671850px;}
.y19a{bottom:1149.673350px;}
.y20f{bottom:1149.720000px;}
.y121{bottom:1149.917700px;}
.ye2{bottom:1160.593650px;}
.y286{bottom:1165.024500px;}
.y31{bottom:1166.417700px;}
.y30{bottom:1205.693550px;}
.h8{height:32.575200px;}
.h6{height:34.129986px;}
.h2{height:37.254000px;}
.h7{height:42.528000px;}
.h4{height:42.576000px;}
.h9{height:46.452000px;}
.hc{height:47.844000px;}
.he{height:47.898000px;}
.h10{height:52.096800px;}
.h3{height:52.155600px;}
.hb{height:58.476000px;}
.ha{height:74.424000px;}
.hf{height:80.244000px;}
.hd{height:80.298000px;}
.h5{height:90.372000px;}
.h11{height:112.698000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x1e{left:87.038250px;}
.x3{left:92.735400px;}
.x9{left:97.795350px;}
.x21{left:100.363200px;}
.x12{left:104.450700px;}
.x8{left:106.299300px;}
.x31{left:114.803100px;}
.x2b{left:118.867350px;}
.x1a{left:123.307050px;}
.x25{left:124.495050px;}
.xe{left:127.558950px;}
.x15{left:134.611650px;}
.x3a{left:136.047000px;}
.x10{left:137.478000px;}
.xb{left:139.226700px;}
.x6{left:140.498550px;}
.x32{left:145.689600px;}
.xf{left:146.713200px;}
.x2d{left:153.070800px;}
.xa{left:170.488650px;}
.x5{left:180.583950px;}
.x24{left:187.008300px;}
.x20{left:192.868950px;}
.x2a{left:204.547800px;}
.xc{left:215.606700px;}
.x13{left:222.950700px;}
.x14{left:259.667700px;}
.x2f{left:264.965400px;}
.x1b{left:284.881950px;}
.x16{left:289.146900px;}
.x27{left:310.847100px;}
.x2e{left:314.645700px;}
.x7{left:318.064050px;}
.x11{left:324.997950px;}
.x33{left:326.913300px;}
.x17{left:328.809300px;}
.x34{left:341.749650px;}
.x35{left:344.773650px;}
.x2c{left:376.041450px;}
.x30{left:377.203200px;}
.x22{left:389.497050px;}
.x3c{left:435.881700px;}
.x1c{left:437.952750px;}
.x18{left:442.217700px;}
.xd{left:447.770550px;}
.x36{left:454.488300px;}
.x37{left:469.324650px;}
.x38{left:470.654400px;}
.x19{left:480.186000px;}
.x28{left:514.941600px;}
.x3b{left:574.031700px;}
.x1d{left:591.023550px;}
.x4{left:606.791400px;}
.x39{left:632.016750px;}
.x23{left:678.631050px;}
.x29{left:685.020300px;}
.x26{left:704.716200px;}
.x1{left:788.963700px;}
.x1f{left:791.389350px;}
@media print{
.v4{vertical-align:-24.864000pt;}
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.404800pt;}
.v5{vertical-align:28.800000pt;}
.v1{vertical-align:30.192000pt;}
.v7{vertical-align:57.600000pt;}
.ls4{letter-spacing:-1.097600pt;}
.lsd{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:-0.784000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.522667pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000078pt;}
.ls9{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.488000pt;}
.lse{letter-spacing:0.522667pt;}
.lsf{letter-spacing:2.512000pt;}
.ls5{letter-spacing:2.650667pt;}
.lsa{letter-spacing:2.795200pt;}
.ls6{letter-spacing:4.395733pt;}
.ls8{letter-spacing:4.526400pt;}
.ls0{letter-spacing:5.120000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws4{word-spacing:-15.680000pt;}
.wsc0{word-spacing:-12.909867pt;}
.ws6{word-spacing:-12.387200pt;}
.wsb5{word-spacing:-12.021333pt;}
.ws4b{word-spacing:-11.733333pt;}
.ws2{word-spacing:-11.498667pt;}
.ws67{word-spacing:-11.376000pt;}
.ws5{word-spacing:-11.237333pt;}
.wsa1{word-spacing:-11.146667pt;}
.ws9c{word-spacing:-11.136000pt;}
.ws21{word-spacing:-10.976000pt;}
.ws4c{word-spacing:-10.714667pt;}
.ws66{word-spacing:-10.560000pt;}
.ws22{word-spacing:-10.401067pt;}
.ws9e{word-spacing:-10.320000pt;}
.ws3{word-spacing:-9.837931pt;}
.ws9d{word-spacing:-9.600000pt;}
.ws7f{word-spacing:-9.386667pt;}
.wsc2{word-spacing:-7.221738pt;}
.wsc1{word-spacing:-6.703723pt;}
.ws1{word-spacing:-6.551365pt;}
.ws12{word-spacing:-5.853867pt;}
.wsa{word-spacing:-4.442667pt;}
.ws9{word-spacing:-4.024533pt;}
.ws3e{word-spacing:-3.606400pt;}
.wsb6{word-spacing:-2.770133pt;}
.ws15{word-spacing:-2.404267pt;}
.ws61{word-spacing:-2.352000pt;}
.wsa3{word-spacing:-2.247467pt;}
.ws45{word-spacing:-2.195200pt;}
.wsb2{word-spacing:-2.142933pt;}
.ws89{word-spacing:-2.090667pt;}
.wsc8{word-spacing:-2.038400pt;}
.wsb3{word-spacing:-1.986133pt;}
.ws78{word-spacing:-1.933867pt;}
.wsa7{word-spacing:-1.881600pt;}
.ws53{word-spacing:-1.829333pt;}
.ws8{word-spacing:-1.792000pt;}
.ws88{word-spacing:-1.777067pt;}
.wsb4{word-spacing:-1.724800pt;}
.ws70{word-spacing:-1.672533pt;}
.ws6e{word-spacing:-1.620267pt;}
.wsb9{word-spacing:-1.568000pt;}
.wse{word-spacing:-1.515733pt;}
.wsba{word-spacing:-1.463467pt;}
.ws3d{word-spacing:-1.411200pt;}
.ws8b{word-spacing:-1.358933pt;}
.ws2d{word-spacing:-1.306667pt;}
.ws2c{word-spacing:-1.254400pt;}
.ws18{word-spacing:-1.202133pt;}
.wsa5{word-spacing:-1.149867pt;}
.wsa2{word-spacing:-1.097600pt;}
.ws49{word-spacing:-1.045333pt;}
.ws47{word-spacing:-0.993067pt;}
.ws48{word-spacing:-0.940800pt;}
.ws3a{word-spacing:-0.888533pt;}
.ws60{word-spacing:-0.836267pt;}
.wsc6{word-spacing:-0.784000pt;}
.ws9b{word-spacing:-0.731733pt;}
.wsa9{word-spacing:-0.679467pt;}
.ws7b{word-spacing:-0.627200pt;}
.ws7c{word-spacing:-0.574933pt;}
.ws94{word-spacing:-0.522667pt;}
.ws6c{word-spacing:-0.470400pt;}
.ws24{word-spacing:-0.418133pt;}
.ws23{word-spacing:-0.365867pt;}
.ws5e{word-spacing:-0.261333pt;}
.ws69{word-spacing:-0.209067pt;}
.ws4f{word-spacing:-0.156800pt;}
.ws8a{word-spacing:-0.104533pt;}
.ws8f{word-spacing:-0.052267pt;}
.ws7d{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws71{word-spacing:0.052267pt;}
.ws83{word-spacing:0.104533pt;}
.ws5c{word-spacing:0.156800pt;}
.ws98{word-spacing:0.261333pt;}
.ws5d{word-spacing:0.313600pt;}
.wsb7{word-spacing:0.365867pt;}
.ws37{word-spacing:0.418133pt;}
.ws87{word-spacing:0.470400pt;}
.ws46{word-spacing:0.522667pt;}
.wsaa{word-spacing:0.574933pt;}
.ws2e{word-spacing:0.627200pt;}
.ws58{word-spacing:0.679467pt;}
.ws59{word-spacing:0.731733pt;}
.ws2f{word-spacing:0.784000pt;}
.ws63{word-spacing:0.940800pt;}
.wsac{word-spacing:1.045333pt;}
.ws75{word-spacing:1.097600pt;}
.ws50{word-spacing:1.149867pt;}
.ws14{word-spacing:1.202133pt;}
.ws2b{word-spacing:1.254400pt;}
.wsab{word-spacing:1.306667pt;}
.ws44{word-spacing:1.358933pt;}
.ws5a{word-spacing:1.411200pt;}
.ws43{word-spacing:1.463467pt;}
.ws31{word-spacing:1.515733pt;}
.wsf{word-spacing:1.568000pt;}
.ws79{word-spacing:1.672533pt;}
.ws36{word-spacing:1.724800pt;}
.ws97{word-spacing:1.777067pt;}
.ws35{word-spacing:1.829333pt;}
.ws76{word-spacing:1.881600pt;}
.ws92{word-spacing:1.933867pt;}
.wsbb{word-spacing:1.986133pt;}
.ws73{word-spacing:2.038400pt;}
.ws91{word-spacing:2.090667pt;}
.ws8d{word-spacing:2.142933pt;}
.wsb1{word-spacing:2.195200pt;}
.wsa8{word-spacing:2.247467pt;}
.ws62{word-spacing:2.299733pt;}
.ws55{word-spacing:2.352000pt;}
.ws3b{word-spacing:2.404267pt;}
.ws33{word-spacing:2.456533pt;}
.ws28{word-spacing:2.508800pt;}
.wsbe{word-spacing:2.561067pt;}
.ws4d{word-spacing:2.613333pt;}
.ws40{word-spacing:2.665600pt;}
.ws10{word-spacing:2.717867pt;}
.ws84{word-spacing:2.822400pt;}
.ws4e{word-spacing:2.874667pt;}
.ws11{word-spacing:2.926933pt;}
.ws2a{word-spacing:3.031467pt;}
.ws17{word-spacing:3.083733pt;}
.ws8c{word-spacing:3.136000pt;}
.ws39{word-spacing:3.188267pt;}
.ws57{word-spacing:3.240533pt;}
.ws30{word-spacing:3.292800pt;}
.ws6f{word-spacing:3.345067pt;}
.ws38{word-spacing:3.397333pt;}
.ws34{word-spacing:3.449600pt;}
.ws5b{word-spacing:3.501867pt;}
.wsa6{word-spacing:3.606400pt;}
.wsc3{word-spacing:3.710933pt;}
.ws42{word-spacing:3.763200pt;}
.ws52{word-spacing:3.920000pt;}
.ws41{word-spacing:4.024533pt;}
.ws29{word-spacing:4.076800pt;}
.ws32{word-spacing:4.181333pt;}
.ws4a{word-spacing:4.233600pt;}
.wsa0{word-spacing:4.285867pt;}
.ws20{word-spacing:4.338133pt;}
.ws5f{word-spacing:4.390400pt;}
.wsbf{word-spacing:4.442667pt;}
.ws72{word-spacing:4.494933pt;}
.ws6b{word-spacing:4.547200pt;}
.ws56{word-spacing:4.651733pt;}
.ws82{word-spacing:4.704000pt;}
.ws64{word-spacing:4.756267pt;}
.wsad{word-spacing:4.808533pt;}
.ws6a{word-spacing:4.860800pt;}
.wsbc{word-spacing:4.913067pt;}
.ws51{word-spacing:4.965333pt;}
.wsb0{word-spacing:5.017600pt;}
.wsc5{word-spacing:5.069867pt;}
.ws93{word-spacing:5.122133pt;}
.ws3f{word-spacing:5.174400pt;}
.wsb8{word-spacing:5.226667pt;}
.ws54{word-spacing:5.278933pt;}
.ws81{word-spacing:5.383467pt;}
.ws6d{word-spacing:5.540267pt;}
.ws3c{word-spacing:5.592533pt;}
.wsa4{word-spacing:5.644800pt;}
.wsc7{word-spacing:5.697067pt;}
.ws8e{word-spacing:5.749333pt;}
.ws80{word-spacing:5.801600pt;}
.ws74{word-spacing:5.958400pt;}
.wsbd{word-spacing:6.062933pt;}
.ws1e{word-spacing:6.219733pt;}
.ws77{word-spacing:6.324267pt;}
.wsc4{word-spacing:6.428800pt;}
.ws7a{word-spacing:6.533333pt;}
.ws86{word-spacing:6.846933pt;}
.ws19{word-spacing:6.899200pt;}
.ws85{word-spacing:7.212800pt;}
.ws96{word-spacing:7.474133pt;}
.ws1a{word-spacing:7.683200pt;}
.wsb{word-spacing:7.944533pt;}
.ws26{word-spacing:7.996800pt;}
.ws95{word-spacing:8.049067pt;}
.ws1d{word-spacing:8.205867pt;}
.ws25{word-spacing:8.624000pt;}
.wsaf{word-spacing:9.198933pt;}
.wsae{word-spacing:9.878400pt;}
.ws1f{word-spacing:11.080533pt;}
.ws9a{word-spacing:11.550933pt;}
.wsc{word-spacing:11.707733pt;}
.ws1b{word-spacing:12.178133pt;}
.ws99{word-spacing:12.439467pt;}
.wsd{word-spacing:12.805333pt;}
.ws16{word-spacing:13.275733pt;}
.ws1c{word-spacing:15.889067pt;}
.ws27{word-spacing:16.720000pt;}
.ws13{word-spacing:17.927467pt;}
.ws90{word-spacing:25.767467pt;}
.ws68{word-spacing:179.282667pt;}
.wsc9{word-spacing:350.270933pt;}
.wscc{word-spacing:380.608000pt;}
.ws7e{word-spacing:446.904533pt;}
.ws65{word-spacing:514.241600pt;}
.wsca{word-spacing:527.726933pt;}
.ws9f{word-spacing:603.409600pt;}
.wscb{word-spacing:711.168000pt;}
._11{margin-left:-2570.080000pt;}
._28{margin-left:-12.068267pt;}
._29{margin-left:-7.664000pt;}
._e{margin-left:-6.742400pt;}
._8{margin-left:-5.712747pt;}
._0{margin-left:-4.110400pt;}
._17{margin-left:-3.200427pt;}
._3{margin-left:-2.266667pt;}
._1{margin-left:-1.048533pt;}
._2{width:1.066667pt;}
._10{width:2.402667pt;}
._d{width:4.361067pt;}
._c{width:6.137600pt;}
._b{width:7.853973pt;}
._7{width:10.446400pt;}
._16{width:11.705067pt;}
._9{width:15.225600pt;}
._a{width:16.464000pt;}
._f{width:17.520000pt;}
._13{width:18.985600pt;}
._12{width:21.181333pt;}
._4{width:54.898320pt;}
._5{width:68.232000pt;}
._1b{width:76.539733pt;}
._2e{width:108.830933pt;}
._27{width:130.656533pt;}
._15{width:146.354133pt;}
._19{width:147.473067pt;}
._1a{width:154.011733pt;}
._24{width:155.904533pt;}
._23{width:169.681067pt;}
._2d{width:223.063467pt;}
._2c{width:240.007467pt;}
._2a{width:270.686933pt;}
._26{width:305.858667pt;}
._22{width:320.217493pt;}
._20{width:381.047467pt;}
._18{width:401.011200pt;}
._1e{width:409.069333pt;}
._21{width:433.549867pt;}
._25{width:438.581333pt;}
._2f{width:439.488000pt;}
._1f{width:590.752000pt;}
._1c{width:620.791467pt;}
._1d{width:668.847467pt;}
._2b{width:669.792000pt;}
._14{width:907.808000pt;}
._6{width:1110.494933pt;}
.fs6{font-size:30.471467pt;}
.fs5{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:43.530667pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:52.266667pt;}
.fs4{font-size:52.858667pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.799733pt;}
.y1{bottom:43.799867pt;}
.y20e{bottom:66.009867pt;}
.y6b{bottom:66.141600pt;}
.ya5{bottom:66.141733pt;}
.ya{bottom:66.141867pt;}
.y1d6{bottom:74.034133pt;}
.ye0{bottom:74.034267pt;}
.y20d{bottom:80.975867pt;}
.y249{bottom:80.984267pt;}
.ya4{bottom:81.163733pt;}
.y9{bottom:83.025867pt;}
.y1d5{bottom:88.434133pt;}
.ydf{bottom:88.434267pt;}
.y6a{bottom:88.585733pt;}
.y199{bottom:94.395733pt;}
.y1d2{bottom:95.634133pt;}
.y248{bottom:95.826800pt;}
.y20c{bottom:95.941867pt;}
.y1d4{bottom:102.834133pt;}
.y69{bottom:103.470800pt;}
.ya3{bottom:103.744667pt;}
.y285{bottom:107.377467pt;}
.y247{bottom:110.669200pt;}
.yde{bottom:110.950400pt;}
.y2f{bottom:114.986667pt;}
.y1d3{bottom:117.234133pt;}
.y68{bottom:118.356000pt;}
.y20b{bottom:118.466933pt;}
.y198{bottom:120.293333pt;}
.y120{bottom:121.609067pt;}
.y284{bottom:122.044133pt;}
.ydc{bottom:125.350400pt;}
.y246{bottom:125.511600pt;}
.ya2{bottom:126.325733pt;}
.y2e{bottom:129.653467pt;}
.y67{bottom:133.241067pt;}
.y20a{bottom:133.432800pt;}
.y197{bottom:134.693333pt;}
.y283{bottom:136.710800pt;}
.ydb{bottom:139.750400pt;}
.y245{bottom:140.354133pt;}
.ya1{bottom:141.347600pt;}
.y192{bottom:141.893333pt;}
.y2d{bottom:144.320267pt;}
.y11f{bottom:147.506800pt;}
.y209{bottom:148.398800pt;}
.y196{bottom:149.093333pt;}
.y282{bottom:151.377467pt;}
.ydd{bottom:154.150400pt;}
.y244{bottom:155.196667pt;}
.y66{bottom:155.685200pt;}
.y190{bottom:156.293333pt;}
.y2c{bottom:158.986933pt;}
.y11e{bottom:161.906800pt;}
.y1d1{bottom:162.266533pt;}
.y208{bottom:163.364800pt;}
.y195{bottom:163.493333pt;}
.ya0{bottom:163.928667pt;}
.y281{bottom:166.044133pt;}
.y243{bottom:170.039067pt;}
.y65{bottom:170.570267pt;}
.y191{bottom:170.693333pt;}
.y2b{bottom:173.653867pt;}
.y18b{bottom:174.751467pt;}
.yda{bottom:176.666533pt;}
.y194{bottom:177.893333pt;}
.y207{bottom:178.330800pt;}
.y9f{bottom:178.950667pt;}
.y155{bottom:179.356400pt;}
.yd0{bottom:179.808533pt;}
.y280{bottom:180.710800pt;}
.y1ce{bottom:183.866533pt;}
.y11d{bottom:184.422933pt;}
.y242{bottom:184.881467pt;}
.y64{bottom:185.455467pt;}
.y2a{bottom:188.320533pt;}
.y18a{bottom:189.151467pt;}
.y1d0{bottom:191.066533pt;}
.y193{bottom:192.293333pt;}
.y206{bottom:193.296800pt;}
.y9e{bottom:193.972533pt;}
.y154{bottom:194.023067pt;}
.ycf{bottom:194.208400pt;}
.y27f{bottom:195.377467pt;}
.yd9{bottom:199.182800pt;}
.y241{bottom:199.724000pt;}
.y63{bottom:200.340533pt;}
.y1cf{bottom:205.466533pt;}
.y11c{bottom:206.939067pt;}
.y153{bottom:208.689733pt;}
.y9d{bottom:208.994400pt;}
.y27e{bottom:210.044133pt;}
.yd8{bottom:213.582800pt;}
.y119{bottom:214.139200pt;}
.y240{bottom:214.566533pt;}
.y18f{bottom:214.809467pt;}
.y62{bottom:215.225600pt;}
.y205{bottom:215.821867pt;}
.y11b{bottom:221.339067pt;}
.y18d{bottom:222.009600pt;}
.y152{bottom:223.356400pt;}
.y9c{bottom:224.016400pt;}
.y27d{bottom:224.710800pt;}
.y1cd{bottom:227.982667pt;}
.yd7{bottom:227.982800pt;}
.y118{bottom:228.539200pt;}
.y18c{bottom:229.209600pt;}
.y29{bottom:229.444000pt;}
.y204{bottom:230.787867pt;}
.y23f{bottom:233.188533pt;}
.y11a{bottom:235.739200pt;}
.y61{bottom:237.669733pt;}
.y151{bottom:238.023067pt;}
.y9b{bottom:239.038267pt;}
.y27c{bottom:239.377467pt;}
.y1cb{bottom:242.382667pt;}
.yd6{bottom:242.382800pt;}
.y18e{bottom:243.609600pt;}
.y28{bottom:244.377467pt;}
.y203{bottom:245.753867pt;}
.yd1{bottom:249.582800pt;}
.y60{bottom:252.554800pt;}
.y150{bottom:252.689733pt;}
.y27b{bottom:254.044133pt;}
.y9a{bottom:254.060267pt;}
.y1cc{bottom:256.782667pt;}
.yd5{bottom:256.782800pt;}
.y115{bottom:258.255333pt;}
.y27{bottom:259.044267pt;}
.y202{bottom:260.719867pt;}
.y23e{bottom:263.904933pt;}
.y117{bottom:265.455333pt;}
.y189{bottom:266.125733pt;}
.y5f{bottom:267.440000pt;}
.y27a{bottom:268.710800pt;}
.y99{bottom:269.082133pt;}
.y14f{bottom:271.136000pt;}
.yd4{bottom:271.182800pt;}
.y113{bottom:272.655333pt;}
.y188{bottom:273.325733pt;}
.y26{bottom:273.711067pt;}
.y201{bottom:275.685733pt;}
.y23d{bottom:278.747333pt;}
.y1ca{bottom:279.298933pt;}
.y116{bottom:279.855333pt;}
.y5e{bottom:282.325067pt;}
.y279{bottom:283.377467pt;}
.y98{bottom:284.104133pt;}
.yd3{bottom:285.582800pt;}
.y114{bottom:287.055333pt;}
.y25{bottom:288.377867pt;}
.y200{bottom:290.651733pt;}
.y23c{bottom:293.589867pt;}
.y278{bottom:298.044133pt;}
.yd2{bottom:299.982800pt;}
.y14e{bottom:301.676667pt;}
.y1c9{bottom:301.815200pt;}
.y187{bottom:303.041867pt;}
.y24{bottom:303.044533pt;}
.y5d{bottom:304.769067pt;}
.y1ff{bottom:305.617733pt;}
.y97{bottom:306.685200pt;}
.y23b{bottom:308.432400pt;}
.y112{bottom:309.571467pt;}
.y185{bottom:310.241867pt;}
.y277{bottom:312.710800pt;}
.y1c8{bottom:316.215067pt;}
.y14d{bottom:316.343333pt;}
.y110{bottom:316.771467pt;}
.y184{bottom:317.441867pt;}
.y23{bottom:317.711333pt;}
.y5c{bottom:319.654267pt;}
.y1fe{bottom:320.583733pt;}
.y96{bottom:321.707067pt;}
.yce{bottom:322.498933pt;}
.y23a{bottom:323.274800pt;}
.y1c5{bottom:323.415200pt;}
.y10d{bottom:323.971467pt;}
.y276{bottom:327.377467pt;}
.ycd{bottom:329.698933pt;}
.y1c7{bottom:330.615067pt;}
.y14c{bottom:331.010000pt;}
.y10f{bottom:331.171467pt;}
.y186{bottom:331.841867pt;}
.y22{bottom:332.378133pt;}
.y5b{bottom:334.539333pt;}
.y1fd{bottom:335.549733pt;}
.y10c{bottom:338.371467pt;}
.y275{bottom:342.044133pt;}
.y95{bottom:344.288133pt;}
.y1c6{bottom:345.015200pt;}
.y10e{bottom:345.571467pt;}
.y239{bottom:345.676400pt;}
.y14b{bottom:345.676667pt;}
.y111{bottom:352.771467pt;}
.y183{bottom:354.358133pt;}
.y274{bottom:356.710800pt;}
.y5a{bottom:356.983467pt;}
.y1fc{bottom:358.074800pt;}
.y21{bottom:358.383467pt;}
.y94{bottom:359.310000pt;}
.ycc{bottom:359.415067pt;}
.y14a{bottom:360.343333pt;}
.y238{bottom:360.518800pt;}
.y1c4{bottom:367.531333pt;}
.y182{bottom:368.758133pt;}
.y273{bottom:371.377467pt;}
.y59{bottom:371.868533pt;}
.y1fb{bottom:373.040800pt;}
.y149{bottom:375.010000pt;}
.y10b{bottom:375.287733pt;}
.y237{bottom:375.361200pt;}
.y93{bottom:381.890933pt;}
.y1c3{bottom:381.931333pt;}
.y108{bottom:382.487733pt;}
.y20{bottom:384.866267pt;}
.y272{bottom:386.044133pt;}
.y58{bottom:386.753600pt;}
.y1fa{bottom:388.006800pt;}
.y1c0{bottom:389.131200pt;}
.y148{bottom:389.676667pt;}
.y10a{bottom:389.687733pt;}
.y236{bottom:390.203733pt;}
.y180{bottom:391.274267pt;}
.y1c2{bottom:396.331333pt;}
.y107{bottom:396.887733pt;}
.y92{bottom:396.912933pt;}
.y271{bottom:400.710800pt;}
.y57{bottom:401.638800pt;}
.y1f9{bottom:402.972800pt;}
.y109{bottom:404.087733pt;}
.y147{bottom:404.343333pt;}
.y235{bottom:405.046133pt;}
.y17e{bottom:405.674267pt;}
.ycb{bottom:406.971600pt;}
.y1c1{bottom:410.731333pt;}
.y181{bottom:412.874267pt;}
.y270{bottom:415.377467pt;}
.y16e{bottom:416.016267pt;}
.y56{bottom:416.523867pt;}
.y146{bottom:419.010000pt;}
.y91{bottom:419.494000pt;}
.y234{bottom:419.888667pt;}
.y17d{bottom:420.074267pt;}
.yca{bottom:422.114133pt;}
.y1f8{bottom:425.497867pt;}
.y106{bottom:426.603867pt;}
.y26f{bottom:430.044133pt;}
.y16d{bottom:430.416267pt;}
.y55{bottom:431.408933pt;}
.y1bf{bottom:433.247467pt;}
.y145{bottom:433.676667pt;}
.y17f{bottom:434.474267pt;}
.y90{bottom:434.515867pt;}
.y233{bottom:434.731067pt;}
.y1bc{bottom:440.447467pt;}
.y1f7{bottom:440.463733pt;}
.y1f{bottom:440.701867pt;}
.y105{bottom:441.003867pt;}
.yc9{bottom:441.036267pt;}
.y26e{bottom:444.710800pt;}
.y54{bottom:446.294133pt;}
.y1be{bottom:447.647467pt;}
.y2b5{bottom:447.867600pt;}
.y144{bottom:448.343333pt;}
.y8f{bottom:449.537867pt;}
.y232{bottom:449.573600pt;}
.y1bb{bottom:454.847467pt;}
.y1f6{bottom:455.429733pt;}
.y1e{bottom:455.635333pt;}
.y17c{bottom:456.990533pt;}
.y26d{bottom:459.377467pt;}
.y53{bottom:461.179200pt;}
.y1bd{bottom:462.047467pt;}
.y143{bottom:463.010000pt;}
.y178{bottom:464.190533pt;}
.y231{bottom:464.416000pt;}
.y8e{bottom:464.559733pt;}
.y1d{bottom:470.302133pt;}
.y2b3{bottom:470.383867pt;}
.y1f5{bottom:470.395733pt;}
.y17b{bottom:471.390533pt;}
.yc8{bottom:472.052933pt;}
.y26c{bottom:474.044133pt;}
.y52{bottom:476.064267pt;}
.y2b2{bottom:477.583867pt;}
.y142{bottom:477.676667pt;}
.y176{bottom:478.590533pt;}
.y230{bottom:479.258533pt;}
.y8d{bottom:479.581733pt;}
.y1ba{bottom:484.563733pt;}
.y2b4{bottom:484.783867pt;}
.y1c{bottom:484.968933pt;}
.y1f4{bottom:485.361733pt;}
.y17a{bottom:485.790533pt;}
.yc7{bottom:487.195467pt;}
.y104{bottom:488.084400pt;}
.y26b{bottom:488.710800pt;}
.y51{bottom:490.949333pt;}
.y141{bottom:492.343333pt;}
.y177{bottom:492.990533pt;}
.y22f{bottom:494.100933pt;}
.y8c{bottom:494.603600pt;}
.y1b9{bottom:498.963733pt;}
.y1b{bottom:499.635600pt;}
.y179{bottom:500.190533pt;}
.y1f3{bottom:500.327733pt;}
.yc6{bottom:502.338133pt;}
.y103{bottom:502.751067pt;}
.y26a{bottom:503.377467pt;}
.y50{bottom:505.834400pt;}
.y2b1{bottom:507.300000pt;}
.y22e{bottom:508.943467pt;}
.y8b{bottom:509.625600pt;}
.y1b8{bottom:513.363733pt;}
.y1a{bottom:514.302400pt;}
.y140{bottom:514.569067pt;}
.y102{bottom:517.417733pt;}
.yc5{bottom:517.480800pt;}
.y269{bottom:518.044133pt;}
.y4f{bottom:520.719467pt;}
.y2b0{bottom:521.700000pt;}
.y173{bottom:522.706667pt;}
.y1f2{bottom:522.852800pt;}
.y22d{bottom:523.785867pt;}
.y8a{bottom:524.647467pt;}
.y1b7{bottom:527.763733pt;}
.y19{bottom:528.969200pt;}
.yc4{bottom:532.623333pt;}
.y268{bottom:532.710800pt;}
.y1b2{bottom:534.963733pt;}
.y4e{bottom:535.604667pt;}
.y13f{bottom:536.794800pt;}
.y172{bottom:537.106667pt;}
.y1f1{bottom:537.818667pt;}
.y22c{bottom:538.628400pt;}
.y101{bottom:539.643467pt;}
.y89{bottom:539.669467pt;}
.y1b6{bottom:542.163733pt;}
.y18{bottom:543.636000pt;}
.y2af{bottom:544.216133pt;}
.y175{bottom:544.306667pt;}
.y267{bottom:547.377467pt;}
.yc3{bottom:547.766000pt;}
.y4d{bottom:550.489733pt;}
.y2ac{bottom:551.416133pt;}
.y13e{bottom:551.461467pt;}
.y16f{bottom:551.506667pt;}
.y1f0{bottom:552.784667pt;}
.y100{bottom:554.310133pt;}
.y88{bottom:554.691333pt;}
.y1b5{bottom:556.563733pt;}
.y2ae{bottom:558.616267pt;}
.y174{bottom:558.706667pt;}
.y22b{bottom:561.029867pt;}
.y266{bottom:562.044133pt;}
.yc2{bottom:562.908533pt;}
.y4c{bottom:565.374800pt;}
.y2ab{bottom:565.816267pt;}
.y171{bottom:565.906800pt;}
.y1ef{bottom:567.750667pt;}
.yff{bottom:568.976800pt;}
.y17{bottom:569.641333pt;}
.y87{bottom:569.713333pt;}
.y1b4{bottom:570.963733pt;}
.y2ad{bottom:573.016133pt;}
.y13d{bottom:573.687200pt;}
.y22a{bottom:575.872400pt;}
.y265{bottom:576.710800pt;}
.yc1{bottom:578.051200pt;}
.y4b{bottom:580.259867pt;}
.y170{bottom:580.306667pt;}
.yfe{bottom:583.643467pt;}
.y86{bottom:584.735333pt;}
.y1b3{bottom:585.363733pt;}
.y1ee{bottom:590.275733pt;}
.y229{bottom:590.714800pt;}
.y264{bottom:591.377467pt;}
.yc0{bottom:593.193733pt;}
.y4a{bottom:595.144933pt;}
.y2a9{bottom:595.532400pt;}
.y13c{bottom:595.912933pt;}
.y16{bottom:596.124133pt;}
.yfd{bottom:598.310133pt;}
.y85{bottom:599.757200pt;}
.y2a8{bottom:602.732400pt;}
.y16b{bottom:602.822933pt;}
.y1ed{bottom:605.241733pt;}
.y228{bottom:605.557333pt;}
.y263{bottom:606.044133pt;}
.y1b1{bottom:607.879867pt;}
.ybf{bottom:608.336400pt;}
.y2aa{bottom:609.932400pt;}
.y16a{bottom:610.022933pt;}
.y49{bottom:610.030133pt;}
.y13b{bottom:610.579600pt;}
.yfc{bottom:612.976800pt;}
.y84{bottom:614.779200pt;}
.y16c{bottom:617.222933pt;}
.y1ec{bottom:620.207733pt;}
.y262{bottom:620.710800pt;}
.ybe{bottom:623.478933pt;}
.y48{bottom:624.915200pt;}
.y13a{bottom:625.246267pt;}
.yfb{bottom:627.643467pt;}
.y227{bottom:627.958800pt;}
.y83{bottom:629.801067pt;}
.y2a5{bottom:632.448533pt;}
.y1eb{bottom:635.173733pt;}
.y261{bottom:635.377467pt;}
.ybd{bottom:638.621600pt;}
.y2a7{bottom:639.648533pt;}
.y169{bottom:639.739200pt;}
.y47{bottom:639.800267pt;}
.y139{bottom:639.912933pt;}
.yfa{bottom:642.310133pt;}
.y226{bottom:642.801333pt;}
.y82{bottom:644.822933pt;}
.y2a4{bottom:646.848533pt;}
.y168{bottom:646.939200pt;}
.y260{bottom:650.044133pt;}
.y1ea{bottom:650.139733pt;}
.y15{bottom:651.959733pt;}
.ybc{bottom:653.764267pt;}
.y2a1{bottom:654.048533pt;}
.y138{bottom:654.579600pt;}
.y46{bottom:654.685333pt;}
.y1b0{bottom:655.177600pt;}
.y225{bottom:657.643733pt;}
.y81{bottom:659.844933pt;}
.y2a3{bottom:661.248533pt;}
.yf9{bottom:664.535867pt;}
.y25f{bottom:664.710800pt;}
.y1e9{bottom:665.105733pt;}
.y14{bottom:666.893200pt;}
.y2a6{bottom:668.448533pt;}
.ybb{bottom:668.906800pt;}
.y45{bottom:669.570400pt;}
.y1af{bottom:670.061600pt;}
.y224{bottom:672.486267pt;}
.y80{bottom:674.866933pt;}
.y2a2{bottom:675.648533pt;}
.y137{bottom:676.805200pt;}
.yf8{bottom:679.202533pt;}
.y25e{bottom:679.377467pt;}
.y1e8{bottom:680.071600pt;}
.y13{bottom:681.559867pt;}
.yba{bottom:684.049333pt;}
.y44{bottom:684.455600pt;}
.y1ae{bottom:684.945600pt;}
.y7f{bottom:689.888800pt;}
.yf7{bottom:693.869200pt;}
.y25d{bottom:694.044133pt;}
.y223{bottom:694.887733pt;}
.y1e7{bottom:695.037733pt;}
.y12{bottom:696.226667pt;}
.y29e{bottom:698.164667pt;}
.y136{bottom:699.031067pt;}
.yb9{bottom:699.192000pt;}
.y43{bottom:699.340667pt;}
.y1ad{bottom:699.829600pt;}
.y167{bottom:701.219600pt;}
.y7e{bottom:704.910800pt;}
.y2a0{bottom:705.364800pt;}
.yf6{bottom:708.535867pt;}
.y25c{bottom:708.710800pt;}
.y222{bottom:709.730267pt;}
.y1e6{bottom:710.003600pt;}
.y11{bottom:710.893600pt;}
.y29d{bottom:712.564800pt;}
.y135{bottom:713.697733pt;}
.yb8{bottom:714.334667pt;}
.y1ac{bottom:714.713600pt;}
.y166{bottom:715.886267pt;}
.y42{bottom:718.005200pt;}
.y29a{bottom:719.764667pt;}
.y7d{bottom:719.932667pt;}
.yf5{bottom:723.202533pt;}
.y25b{bottom:723.377467pt;}
.y221{bottom:724.572667pt;}
.y1e5{bottom:724.969600pt;}
.y10{bottom:725.560267pt;}
.y29c{bottom:726.964800pt;}
.y134{bottom:728.364400pt;}
.yb7{bottom:729.477200pt;}
.y1ab{bottom:729.597467pt;}
.y165{bottom:730.552933pt;}
.y29f{bottom:734.164667pt;}
.y7c{bottom:734.954533pt;}
.yf4{bottom:737.869200pt;}
.y25a{bottom:738.044133pt;}
.y220{bottom:739.415200pt;}
.y1e4{bottom:739.935600pt;}
.yf{bottom:740.227067pt;}
.y29b{bottom:741.364800pt;}
.y133{bottom:743.031067pt;}
.y1aa{bottom:744.481467pt;}
.yb6{bottom:744.619733pt;}
.y41{bottom:748.764267pt;}
.y7b{bottom:749.976533pt;}
.yf3{bottom:752.535867pt;}
.y259{bottom:752.710800pt;}
.y1e3{bottom:754.901600pt;}
.y132{bottom:757.697733pt;}
.ye{bottom:759.245067pt;}
.y1a9{bottom:759.365333pt;}
.y21f{bottom:761.816667pt;}
.yb5{bottom:763.542000pt;}
.y40{bottom:763.649467pt;}
.y299{bottom:763.880933pt;}
.yf2{bottom:767.202533pt;}
.y258{bottom:767.377467pt;}
.y7a{bottom:768.778000pt;}
.y1e2{bottom:769.867600pt;}
.y164{bottom:771.676400pt;}
.y131{bottom:772.364400pt;}
.y1a8{bottom:774.249333pt;}
.y21e{bottom:776.659200pt;}
.y297{bottom:778.281067pt;}
.y3f{bottom:778.534533pt;}
.yf1{bottom:781.869200pt;}
.y257{bottom:782.044133pt;}
.yd{bottom:784.678800pt;}
.y130{bottom:787.031067pt;}
.y1e1{bottom:788.613067pt;}
.y1a7{bottom:789.133333pt;}
.y21d{bottom:791.501600pt;}
.y296{bottom:792.680933pt;}
.y3e{bottom:793.419600pt;}
.yb4{bottom:794.558533pt;}
.y79{bottom:795.516533pt;}
.y256{bottom:796.710800pt;}
.y163{bottom:797.574000pt;}
.y12f{bottom:801.697733pt;}
.y1a6{bottom:804.017200pt;}
.y21c{bottom:806.344133pt;}
.y298{bottom:807.080933pt;}
.y3d{bottom:808.304667pt;}
.yb3{bottom:809.701200pt;}
.y255{bottom:811.377467pt;}
.y162{bottom:811.974000pt;}
.yc{bottom:814.730267pt;}
.y12e{bottom:816.364400pt;}
.y1a5{bottom:818.901200pt;}
.y1e0{bottom:819.453067pt;}
.y21b{bottom:821.186533pt;}
.yf0{bottom:822.992533pt;}
.y3c{bottom:823.189733pt;}
.yb2{bottom:824.843733pt;}
.y254{bottom:826.044133pt;}
.y161{bottom:826.374000pt;}
.y78{bottom:826.412400pt;}
.yb{bottom:827.396933pt;}
.y295{bottom:829.597200pt;}
.y12d{bottom:831.031067pt;}
.y1a4{bottom:833.785200pt;}
.y1df{bottom:834.419067pt;}
.y21a{bottom:836.028933pt;}
.y292{bottom:836.797067pt;}
.y3b{bottom:838.074933pt;}
.yb1{bottom:839.986400pt;}
.y253{bottom:840.710800pt;}
.y160{bottom:840.774000pt;}
.y77{bottom:841.434400pt;}
.y294{bottom:843.997200pt;}
.y12c{bottom:845.697733pt;}
.yef{bottom:848.890267pt;}
.y219{bottom:850.871467pt;}
.y291{bottom:851.197067pt;}
.y1a3{bottom:852.448667pt;}
.y3a{bottom:852.960000pt;}
.yb0{bottom:855.128933pt;}
.y15f{bottom:855.174000pt;}
.y252{bottom:855.377467pt;}
.y76{bottom:856.456400pt;}
.y293{bottom:858.397200pt;}
.y12b{bottom:860.364400pt;}
.yed{bottom:863.290267pt;}
.y218{bottom:865.714000pt;}
.y39{bottom:867.845067pt;}
.y251{bottom:870.044133pt;}
.yaf{bottom:870.271600pt;}
.y75{bottom:871.478267pt;}
.y8{bottom:873.135467pt;}
.y12a{bottom:875.031067pt;}
.y1de{bottom:875.841733pt;}
.yee{bottom:877.690133pt;}
.y290{bottom:880.913333pt;}
.ye9{bottom:881.748267pt;}
.y38{bottom:882.730267pt;}
.y1a2{bottom:883.206667pt;}
.y250{bottom:884.710800pt;}
.yae{bottom:885.414267pt;}
.y74{bottom:886.500267pt;}
.y217{bottom:888.115467pt;}
.y129{bottom:889.697733pt;}
.y15e{bottom:892.090133pt;}
.y28e{bottom:895.313333pt;}
.ye8{bottom:896.148267pt;}
.y7{bottom:897.402133pt;}
.y37{bottom:897.615333pt;}
.y1a1{bottom:898.090533pt;}
.y24f{bottom:899.377467pt;}
.yec{bottom:900.206400pt;}
.yad{bottom:900.556800pt;}
.y1dd{bottom:902.038800pt;}
.y216{bottom:902.957867pt;}
.y128{bottom:904.364400pt;}
.y73{bottom:909.081200pt;}
.y28f{bottom:909.713333pt;}
.y36{bottom:912.500400pt;}
.yea{bottom:914.606400pt;}
.yac{bottom:915.699333pt;}
.y1dc{bottom:916.438667pt;}
.y1a0{bottom:916.754133pt;}
.y24e{bottom:917.823600pt;}
.y6{bottom:921.668933pt;}
.y72{bottom:924.103200pt;}
.y215{bottom:925.359467pt;}
.y127{bottom:926.590000pt;}
.y35{bottom:927.385467pt;}
.yeb{bottom:929.006400pt;}
.y1db{bottom:930.838800pt;}
.yab{bottom:930.842000pt;}
.y28d{bottom:932.229467pt;}
.y15d{bottom:936.206400pt;}
.y71{bottom:939.125067pt;}
.y28c{bottom:939.429467pt;}
.y214{bottom:940.201867pt;}
.y15c{bottom:943.406400pt;}
.y1da{bottom:945.238800pt;}
.yaa{bottom:945.984667pt;}
.y34{bottom:946.050133pt;}
.y19f{bottom:947.512000pt;}
.y126{bottom:948.815733pt;}
.ye7{bottom:951.522533pt;}
.y70{bottom:954.147067pt;}
.y213{bottom:955.044400pt;}
.y24d{bottom:955.923333pt;}
.y15b{bottom:957.806400pt;}
.ye6{bottom:958.722533pt;}
.y1d9{bottom:959.638800pt;}
.y19e{bottom:962.396000pt;}
.y125{bottom:963.482400pt;}
.y1d7{bottom:966.838800pt;}
.ya9{bottom:968.686267pt;}
.y28b{bottom:969.145733pt;}
.y212{bottom:969.886933pt;}
.y24c{bottom:970.590000pt;}
.y1d8{bottom:974.038800pt;}
.y288{bottom:976.345733pt;}
.y6f{bottom:976.728000pt;}
.y4{bottom:977.133867pt;}
.y19d{bottom:977.280000pt;}
.y124{bottom:978.149067pt;}
.y15a{bottom:980.322533pt;}
.y28a{bottom:983.545733pt;}
.ya8{bottom:983.828933pt;}
.y24b{bottom:985.256667pt;}
.y157{bottom:987.522533pt;}
.ye5{bottom:988.438667pt;}
.y3{bottom:990.467200pt;}
.y287{bottom:990.745733pt;}
.y5{bottom:991.292800pt;}
.y6e{bottom:991.750000pt;}
.y19c{bottom:992.163867pt;}
.y211{bottom:992.288400pt;}
.y123{bottom:992.815733pt;}
.y159{bottom:994.722533pt;}
.y289{bottom:997.945733pt;}
.y24a{bottom:999.923333pt;}
.y156{bottom:1001.922533pt;}
.ye4{bottom:1002.838800pt;}
.ya7{bottom:1006.530533pt;}
.y6d{bottom:1006.771867pt;}
.y33{bottom:1007.045467pt;}
.y19b{bottom:1007.047867pt;}
.y210{bottom:1007.130800pt;}
.y122{bottom:1007.482400pt;}
.y158{bottom:1009.122533pt;}
.ye1{bottom:1010.038800pt;}
.ye3{bottom:1017.238800pt;}
.ya6{bottom:1021.673200pt;}
.y6c{bottom:1021.793867pt;}
.y32{bottom:1021.930533pt;}
.y19a{bottom:1021.931867pt;}
.y20f{bottom:1021.973333pt;}
.y121{bottom:1022.149067pt;}
.ye2{bottom:1031.638800pt;}
.y286{bottom:1035.577333pt;}
.y31{bottom:1036.815733pt;}
.y30{bottom:1071.727600pt;}
.h8{height:28.955733pt;}
.h6{height:30.337765pt;}
.h2{height:33.114667pt;}
.h7{height:37.802667pt;}
.h4{height:37.845333pt;}
.h9{height:41.290667pt;}
.hc{height:42.528000pt;}
.he{height:42.576000pt;}
.h10{height:46.308267pt;}
.h3{height:46.360533pt;}
.hb{height:51.978667pt;}
.ha{height:66.154667pt;}
.hf{height:71.328000pt;}
.hd{height:71.376000pt;}
.h5{height:80.330667pt;}
.h11{height:100.176000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x1e{left:77.367333pt;}
.x3{left:82.431467pt;}
.x9{left:86.929200pt;}
.x21{left:89.211733pt;}
.x12{left:92.845067pt;}
.x8{left:94.488267pt;}
.x31{left:102.047200pt;}
.x2b{left:105.659867pt;}
.x1a{left:109.606267pt;}
.x25{left:110.662267pt;}
.xe{left:113.385733pt;}
.x15{left:119.654800pt;}
.x3a{left:120.930667pt;}
.x10{left:122.202667pt;}
.xb{left:123.757067pt;}
.x6{left:124.887600pt;}
.x32{left:129.501867pt;}
.xf{left:130.411733pt;}
.x2d{left:136.062933pt;}
.xa{left:151.545467pt;}
.x5{left:160.519067pt;}
.x24{left:166.229600pt;}
.x20{left:171.439067pt;}
.x2a{left:181.820267pt;}
.xc{left:191.650400pt;}
.x13{left:198.178400pt;}
.x14{left:230.815733pt;}
.x2f{left:235.524800pt;}
.x1b{left:253.228400pt;}
.x16{left:257.019467pt;}
.x27{left:276.308533pt;}
.x2e{left:279.685067pt;}
.x7{left:282.723600pt;}
.x11{left:288.887067pt;}
.x33{left:290.589600pt;}
.x17{left:292.274933pt;}
.x34{left:303.777467pt;}
.x35{left:306.465467pt;}
.x2c{left:334.259067pt;}
.x30{left:335.291733pt;}
.x22{left:346.219600pt;}
.x3c{left:387.450400pt;}
.x1c{left:389.291333pt;}
.x18{left:393.082400pt;}
.xd{left:398.018267pt;}
.x36{left:403.989600pt;}
.x37{left:417.177467pt;}
.x38{left:418.359467pt;}
.x19{left:426.832000pt;}
.x28{left:457.725867pt;}
.x3b{left:510.250400pt;}
.x1d{left:525.354267pt;}
.x4{left:539.370133pt;}
.x39{left:561.792667pt;}
.x23{left:603.227600pt;}
.x29{left:608.906933pt;}
.x26{left:626.414400pt;}
.x1{left:701.301067pt;}
.x1f{left:703.457200pt;}
}




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