
    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_10e3419bb373a19b711010ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_b8d7253ce679fad6a55e48f1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_3dda6bd2625bde2115d2b6e0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_c2376e0c9c416ba5255bc9db.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_34329baaece5bb7cf5ca95cb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_60b45967e9249cb235085cb8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_4d880829fcf632934db8bdc0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_c1fd30ea122abfc89806d85e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.058594;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;}
.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);}
.v7{vertical-align:-13.980000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.902000px;}
.v1{vertical-align:17.013000px;}
.v6{vertical-align:30.024000px;}
.v4{vertical-align:36.000000px;}
.v5{vertical-align:71.160000px;}
.lsc{letter-spacing:-7.371000px;}
.ls1d{letter-spacing:-6.360000px;}
.ls1c{letter-spacing:-5.508000px;}
.ls1e{letter-spacing:-4.980000px;}
.ls23{letter-spacing:-4.482000px;}
.ls6{letter-spacing:-4.428000px;}
.ls39{letter-spacing:-4.320000px;}
.ls2a{letter-spacing:-2.760000px;}
.ls29{letter-spacing:-2.553000px;}
.ls19{letter-spacing:-1.863000px;}
.ls25{letter-spacing:-1.782000px;}
.ls20{letter-spacing:-1.560000px;}
.ls2e{letter-spacing:-1.386000px;}
.lsf{letter-spacing:-1.173000px;}
.ls13{letter-spacing:-1.053000px;}
.lse{letter-spacing:-0.855000px;}
.ls30{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.627000px;}
.ls10{letter-spacing:-0.552000px;}
.ls24{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.ls12{letter-spacing:0.004200px;}
.ls4a{letter-spacing:0.009720px;}
.ls49{letter-spacing:0.015420px;}
.ls2f{letter-spacing:0.315000px;}
.ls26{letter-spacing:0.414000px;}
.ls14{letter-spacing:0.483000px;}
.ls16{letter-spacing:0.510600px;}
.ls4{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.458000px;}
.ls1f{letter-spacing:1.920000px;}
.ls8{letter-spacing:2.400000px;}
.ls27{letter-spacing:3.036000px;}
.ls22{letter-spacing:3.225000px;}
.ls2d{letter-spacing:3.591000px;}
.ls11{letter-spacing:4.125000px;}
.ls17{letter-spacing:4.140000px;}
.ls0{letter-spacing:4.200000px;}
.ls9{letter-spacing:4.275000px;}
.ls38{letter-spacing:4.650000px;}
.ls7{letter-spacing:5.760000px;}
.lsb{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.300000px;}
.ls18{letter-spacing:6.348000px;}
.ls15{letter-spacing:7.314000px;}
.ls28{letter-spacing:8.160156px;}
.ls21{letter-spacing:8.160756px;}
.ls3{letter-spacing:8.400000px;}
.ls2c{letter-spacing:8.820000px;}
.ls42{letter-spacing:355.140000px;}
.ls3b{letter-spacing:381.420000px;}
.ls40{letter-spacing:437.760000px;}
.ls47{letter-spacing:445.320000px;}
.ls3c{letter-spacing:445.920000px;}
.ls3f{letter-spacing:446.580000px;}
.ls32{letter-spacing:451.680000px;}
.ls48{letter-spacing:452.760000px;}
.ls37{letter-spacing:452.880000px;}
.ls41{letter-spacing:453.600000px;}
.ls31{letter-spacing:455.460000px;}
.ls45{letter-spacing:455.820000px;}
.ls46{letter-spacing:456.000000px;}
.ls3d{letter-spacing:456.420000px;}
.ls44{letter-spacing:458.280000px;}
.ls36{letter-spacing:459.180000px;}
.ls34{letter-spacing:459.540000px;}
.ls3e{letter-spacing:460.080000px;}
.ls43{letter-spacing:460.740000px;}
.ls33{letter-spacing:460.800000px;}
.ls35{letter-spacing:461.700000px;}
.ls3a{letter-spacing:468.720000px;}
.ls4b{letter-spacing:511.260000px;}
.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;}
}
.ws4b{word-spacing:-26.523000px;}
.ws0{word-spacing:-25.920000px;}
.ws53{word-spacing:-25.725000px;}
.ws8{word-spacing:-25.350000px;}
.ws28{word-spacing:-25.200000px;}
.ws44{word-spacing:-24.300000px;}
.ws4a{word-spacing:-24.219000px;}
.ws52{word-spacing:-22.860000px;}
.wsa{word-spacing:-22.740000px;}
.wse{word-spacing:-19.389000px;}
.wsf{word-spacing:-18.630000px;}
.ws9{word-spacing:-18.102000px;}
.ws51{word-spacing:-18.018000px;}
.ws4c{word-spacing:-17.703000px;}
.ws2d{word-spacing:-17.253000px;}
.wsc{word-spacing:-17.043000px;}
.ws3a{word-spacing:-16.860000px;}
.ws17{word-spacing:-16.200000px;}
.ws25{word-spacing:-15.870000px;}
.ws4d{word-spacing:-15.561000px;}
.wsb{word-spacing:-15.390000px;}
.ws2c{word-spacing:-15.180000px;}
.ws24{word-spacing:-15.174000px;}
.ws50{word-spacing:-14.931000px;}
.ws81{word-spacing:-14.820000px;}
.ws73{word-spacing:-14.580000px;}
.ws48{word-spacing:-14.490000px;}
.ws49{word-spacing:-14.283000px;}
.ws4f{word-spacing:-14.175000px;}
.ws2e{word-spacing:-13.338000px;}
.ws14{word-spacing:-12.960000px;}
.ws46{word-spacing:-11.556000px;}
.ws26{word-spacing:-11.303787px;}
.ws45{word-spacing:-8.856000px;}
.ws3{word-spacing:-8.400000px;}
.ws31{word-spacing:-6.348000px;}
.ws4e{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws6{word-spacing:-5.760000px;}
.ws7{word-spacing:-4.200000px;}
.ws2f{word-spacing:-4.140000px;}
.wsd{word-spacing:-2.400000px;}
.ws43{word-spacing:-1.920000px;}
.ws4{word-spacing:-1.260000px;}
.ws34{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws32{word-spacing:0.069000px;}
.ws5{word-spacing:0.240000px;}
.ws47{word-spacing:0.270000px;}
.ws27{word-spacing:0.552000px;}
.ws33{word-spacing:0.627000px;}
.ws10{word-spacing:0.855000px;}
.ws2b{word-spacing:1.053000px;}
.ws2a{word-spacing:3.312000px;}
.ws30{word-spacing:4.761000px;}
.ws29{word-spacing:4.899000px;}
.ws3e{word-spacing:59.820000px;}
.ws19{word-spacing:79.800000px;}
.ws1c{word-spacing:93.600000px;}
.ws1f{word-spacing:101.640000px;}
.ws21{word-spacing:105.540000px;}
.ws16{word-spacing:106.440000px;}
.ws18{word-spacing:119.760000px;}
.ws3d{word-spacing:159.840000px;}
.ws6b{word-spacing:163.026000px;}
.ws35{word-spacing:180.780000px;}
.ws42{word-spacing:183.240000px;}
.ws54{word-spacing:189.869400px;}
.ws36{word-spacing:193.620000px;}
.ws39{word-spacing:199.800000px;}
.ws3c{word-spacing:207.240000px;}
.ws41{word-spacing:213.060000px;}
.ws38{word-spacing:216.834000px;}
.ws1b{word-spacing:232.212000px;}
.ws40{word-spacing:233.520000px;}
.ws69{word-spacing:240.420000px;}
.ws37{word-spacing:242.184000px;}
.ws6e{word-spacing:249.774000px;}
.ws11{word-spacing:253.567800px;}
.ws72{word-spacing:268.470000px;}
.ws3b{word-spacing:268.674000px;}
.ws3f{word-spacing:274.614000px;}
.ws15{word-spacing:286.482000px;}
.ws7e{word-spacing:287.160000px;}
.ws1a{word-spacing:294.360000px;}
.ws7f{word-spacing:294.900000px;}
.ws71{word-spacing:296.382000px;}
.ws74{word-spacing:297.060000px;}
.ws80{word-spacing:298.020000px;}
.ws7b{word-spacing:298.860000px;}
.ws75{word-spacing:300.180000px;}
.ws20{word-spacing:300.780000px;}
.ws78{word-spacing:311.160000px;}
.ws76{word-spacing:312.180000px;}
.ws7c{word-spacing:313.980000px;}
.ws23{word-spacing:314.700000px;}
.ws79{word-spacing:318.240000px;}
.ws77{word-spacing:318.420000px;}
.ws6a{word-spacing:331.260000px;}
.ws7a{word-spacing:331.560000px;}
.ws12{word-spacing:399.038400px;}
.ws7d{word-spacing:401.100000px;}
.ws62{word-spacing:404.460000px;}
.ws61{word-spacing:413.880000px;}
.ws55{word-spacing:416.901600px;}
.ws60{word-spacing:420.420000px;}
.ws65{word-spacing:426.600000px;}
.ws64{word-spacing:427.200000px;}
.ws66{word-spacing:428.040000px;}
.ws68{word-spacing:429.540000px;}
.ws63{word-spacing:430.920000px;}
.ws5e{word-spacing:433.020000px;}
.ws5c{word-spacing:433.140000px;}
.ws56{word-spacing:433.560000px;}
.ws5f{word-spacing:433.800000px;}
.ws59{word-spacing:436.980000px;}
.ws5d{word-spacing:437.880000px;}
.ws57{word-spacing:438.660000px;}
.ws58{word-spacing:439.860000px;}
.ws70{word-spacing:444.240000px;}
.ws5b{word-spacing:447.600000px;}
.ws6d{word-spacing:448.080000px;}
.ws6c{word-spacing:448.620000px;}
.ws5a{word-spacing:450.360000px;}
.ws67{word-spacing:455.220000px;}
.ws6f{word-spacing:481.920000px;}
.ws22{word-spacing:513.330000px;}
.ws1e{word-spacing:522.660000px;}
.ws1d{word-spacing:1037.592000px;}
._d{margin-left:-8.424000px;}
._25{margin-left:-7.074000px;}
._c{margin-left:-5.864400px;}
._7{margin-left:-4.182000px;}
._6{margin-left:-2.496000px;}
._8{margin-left:-1.362000px;}
._4{width:1.190700px;}
._1{width:2.400000px;}
._3{width:3.572400px;}
._9{width:5.132100px;}
._5{width:6.603900px;}
._a{width:7.948200px;}
._b{width:9.259800px;}
._17{width:10.267314px;}
._10{width:11.712000px;}
._12{width:13.656900px;}
._22{width:14.665500px;}
._15{width:15.931200px;}
._23{width:17.480700px;}
._33{width:19.422900px;}
._14{width:20.987400px;}
._21{width:23.296500px;}
._24{width:24.341100px;}
._38{width:26.428500px;}
._30{width:27.704160px;}
._39{width:29.364600px;}
._32{width:34.052700px;}
._37{width:40.257600px;}
._16{width:43.445160px;}
._36{width:46.978200px;}
._35{width:50.760600px;}
._34{width:51.927000px;}
._74{width:57.840000px;}
._5e{width:74.889300px;}
._61{width:79.698600px;}
._75{width:82.596000px;}
._e{width:85.554000px;}
._59{width:106.629300px;}
._5f{width:109.509300px;}
._76{width:111.600000px;}
._67{width:115.236000px;}
._69{width:122.040000px;}
._1b{width:128.280000px;}
._27{width:129.876000px;}
._78{width:131.040000px;}
._63{width:132.987300px;}
._5c{width:135.540000px;}
._77{width:139.980000px;}
._6d{width:147.360000px;}
._70{width:150.900000px;}
._4a{width:157.080000px;}
._2c{width:169.071300px;}
._26{width:170.874000px;}
._2d{width:176.700000px;}
._28{width:189.471300px;}
._62{width:191.769300px;}
._2a{width:197.175300px;}
._2e{width:219.735300px;}
._3b{width:229.182900px;}
._66{width:235.344000px;}
._29{width:238.020000px;}
._2b{width:243.135300px;}
._68{width:250.500000px;}
._11{width:260.610000px;}
._54{width:262.080000px;}
._53{width:273.720000px;}
._6e{width:274.920000px;}
._6b{width:276.540000px;}
._51{width:289.740000px;}
._4f{width:291.060000px;}
._40{width:303.540000px;}
._4d{width:315.360000px;}
._6a{width:316.440000px;}
._48{width:320.760000px;}
._49{width:322.620000px;}
._4c{width:327.000000px;}
._6f{width:331.080000px;}
._19{width:334.980000px;}
._6c{width:336.360000px;}
._47{width:338.760000px;}
._73{width:346.740000px;}
._72{width:363.600000px;}
._52{width:409.680000px;}
._5d{width:423.660000px;}
._3e{width:425.760000px;}
._3d{width:430.080000px;}
._45{width:436.800000px;}
._41{width:444.840000px;}
._44{width:450.360000px;}
._46{width:451.380000px;}
._42{width:452.400000px;}
._3f{width:453.840000px;}
._3a{width:456.115200px;}
._f{width:457.232400px;}
._18{width:458.397600px;}
._1f{width:460.057200px;}
._31{width:461.251500px;}
._2f{width:462.410100px;}
._43{width:464.460000px;}
._5b{width:465.480000px;}
._3c{width:467.220000px;}
._71{width:468.660000px;}
._4b{width:472.080000px;}
._60{width:483.180000px;}
._65{width:486.177900px;}
._64{width:491.700000px;}
._5a{width:501.120000px;}
._57{width:502.356000px;}
._55{width:505.962000px;}
._58{width:512.103300px;}
._56{width:514.662000px;}
._1a{width:519.720000px;}
._50{width:527.280000px;}
._1c{width:540.120000px;}
._4e{width:544.140000px;}
._0{width:578.400000px;}
._1d{width:766.275300px;}
._1e{width:955.711200px;}
._2{width:958.831200px;}
._13{width:962.881200px;}
._20{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y270{bottom:97.408200px;}
.yf1{bottom:106.140750px;}
.y44{bottom:106.208700px;}
.y1dc{bottom:106.213350px;}
.y1bb{bottom:106.244850px;}
.yb8{bottom:106.261500px;}
.y69{bottom:106.287300px;}
.y21f{bottom:106.290450px;}
.y17a{bottom:106.293300px;}
.y91{bottom:106.293450px;}
.y1f{bottom:106.296150px;}
.ycd{bottom:106.296300px;}
.y134{bottom:106.296450px;}
.y1f9{bottom:106.296750px;}
.y199{bottom:106.318800px;}
.y24d{bottom:109.203300px;}
.y26f{bottom:114.661200px;}
.y68{bottom:123.540300px;}
.y21e{bottom:123.543450px;}
.y179{bottom:123.546300px;}
.y90{bottom:123.546450px;}
.y1f8{bottom:126.231750px;}
.yf0{bottom:126.409500px;}
.y43{bottom:126.494700px;}
.ycc{bottom:126.544800px;}
.y133{bottom:126.544950px;}
.yb7{bottom:126.685500px;}
.y1ba{bottom:126.704100px;}
.y24c{bottom:127.203300px;}
.y1db{bottom:127.286850px;}
.y1e{bottom:127.311150px;}
.y198{bottom:128.353050px;}
.y26e{bottom:134.909700px;}
.y67{bottom:140.793300px;}
.y21d{bottom:140.796450px;}
.y178{bottom:143.794800px;}
.y8f{bottom:143.794950px;}
.y24b{bottom:144.828300px;}
.y110{bottom:145.036200px;}
.y132{bottom:145.045500px;}
.y1f7{bottom:146.166750px;}
.yef{bottom:146.678250px;}
.y42{bottom:146.780700px;}
.yb6{bottom:147.109500px;}
.y1b9{bottom:147.163350px;}
.y1d{bottom:148.294650px;}
.y1da{bottom:148.360350px;}
.y197{bottom:150.387300px;}
.y66{bottom:158.046300px;}
.y21c{bottom:161.044950px;}
.y10f{bottom:162.289200px;}
.y8e{bottom:162.289500px;}
.y131{bottom:162.298500px;}
.y1f6{bottom:166.101750px;}
.y24a{bottom:166.323300px;}
.yee{bottom:166.947000px;}
.y41{bottom:167.066700px;}
.yb5{bottom:167.533500px;}
.y1c{bottom:167.809650px;}
.y1d9{bottom:169.433850px;}
.ycb{bottom:172.337850px;}
.y1b8{bottom:176.111850px;}
.y65{bottom:178.294800px;}
.y10e{bottom:179.542200px;}
.y8d{bottom:179.542500px;}
.y249{bottom:180.457500px;}
.y196{bottom:180.926550px;}
.y130{bottom:182.547000px;}
.y26d{bottom:183.124050px;}
.yed{bottom:187.215750px;}
.y1b{bottom:187.324650px;}
.y40{bottom:187.352700px;}
.yb4{bottom:187.957500px;}
.yca{bottom:192.589350px;}
.y1b7{bottom:196.571100px;}
.y156{bottom:196.792200px;}
.y64{bottom:196.795200px;}
.y8c{bottom:196.795500px;}
.y1f5{bottom:198.801750px;}
.y1d8{bottom:199.012350px;}
.y26c{bottom:201.124050px;}
.y248{bottom:201.952500px;}
.y195{bottom:202.960800px;}
.y1a{bottom:206.839650px;}
.yec{bottom:207.484500px;}
.y3f{bottom:207.638700px;}
.yb3{bottom:208.381500px;}
.y177{bottom:208.827900px;}
.y21b{bottom:209.318700px;}
.yc9{bottom:212.840850px;}
.y155{bottom:214.045200px;}
.y63{bottom:214.048200px;}
.y8b{bottom:214.048500px;}
.y247{bottom:216.239250px;}
.y26b{bottom:219.124050px;}
.y1d7{bottom:220.085850px;}
.y194{bottom:224.995050px;}
.y1b6{bottom:225.519600px;}
.y19{bottom:226.354650px;}
.y12f{bottom:226.559100px;}
.y21a{bottom:226.943700px;}
.yeb{bottom:227.753250px;}
.y3e{bottom:227.924700px;}
.yb2{bottom:228.805500px;}
.y176{bottom:229.855650px;}
.y154{bottom:231.298200px;}
.y8a{bottom:231.301500px;}
.yc8{bottom:233.092350px;}
.y246{bottom:233.864250px;}
.y62{bottom:234.296700px;}
.y26a{bottom:237.184050px;}
.y1d6{bottom:241.159350px;}
.y219{bottom:244.568700px;}
.y18{bottom:245.869650px;}
.y12e{bottom:247.362600px;}
.yea{bottom:248.022000px;}
.y3d{bottom:248.210700px;}
.yb1{bottom:249.229500px;}
.y175{bottom:250.883400px;}
.y245{bottom:251.489250px;}
.y153{bottom:251.546700px;}
.yc7{bottom:253.343850px;}
.y1b5{bottom:254.468100px;}
.y292{bottom:255.079050px;}
.y269{bottom:255.247350px;}
.y193{bottom:255.534300px;}
.y1f4{bottom:256.996200px;}
.y218{bottom:262.193700px;}
.y17{bottom:265.384650px;}
.y12d{bottom:268.166100px;}
.ye9{bottom:268.290750px;}
.y3c{bottom:268.496700px;}
.y244{bottom:269.114250px;}
.yb0{bottom:269.653500px;}
.y152{bottom:270.047250px;}
.y1d5{bottom:270.737850px;}
.y268{bottom:271.744350px;}
.y174{bottom:271.911150px;}
.yc6{bottom:273.595350px;}
.y1b4{bottom:274.927350px;}
.y291{bottom:275.329050px;}
.y192{bottom:277.568550px;}
.y89{bottom:278.309400px;}
.y10d{bottom:278.335800px;}
.y217{bottom:279.818700px;}
.y1f3{bottom:284.422200px;}
.y16{bottom:284.899650px;}
.y243{bottom:286.739250px;}
.y151{bottom:287.300250px;}
.y267{bottom:288.241350px;}
.ye8{bottom:288.559500px;}
.y3b{bottom:288.782700px;}
.y61{bottom:288.920850px;}
.y12c{bottom:288.969600px;}
.yaf{bottom:290.077500px;}
.y1d4{bottom:291.811350px;}
.y173{bottom:292.938900px;}
.yc5{bottom:293.846850px;}
.y1b3{bottom:295.386600px;}
.y290{bottom:295.579050px;}
.y216{bottom:297.443700px;}
.y10c{bottom:298.708050px;}
.y88{bottom:301.027650px;}
.y242{bottom:304.364250px;}
.y15{bottom:304.414650px;}
.y266{bottom:304.738350px;}
.y150{bottom:307.548750px;}
.y191{bottom:308.107800px;}
.ye7{bottom:308.828250px;}
.y3a{bottom:309.068700px;}
.y60{bottom:309.172350px;}
.y12b{bottom:309.773100px;}
.yae{bottom:310.501500px;}
.y1f2{bottom:311.869200px;}
.y1d3{bottom:312.884850px;}
.y172{bottom:313.966650px;}
.yc4{bottom:314.098350px;}
.y215{bottom:315.068700px;}
.y28f{bottom:315.829050px;}
.y10b{bottom:319.080300px;}
.y241{bottom:321.989250px;}
.y87{bottom:323.745900px;}
.y14{bottom:323.929650px;}
.y1b2{bottom:324.335100px;}
.y265{bottom:324.343350px;}
.ye6{bottom:329.097000px;}
.y39{bottom:329.354700px;}
.y5f{bottom:329.423850px;}
.y190{bottom:330.142050px;}
.y12a{bottom:330.576600px;}
.yad{bottom:330.918600px;}
.y214{bottom:332.693700px;}
.yc3{bottom:334.349850px;}
.y171{bottom:334.994400px;}
.y1f1{bottom:339.316200px;}
.y10a{bottom:339.452550px;}
.y240{bottom:339.614250px;}
.y1d2{bottom:342.463350px;}
.y13{bottom:343.444650px;}
.y1b1{bottom:344.794350px;}
.y86{bottom:346.464150px;}
.y28e{bottom:348.829050px;}
.ye5{bottom:349.365750px;}
.y38{bottom:349.640700px;}
.y213{bottom:350.318700px;}
.yac{bottom:351.342600px;}
.y129{bottom:351.380100px;}
.y14f{bottom:351.645900px;}
.y18f{bottom:352.176300px;}
.yc2{bottom:354.601350px;}
.y170{bottom:355.979850px;}
.y23f{bottom:357.239250px;}
.y264{bottom:357.404250px;}
.y1d1{bottom:363.536850px;}
.y1b0{bottom:365.253600px;}
.y212{bottom:367.943700px;}
.ye4{bottom:369.634500px;}
.y37{bottom:369.926700px;}
.y5e{bottom:370.937400px;}
.yab{bottom:371.677350px;}
.y14e{bottom:372.052650px;}
.y128{bottom:372.183600px;}
.y109{bottom:372.569850px;}
.y23e{bottom:374.864250px;}
.y12{bottom:375.709650px;}
.y16f{bottom:377.007600px;}
.y18e{bottom:382.715550px;}
.y211{bottom:385.568700px;}
.ye3{bottom:389.903250px;}
.y36{bottom:390.212700px;}
.yaa{bottom:392.101350px;}
.y14d{bottom:392.459400px;}
.y23d{bottom:392.489250px;}
.y127{bottom:392.987100px;}
.y1d0{bottom:393.115350px;}
.y1af{bottom:394.202100px;}
.y5d{bottom:394.933650px;}
.y108{bottom:396.707850px;}
.y16e{bottom:398.035350px;}
.y28d{bottom:400.534050px;}
.y210{bottom:403.193700px;}
.y18d{bottom:404.749800px;}
.y85{bottom:409.232100px;}
.y23c{bottom:410.114250px;}
.ye2{bottom:410.172000px;}
.y35{bottom:410.498700px;}
.ya9{bottom:412.525350px;}
.y14c{bottom:412.866150px;}
.y126{bottom:413.790600px;}
.y1cf{bottom:414.188850px;}
.y1ae{bottom:414.661350px;}
.yc1{bottom:415.351350px;}
.y28c{bottom:418.534050px;}
.y16d{bottom:419.063100px;}
.y20f{bottom:420.818700px;}
.y107{bottom:420.845850px;}
.y263{bottom:422.864250px;}
.y23b{bottom:427.739250px;}
.ye1{bottom:430.440750px;}
.y34{bottom:430.784700px;}
.y84{bottom:431.957100px;}
.ya8{bottom:432.949350px;}
.y14b{bottom:433.272900px;}
.y11{bottom:433.506900px;}
.y1ce{bottom:435.262350px;}
.y18c{bottom:435.289050px;}
.y28b{bottom:436.534050px;}
.y20e{bottom:438.443700px;}
.y1f0{bottom:439.073850px;}
.y16c{bottom:440.090850px;}
.y262{bottom:440.864250px;}
.y1ad{bottom:443.609850px;}
.y23a{bottom:445.364250px;}
.y83{bottom:449.957100px;}
.ye0{bottom:450.709500px;}
.y33{bottom:451.070700px;}
.ya7{bottom:453.373350px;}
.y14a{bottom:453.679650px;}
.y28a{bottom:454.534050px;}
.y20d{bottom:456.074400px;}
.y5c{bottom:457.177350px;}
.y18b{bottom:457.323300px;}
.y261{bottom:458.489250px;}
.y1ef{bottom:459.753600px;}
.y10{bottom:460.512900px;}
.y16b{bottom:461.118600px;}
.y125{bottom:462.645150px;}
.y239{bottom:462.989250px;}
.y1ac{bottom:464.069100px;}
.y1cd{bottom:464.840850px;}
.ydf{bottom:470.978250px;}
.y20c{bottom:471.072900px;}
.y32{bottom:471.356700px;}
.y289{bottom:472.534050px;}
.y82{bottom:472.682100px;}
.ya6{bottom:473.797350px;}
.y149{bottom:474.086400px;}
.y106{bottom:474.745800px;}
.y260{bottom:476.489250px;}
.y5b{bottom:477.428850px;}
.y1ee{bottom:480.433350px;}
.y238{bottom:480.614250px;}
.y124{bottom:480.645150px;}
.y16a{bottom:482.146350px;}
.y1ab{bottom:484.528350px;}
.y1cc{bottom:485.914350px;}
.yf{bottom:487.518900px;}
.y18a{bottom:487.862550px;}
.y288{bottom:490.534050px;}
.y81{bottom:490.682100px;}
.yde{bottom:491.247000px;}
.y25f{bottom:494.114250px;}
.ya5{bottom:494.221350px;}
.y148{bottom:494.493150px;}
.y105{bottom:495.124950px;}
.y5a{bottom:497.680350px;}
.y20b{bottom:497.688450px;}
.y237{bottom:498.239250px;}
.y169{bottom:503.174100px;}
.y123{bottom:503.370150px;}
.y1aa{bottom:504.971850px;}
.y287{bottom:508.534050px;}
.y80{bottom:508.682100px;}
.y1ed{bottom:509.618100px;}
.y189{bottom:509.896800px;}
.y25e{bottom:512.114250px;}
.y31{bottom:512.897550px;}
.ye{bottom:514.524900px;}
.ya4{bottom:514.645350px;}
.y147{bottom:514.899900px;}
.y1cb{bottom:515.492850px;}
.y104{bottom:515.587050px;}
.y236{bottom:515.864250px;}
.y59{bottom:517.931850px;}
.y122{bottom:521.370150px;}
.y168{bottom:524.201850px;}
.y286{bottom:526.594050px;}
.y25d{bottom:529.739250px;}
.y1ec{bottom:530.297850px;}
.y7f{bottom:531.407100px;}
.y20a{bottom:531.447750px;}
.y188{bottom:531.931050px;}
.ydd{bottom:532.761150px;}
.y235{bottom:533.489250px;}
.y1a9{bottom:533.920350px;}
.ya3{bottom:535.069350px;}
.y146{bottom:535.306650px;}
.y103{bottom:535.959300px;}
.y1ca{bottom:536.566350px;}
.y58{bottom:538.183350px;}
.y121{bottom:544.095150px;}
.y285{bottom:544.594050px;}
.y167{bottom:545.229600px;}
.y25c{bottom:547.739250px;}
.y7e{bottom:549.407100px;}
.y1eb{bottom:550.977600px;}
.y234{bottom:551.114250px;}
.y187{bottom:553.965300px;}
.y1a8{bottom:554.379600px;}
.ya2{bottom:555.493350px;}
.y145{bottom:555.713400px;}
.y102{bottom:556.331550px;}
.ydc{bottom:556.777650px;}
.y1c9{bottom:557.639850px;}
.y57{bottom:558.434850px;}
.y120{bottom:562.095150px;}
.y284{bottom:562.594050px;}
.yd{bottom:562.810950px;}
.y25b{bottom:565.364250px;}
.y166{bottom:566.257350px;}
.y233{bottom:568.739250px;}
.y1ea{bottom:571.657350px;}
.y7d{bottom:572.132100px;}
.ya1{bottom:575.917350px;}
.y144{bottom:576.120150px;}
.y101{bottom:576.703800px;}
.y56{bottom:578.686350px;}
.y283{bottom:580.594050px;}
.y209{bottom:581.397750px;}
.y1a7{bottom:583.328100px;}
.y25a{bottom:583.364250px;}
.y186{bottom:584.504550px;}
.y11f{bottom:585.240150px;}
.y232{bottom:586.364250px;}
.y1c8{bottom:587.218350px;}
.y165{bottom:587.285100px;}
.yc{bottom:594.319950px;}
.y7c{bottom:594.857100px;}
.y30{bottom:595.478250px;}
.ya0{bottom:596.341350px;}
.y143{bottom:596.526900px;}
.y100{bottom:597.076050px;}
.y282{bottom:598.594050px;}
.y55{bottom:598.937850px;}
.y1e9{bottom:600.842100px;}
.y259{bottom:600.989250px;}
.y208{bottom:601.572750px;}
.y11e{bottom:603.240150px;}
.y1a6{bottom:603.787350px;}
.y231{bottom:603.989250px;}
.y1c7{bottom:608.291850px;}
.y164{bottom:608.312850px;}
.y2f{bottom:616.508250px;}
.y281{bottom:616.594050px;}
.y9f{bottom:616.765350px;}
.y142{bottom:616.933650px;}
.yff{bottom:617.448300px;}
.y7a{bottom:617.601600px;}
.y258{bottom:618.614250px;}
.ydb{bottom:618.980550px;}
.y54{bottom:619.189350px;}
.y11d{bottom:621.240150px;}
.y1e8{bottom:621.521850px;}
.y230{bottom:621.614250px;}
.y207{bottom:621.747750px;}
.y1a5{bottom:624.246600px;}
.yb{bottom:625.828950px;}
.y163{bottom:629.340600px;}
.y1c6{bottom:629.365350px;}
.y280{bottom:634.654050px;}
.y79{bottom:635.601600px;}
.y257{bottom:636.614250px;}
.y9e{bottom:637.189350px;}
.y141{bottom:637.379850px;}
.y2e{bottom:637.557750px;}
.yfe{bottom:637.820550px;}
.y22f{bottom:639.239250px;}
.yda{bottom:639.249300px;}
.yc0{bottom:639.439350px;}
.y53{bottom:639.440850px;}
.y206{bottom:641.922750px;}
.y11c{bottom:643.965150px;}
.y162{bottom:650.368350px;}
.y1e7{bottom:650.706600px;}
.y27f{bottom:652.654050px;}
.y1a4{bottom:653.195100px;}
.y78{bottom:653.601600px;}
.y256{bottom:654.614250px;}
.y22e{bottom:656.864250px;}
.y2d{bottom:657.087750px;}
.ya{bottom:657.337950px;}
.y9d{bottom:657.613350px;}
.y140{bottom:657.786600px;}
.yfd{bottom:658.192800px;}
.y1c5{bottom:658.943850px;}
.y185{bottom:659.156550px;}
.yd9{bottom:659.518050px;}
.ybf{bottom:659.690850px;}
.y52{bottom:659.692350px;}
.y11b{bottom:661.965150px;}
.y205{bottom:662.097750px;}
.y27e{bottom:670.654050px;}
.y1e6{bottom:671.386350px;}
.y161{bottom:671.396100px;}
.y7b{bottom:671.582100px;}
.y77{bottom:671.601600px;}
.y255{bottom:672.614250px;}
.y1a3{bottom:673.654350px;}
.y22d{bottom:674.489250px;}
.y2c{bottom:676.617750px;}
.y9c{bottom:678.037350px;}
.y13f{bottom:678.193350px;}
.yfc{bottom:678.565050px;}
.yd8{bottom:679.786800px;}
.ybe{bottom:679.942350px;}
.y51{bottom:679.943850px;}
.y1c4{bottom:680.017350px;}
.y184{bottom:681.184800px;}
.y204{bottom:682.272750px;}
.y11a{bottom:684.690150px;}
.y27d{bottom:688.654050px;}
.y9{bottom:688.846950px;}
.y254{bottom:690.614250px;}
.y1e5{bottom:692.066100px;}
.y22c{bottom:692.114250px;}
.y160{bottom:692.423850px;}
.y1a2{bottom:694.113600px;}
.y76{bottom:694.326600px;}
.y2b{bottom:696.147750px;}
.y9b{bottom:698.461350px;}
.y13e{bottom:698.600100px;}
.yfb{bottom:698.937300px;}
.yd7{bottom:700.055550px;}
.ybd{bottom:700.193850px;}
.y50{bottom:700.195350px;}
.y203{bottom:702.447750px;}
.y119{bottom:702.690150px;}
.y183{bottom:703.213050px;}
.y27c{bottom:706.714050px;}
.y253{bottom:708.239250px;}
.y1c3{bottom:709.595850px;}
.y22b{bottom:709.739250px;}
.y75{bottom:712.326600px;}
.y1e4{bottom:712.745850px;}
.y15f{bottom:713.451600px;}
.y2a{bottom:715.677750px;}
.y9a{bottom:718.885350px;}
.y13d{bottom:719.006850px;}
.yfa{bottom:719.309550px;}
.yd6{bottom:720.324300px;}
.y8{bottom:720.355950px;}
.ybc{bottom:720.445350px;}
.y4f{bottom:720.446850px;}
.y202{bottom:722.622750px;}
.y1a1{bottom:723.062100px;}
.y27b{bottom:724.714050px;}
.y182{bottom:725.241300px;}
.y118{bottom:725.415150px;}
.y252{bottom:726.239250px;}
.y22a{bottom:727.364250px;}
.y117{bottom:730.140150px;}
.y74{bottom:730.326600px;}
.y1c2{bottom:730.669350px;}
.y15e{bottom:734.479350px;}
.y29{bottom:735.207750px;}
.y99{bottom:739.309350px;}
.y13c{bottom:739.413600px;}
.yf9{bottom:739.681800px;}
.yd5{bottom:740.593050px;}
.ybb{bottom:740.696850px;}
.y4e{bottom:740.698350px;}
.y1e3{bottom:741.930600px;}
.y27a{bottom:742.774050px;}
.y201{bottom:742.797750px;}
.y1a0{bottom:743.521350px;}
.y251{bottom:743.864250px;}
.y229{bottom:744.989250px;}
.y181{bottom:747.269550px;}
.y116{bottom:748.140150px;}
.y1c1{bottom:751.742850px;}
.y73{bottom:753.051600px;}
.y28{bottom:754.737750px;}
.y15d{bottom:755.507100px;}
.y98{bottom:759.733350px;}
.y13b{bottom:759.820350px;}
.yf8{bottom:760.054050px;}
.y279{bottom:760.834050px;}
.yd4{bottom:760.861800px;}
.yba{bottom:760.948350px;}
.y4d{bottom:760.949850px;}
.y250{bottom:761.489250px;}
.y1e2{bottom:762.610350px;}
.y228{bottom:762.614250px;}
.y200{bottom:762.972750px;}
.y19f{bottom:763.980600px;}
.y180{bottom:769.297800px;}
.y72{bottom:771.051600px;}
.y27{bottom:774.267750px;}
.y15c{bottom:776.534850px;}
.y115{bottom:778.177500px;}
.y278{bottom:778.894050px;}
.y24f{bottom:779.489250px;}
.y97{bottom:780.157350px;}
.y13a{bottom:780.232650px;}
.y227{bottom:780.239250px;}
.yf7{bottom:780.447150px;}
.yd3{bottom:781.130550px;}
.y4c{bottom:781.192350px;}
.yb9{bottom:781.199850px;}
.y1c0{bottom:781.321350px;}
.y7{bottom:781.617000px;}
.y1ff{bottom:783.147750px;}
.y1e1{bottom:783.290100px;}
.y17f{bottom:791.326050px;}
.y19e{bottom:792.929100px;}
.y71{bottom:793.776600px;}
.y26{bottom:793.797750px;}
.y277{bottom:796.894050px;}
.y24e{bottom:797.489250px;}
.y15b{bottom:797.562600px;}
.y226{bottom:797.864250px;}
.y96{bottom:800.581350px;}
.y139{bottom:800.667600px;}
.yf6{bottom:800.819400px;}
.yd2{bottom:801.390900px;}
.y4b{bottom:801.443850px;}
.y1bf{bottom:802.394850px;}
.y1fe{bottom:803.322750px;}
.y6{bottom:811.137000px;}
.y1e0{bottom:812.474850px;}
.y25{bottom:813.327750px;}
.y17e{bottom:813.354300px;}
.y19d{bottom:813.388350px;}
.y276{bottom:814.954050px;}
.y225{bottom:815.489250px;}
.y70{bottom:816.508050px;}
.y15a{bottom:818.590350px;}
.y114{bottom:819.487350px;}
.y95{bottom:821.005350px;}
.y138{bottom:821.074350px;}
.yf5{bottom:821.191650px;}
.yd1{bottom:821.643000px;}
.y4a{bottom:821.695350px;}
.y1fd{bottom:823.497750px;}
.y6d{bottom:825.508050px;}
.y1be{bottom:831.973350px;}
.y5{bottom:832.152000px;}
.y24{bottom:832.857750px;}
.y275{bottom:833.014050px;}
.y224{bottom:833.114250px;}
.y19c{bottom:833.831850px;}
.y6f{bottom:834.508050px;}
.y17d{bottom:835.382550px;}
.y159{bottom:839.618100px;}
.y113{bottom:840.290850px;}
.y94{bottom:841.429350px;}
.y137{bottom:841.481100px;}
.yf4{bottom:841.570800px;}
.y1df{bottom:841.659600px;}
.yd0{bottom:841.911750px;}
.y49{bottom:841.946850px;}
.y6c{bottom:843.508050px;}
.y1fc{bottom:843.672750px;}
.y223{bottom:850.739250px;}
.y274{bottom:851.077200px;}
.y23{bottom:852.387750px;}
.y6e{bottom:852.508050px;}
.y1bd{bottom:853.046850px;}
.y17c{bottom:857.410800px;}
.y158{bottom:860.645850px;}
.y112{bottom:861.094350px;}
.y4{bottom:861.672000px;}
.y93{bottom:861.853350px;}
.y136{bottom:861.887850px;}
.yf3{bottom:861.949950px;}
.ycf{bottom:862.172100px;}
.y48{bottom:862.198350px;}
.y1de{bottom:862.339350px;}
.y19b{bottom:862.780350px;}
.y1fb{bottom:863.847750px;}
.y273{bottom:867.574200px;}
.y222{bottom:868.364250px;}
.y22{bottom:871.917750px;}
.y6b{bottom:873.244500px;}
.y157{bottom:881.673600px;}
.y111{bottom:881.897850px;}
.y92{bottom:882.277350px;}
.y135{bottom:882.294600px;}
.yf2{bottom:882.329100px;}
.yce{bottom:882.432600px;}
.y47{bottom:882.449850px;}
.y1bc{bottom:882.625350px;}
.y3{bottom:882.687000px;}
.y1dd{bottom:883.019100px;}
.y19a{bottom:883.239600px;}
.y1fa{bottom:884.022750px;}
.y272{bottom:884.071200px;}
.y221{bottom:885.994950px;}
.y271{bottom:900.568200px;}
.y17b{bottom:900.706200px;}
.y220{bottom:900.993450px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y6a{bottom:904.193550px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y45{bottom:966.189000px;}
.hf{height:31.992188px;}
.h21{height:33.067031px;}
.h12{height:37.256836px;}
.hb{height:39.064875px;}
.h1a{height:39.990234px;}
.h10{height:40.054688px;}
.h23{height:42.738750px;}
.he{height:45.061523px;}
.h7{height:45.375000px;}
.h24{height:49.511719px;}
.h11{height:50.068359px;}
.hc{height:51.046875px;}
.h25{height:51.884766px;}
.h4{height:56.718750px;}
.hd{height:56.735550px;}
.h3{height:59.554688px;}
.h19{height:59.667480px;}
.h1e{height:65.113763px;}
.h9{height:65.226562px;}
.h1d{height:65.251162px;}
.h14{height:65.254162px;}
.h15{height:65.256563px;}
.h16{height:65.259563px;}
.h17{height:65.260162px;}
.ha{height:65.262563px;}
.h18{height:65.293163px;}
.h1f{height:65.395763px;}
.h13{height:65.583563px;}
.h2{height:70.898438px;}
.h8{height:76.570312px;}
.h6{height:79.406250px;}
.h20{height:81.070875px;}
.h1b{height:92.718750px;}
.h5{height:102.093750px;}
.h1c{height:127.878750px;}
.h22{height:128.718750px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:82.214250px;}
.x6{left:83.745600px;}
.x1{left:85.039350px;}
.x1f{left:87.952500px;}
.x1b{left:89.169600px;}
.x21{left:90.337500px;}
.x2b{left:91.734000px;}
.x2a{left:92.773050px;}
.x29{left:93.849450px;}
.x2e{left:100.143900px;}
.x8{left:105.030600px;}
.x5{left:106.365600px;}
.x26{left:109.793700px;}
.x28{left:110.798700px;}
.x22{left:130.883700px;}
.x33{left:182.686350px;}
.x9{left:212.663850px;}
.x27{left:215.963700px;}
.xb{left:217.989000px;}
.xc{left:219.297000px;}
.x2d{left:221.148300px;}
.x2c{left:222.213300px;}
.x20{left:224.347500px;}
.x3{left:230.597400px;}
.x4{left:231.866400px;}
.x2{left:233.581500px;}
.xa{left:244.211250px;}
.xd{left:267.873000px;}
.xe{left:274.761000px;}
.x34{left:322.936350px;}
.xf{left:325.257000px;}
.x10{left:326.565000px;}
.x23{left:328.673700px;}
.x11{left:375.141000px;}
.x12{left:382.029000px;}
.x25{left:421.088700px;}
.x13{left:432.525000px;}
.x14{left:433.833000px;}
.x24{left:435.563700px;}
.x2f{left:457.920900px;}
.x1e{left:462.682500px;}
.x17{left:481.305000px;}
.x15{left:483.861000px;}
.x16{left:486.609000px;}
.x1d{left:489.504600px;}
.x1c{left:495.339600px;}
.x18{left:537.489000px;}
.x35{left:547.231350px;}
.x30{left:559.859400px;}
.x32{left:562.059900px;}
.x31{left:566.406900px;}
.x19{left:589.665000px;}
.x1a{left:596.553000px;}
@media print{
.v7{vertical-align:-12.426667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.357333pt;}
.v1{vertical-align:15.122667pt;}
.v6{vertical-align:26.688000pt;}
.v4{vertical-align:32.000000pt;}
.v5{vertical-align:63.253333pt;}
.lsc{letter-spacing:-6.552000pt;}
.ls1d{letter-spacing:-5.653333pt;}
.ls1c{letter-spacing:-4.896000pt;}
.ls1e{letter-spacing:-4.426667pt;}
.ls23{letter-spacing:-3.984000pt;}
.ls6{letter-spacing:-3.936000pt;}
.ls39{letter-spacing:-3.840000pt;}
.ls2a{letter-spacing:-2.453333pt;}
.ls29{letter-spacing:-2.269333pt;}
.ls19{letter-spacing:-1.656000pt;}
.ls25{letter-spacing:-1.584000pt;}
.ls20{letter-spacing:-1.386667pt;}
.ls2e{letter-spacing:-1.232000pt;}
.lsf{letter-spacing:-1.042667pt;}
.ls13{letter-spacing:-0.936000pt;}
.lse{letter-spacing:-0.760000pt;}
.ls30{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.557333pt;}
.ls10{letter-spacing:-0.490667pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.ls12{letter-spacing:0.003733pt;}
.ls4a{letter-spacing:0.008640pt;}
.ls49{letter-spacing:0.013707pt;}
.ls2f{letter-spacing:0.280000pt;}
.ls26{letter-spacing:0.368000pt;}
.ls14{letter-spacing:0.429333pt;}
.ls16{letter-spacing:0.453867pt;}
.ls4{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.296000pt;}
.ls1f{letter-spacing:1.706667pt;}
.ls8{letter-spacing:2.133333pt;}
.ls27{letter-spacing:2.698667pt;}
.ls22{letter-spacing:2.866667pt;}
.ls2d{letter-spacing:3.192000pt;}
.ls11{letter-spacing:3.666667pt;}
.ls17{letter-spacing:3.680000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls9{letter-spacing:3.800000pt;}
.ls38{letter-spacing:4.133333pt;}
.ls7{letter-spacing:5.120000pt;}
.lsb{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.600000pt;}
.ls18{letter-spacing:5.642667pt;}
.ls15{letter-spacing:6.501333pt;}
.ls28{letter-spacing:7.253472pt;}
.ls21{letter-spacing:7.254005pt;}
.ls3{letter-spacing:7.466667pt;}
.ls2c{letter-spacing:7.840000pt;}
.ls42{letter-spacing:315.680000pt;}
.ls3b{letter-spacing:339.040000pt;}
.ls40{letter-spacing:389.120000pt;}
.ls47{letter-spacing:395.840000pt;}
.ls3c{letter-spacing:396.373333pt;}
.ls3f{letter-spacing:396.960000pt;}
.ls32{letter-spacing:401.493333pt;}
.ls48{letter-spacing:402.453333pt;}
.ls37{letter-spacing:402.560000pt;}
.ls41{letter-spacing:403.200000pt;}
.ls31{letter-spacing:404.853333pt;}
.ls45{letter-spacing:405.173333pt;}
.ls46{letter-spacing:405.333333pt;}
.ls3d{letter-spacing:405.706667pt;}
.ls44{letter-spacing:407.360000pt;}
.ls36{letter-spacing:408.160000pt;}
.ls34{letter-spacing:408.480000pt;}
.ls3e{letter-spacing:408.960000pt;}
.ls43{letter-spacing:409.546667pt;}
.ls33{letter-spacing:409.600000pt;}
.ls35{letter-spacing:410.400000pt;}
.ls3a{letter-spacing:416.640000pt;}
.ls4b{letter-spacing:454.453333pt;}
.ws4b{word-spacing:-23.576000pt;}
.ws0{word-spacing:-23.040000pt;}
.ws53{word-spacing:-22.866667pt;}
.ws8{word-spacing:-22.533333pt;}
.ws28{word-spacing:-22.400000pt;}
.ws44{word-spacing:-21.600000pt;}
.ws4a{word-spacing:-21.528000pt;}
.ws52{word-spacing:-20.320000pt;}
.wsa{word-spacing:-20.213333pt;}
.wse{word-spacing:-17.234667pt;}
.wsf{word-spacing:-16.560000pt;}
.ws9{word-spacing:-16.090667pt;}
.ws51{word-spacing:-16.016000pt;}
.ws4c{word-spacing:-15.736000pt;}
.ws2d{word-spacing:-15.336000pt;}
.wsc{word-spacing:-15.149333pt;}
.ws3a{word-spacing:-14.986667pt;}
.ws17{word-spacing:-14.400000pt;}
.ws25{word-spacing:-14.106667pt;}
.ws4d{word-spacing:-13.832000pt;}
.wsb{word-spacing:-13.680000pt;}
.ws2c{word-spacing:-13.493333pt;}
.ws24{word-spacing:-13.488000pt;}
.ws50{word-spacing:-13.272000pt;}
.ws81{word-spacing:-13.173333pt;}
.ws73{word-spacing:-12.960000pt;}
.ws48{word-spacing:-12.880000pt;}
.ws49{word-spacing:-12.696000pt;}
.ws4f{word-spacing:-12.600000pt;}
.ws2e{word-spacing:-11.856000pt;}
.ws14{word-spacing:-11.520000pt;}
.ws46{word-spacing:-10.272000pt;}
.ws26{word-spacing:-10.047811pt;}
.ws45{word-spacing:-7.872000pt;}
.ws3{word-spacing:-7.466667pt;}
.ws31{word-spacing:-5.642667pt;}
.ws4e{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws6{word-spacing:-5.120000pt;}
.ws7{word-spacing:-3.733333pt;}
.ws2f{word-spacing:-3.680000pt;}
.wsd{word-spacing:-2.133333pt;}
.ws43{word-spacing:-1.706667pt;}
.ws4{word-spacing:-1.120000pt;}
.ws34{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws32{word-spacing:0.061333pt;}
.ws5{word-spacing:0.213333pt;}
.ws47{word-spacing:0.240000pt;}
.ws27{word-spacing:0.490667pt;}
.ws33{word-spacing:0.557333pt;}
.ws10{word-spacing:0.760000pt;}
.ws2b{word-spacing:0.936000pt;}
.ws2a{word-spacing:2.944000pt;}
.ws30{word-spacing:4.232000pt;}
.ws29{word-spacing:4.354667pt;}
.ws3e{word-spacing:53.173333pt;}
.ws19{word-spacing:70.933333pt;}
.ws1c{word-spacing:83.200000pt;}
.ws1f{word-spacing:90.346667pt;}
.ws21{word-spacing:93.813333pt;}
.ws16{word-spacing:94.613333pt;}
.ws18{word-spacing:106.453333pt;}
.ws3d{word-spacing:142.080000pt;}
.ws6b{word-spacing:144.912000pt;}
.ws35{word-spacing:160.693333pt;}
.ws42{word-spacing:162.880000pt;}
.ws54{word-spacing:168.772800pt;}
.ws36{word-spacing:172.106667pt;}
.ws39{word-spacing:177.600000pt;}
.ws3c{word-spacing:184.213333pt;}
.ws41{word-spacing:189.386667pt;}
.ws38{word-spacing:192.741333pt;}
.ws1b{word-spacing:206.410667pt;}
.ws40{word-spacing:207.573333pt;}
.ws69{word-spacing:213.706667pt;}
.ws37{word-spacing:215.274667pt;}
.ws6e{word-spacing:222.021333pt;}
.ws11{word-spacing:225.393600pt;}
.ws72{word-spacing:238.640000pt;}
.ws3b{word-spacing:238.821333pt;}
.ws3f{word-spacing:244.101333pt;}
.ws15{word-spacing:254.650667pt;}
.ws7e{word-spacing:255.253333pt;}
.ws1a{word-spacing:261.653333pt;}
.ws7f{word-spacing:262.133333pt;}
.ws71{word-spacing:263.450667pt;}
.ws74{word-spacing:264.053333pt;}
.ws80{word-spacing:264.906667pt;}
.ws7b{word-spacing:265.653333pt;}
.ws75{word-spacing:266.826667pt;}
.ws20{word-spacing:267.360000pt;}
.ws78{word-spacing:276.586667pt;}
.ws76{word-spacing:277.493333pt;}
.ws7c{word-spacing:279.093333pt;}
.ws23{word-spacing:279.733333pt;}
.ws79{word-spacing:282.880000pt;}
.ws77{word-spacing:283.040000pt;}
.ws6a{word-spacing:294.453333pt;}
.ws7a{word-spacing:294.720000pt;}
.ws12{word-spacing:354.700800pt;}
.ws7d{word-spacing:356.533333pt;}
.ws62{word-spacing:359.520000pt;}
.ws61{word-spacing:367.893333pt;}
.ws55{word-spacing:370.579200pt;}
.ws60{word-spacing:373.706667pt;}
.ws65{word-spacing:379.200000pt;}
.ws64{word-spacing:379.733333pt;}
.ws66{word-spacing:380.480000pt;}
.ws68{word-spacing:381.813333pt;}
.ws63{word-spacing:383.040000pt;}
.ws5e{word-spacing:384.906667pt;}
.ws5c{word-spacing:385.013333pt;}
.ws56{word-spacing:385.386667pt;}
.ws5f{word-spacing:385.600000pt;}
.ws59{word-spacing:388.426667pt;}
.ws5d{word-spacing:389.226667pt;}
.ws57{word-spacing:389.920000pt;}
.ws58{word-spacing:390.986667pt;}
.ws70{word-spacing:394.880000pt;}
.ws5b{word-spacing:397.866667pt;}
.ws6d{word-spacing:398.293333pt;}
.ws6c{word-spacing:398.773333pt;}
.ws5a{word-spacing:400.320000pt;}
.ws67{word-spacing:404.640000pt;}
.ws6f{word-spacing:428.373333pt;}
.ws22{word-spacing:456.293333pt;}
.ws1e{word-spacing:464.586667pt;}
.ws1d{word-spacing:922.304000pt;}
._d{margin-left:-7.488000pt;}
._25{margin-left:-6.288000pt;}
._c{margin-left:-5.212800pt;}
._7{margin-left:-3.717333pt;}
._6{margin-left:-2.218667pt;}
._8{margin-left:-1.210667pt;}
._4{width:1.058400pt;}
._1{width:2.133333pt;}
._3{width:3.175467pt;}
._9{width:4.561867pt;}
._5{width:5.870133pt;}
._a{width:7.065067pt;}
._b{width:8.230933pt;}
._17{width:9.126501pt;}
._10{width:10.410667pt;}
._12{width:12.139467pt;}
._22{width:13.036000pt;}
._15{width:14.161067pt;}
._23{width:15.538400pt;}
._33{width:17.264800pt;}
._14{width:18.655467pt;}
._21{width:20.708000pt;}
._24{width:21.636533pt;}
._38{width:23.492000pt;}
._30{width:24.625920pt;}
._39{width:26.101867pt;}
._32{width:30.269067pt;}
._37{width:35.784533pt;}
._16{width:38.617920pt;}
._36{width:41.758400pt;}
._35{width:45.120533pt;}
._34{width:46.157333pt;}
._74{width:51.413333pt;}
._5e{width:66.568267pt;}
._61{width:70.843200pt;}
._75{width:73.418667pt;}
._e{width:76.048000pt;}
._59{width:94.781600pt;}
._5f{width:97.341600pt;}
._76{width:99.200000pt;}
._67{width:102.432000pt;}
._69{width:108.480000pt;}
._1b{width:114.026667pt;}
._27{width:115.445333pt;}
._78{width:116.480000pt;}
._63{width:118.210933pt;}
._5c{width:120.480000pt;}
._77{width:124.426667pt;}
._6d{width:130.986667pt;}
._70{width:134.133333pt;}
._4a{width:139.626667pt;}
._2c{width:150.285600pt;}
._26{width:151.888000pt;}
._2d{width:157.066667pt;}
._28{width:168.418933pt;}
._62{width:170.461600pt;}
._2a{width:175.266933pt;}
._2e{width:195.320267pt;}
._3b{width:203.718133pt;}
._66{width:209.194667pt;}
._29{width:211.573333pt;}
._2b{width:216.120267pt;}
._68{width:222.666667pt;}
._11{width:231.653333pt;}
._54{width:232.960000pt;}
._53{width:243.306667pt;}
._6e{width:244.373333pt;}
._6b{width:245.813333pt;}
._51{width:257.546667pt;}
._4f{width:258.720000pt;}
._40{width:269.813333pt;}
._4d{width:280.320000pt;}
._6a{width:281.280000pt;}
._48{width:285.120000pt;}
._49{width:286.773333pt;}
._4c{width:290.666667pt;}
._6f{width:294.293333pt;}
._19{width:297.760000pt;}
._6c{width:298.986667pt;}
._47{width:301.120000pt;}
._73{width:308.213333pt;}
._72{width:323.200000pt;}
._52{width:364.160000pt;}
._5d{width:376.586667pt;}
._3e{width:378.453333pt;}
._3d{width:382.293333pt;}
._45{width:388.266667pt;}
._41{width:395.413333pt;}
._44{width:400.320000pt;}
._46{width:401.226667pt;}
._42{width:402.133333pt;}
._3f{width:403.413333pt;}
._3a{width:405.435733pt;}
._f{width:406.428800pt;}
._18{width:407.464533pt;}
._1f{width:408.939733pt;}
._31{width:410.001333pt;}
._2f{width:411.031200pt;}
._43{width:412.853333pt;}
._5b{width:413.760000pt;}
._3c{width:415.306667pt;}
._71{width:416.586667pt;}
._4b{width:419.626667pt;}
._60{width:429.493333pt;}
._65{width:432.158133pt;}
._64{width:437.066667pt;}
._5a{width:445.440000pt;}
._57{width:446.538667pt;}
._55{width:449.744000pt;}
._58{width:455.202933pt;}
._56{width:457.477333pt;}
._1a{width:461.973333pt;}
._50{width:468.693333pt;}
._1c{width:480.106667pt;}
._4e{width:483.680000pt;}
._0{width:514.133333pt;}
._1d{width:681.133600pt;}
._1e{width:849.521067pt;}
._2{width:852.294400pt;}
._13{width:855.894400pt;}
._20{width:857.654400pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y270{bottom:86.585067pt;}
.yf1{bottom:94.347333pt;}
.y44{bottom:94.407733pt;}
.y1dc{bottom:94.411867pt;}
.y1bb{bottom:94.439867pt;}
.yb8{bottom:94.454667pt;}
.y69{bottom:94.477600pt;}
.y21f{bottom:94.480400pt;}
.y17a{bottom:94.482933pt;}
.y91{bottom:94.483067pt;}
.y1f{bottom:94.485467pt;}
.ycd{bottom:94.485600pt;}
.y134{bottom:94.485733pt;}
.y1f9{bottom:94.486000pt;}
.y199{bottom:94.505600pt;}
.y24d{bottom:97.069600pt;}
.y26f{bottom:101.921067pt;}
.y68{bottom:109.813600pt;}
.y21e{bottom:109.816400pt;}
.y179{bottom:109.818933pt;}
.y90{bottom:109.819067pt;}
.y1f8{bottom:112.206000pt;}
.yf0{bottom:112.364000pt;}
.y43{bottom:112.439733pt;}
.ycc{bottom:112.484267pt;}
.y133{bottom:112.484400pt;}
.yb7{bottom:112.609333pt;}
.y1ba{bottom:112.625867pt;}
.y24c{bottom:113.069600pt;}
.y1db{bottom:113.143867pt;}
.y1e{bottom:113.165467pt;}
.y198{bottom:114.091600pt;}
.y26e{bottom:119.919733pt;}
.y67{bottom:125.149600pt;}
.y21d{bottom:125.152400pt;}
.y178{bottom:127.817600pt;}
.y8f{bottom:127.817733pt;}
.y24b{bottom:128.736267pt;}
.y110{bottom:128.921067pt;}
.y132{bottom:128.929333pt;}
.y1f7{bottom:129.926000pt;}
.yef{bottom:130.380667pt;}
.y42{bottom:130.471733pt;}
.yb6{bottom:130.764000pt;}
.y1b9{bottom:130.811867pt;}
.y1d{bottom:131.817467pt;}
.y1da{bottom:131.875867pt;}
.y197{bottom:133.677600pt;}
.y66{bottom:140.485600pt;}
.y21c{bottom:143.151067pt;}
.y10f{bottom:144.257067pt;}
.y8e{bottom:144.257333pt;}
.y131{bottom:144.265333pt;}
.y1f6{bottom:147.646000pt;}
.y24a{bottom:147.842933pt;}
.yee{bottom:148.397333pt;}
.y41{bottom:148.503733pt;}
.yb5{bottom:148.918667pt;}
.y1c{bottom:149.164133pt;}
.y1d9{bottom:150.607867pt;}
.ycb{bottom:153.189200pt;}
.y1b8{bottom:156.543867pt;}
.y65{bottom:158.484267pt;}
.y10e{bottom:159.593067pt;}
.y8d{bottom:159.593333pt;}
.y249{bottom:160.406667pt;}
.y196{bottom:160.823600pt;}
.y130{bottom:162.264000pt;}
.y26d{bottom:162.776933pt;}
.yed{bottom:166.414000pt;}
.y1b{bottom:166.510800pt;}
.y40{bottom:166.535733pt;}
.yb4{bottom:167.073333pt;}
.yca{bottom:171.190533pt;}
.y1b7{bottom:174.729867pt;}
.y156{bottom:174.926400pt;}
.y64{bottom:174.929067pt;}
.y8c{bottom:174.929333pt;}
.y1f5{bottom:176.712667pt;}
.y1d8{bottom:176.899867pt;}
.y26c{bottom:178.776933pt;}
.y248{bottom:179.513333pt;}
.y195{bottom:180.409600pt;}
.y1a{bottom:183.857467pt;}
.yec{bottom:184.430667pt;}
.y3f{bottom:184.567733pt;}
.yb3{bottom:185.228000pt;}
.y177{bottom:185.624800pt;}
.y21b{bottom:186.061067pt;}
.yc9{bottom:189.191867pt;}
.y155{bottom:190.262400pt;}
.y63{bottom:190.265067pt;}
.y8b{bottom:190.265333pt;}
.y247{bottom:192.212667pt;}
.y26b{bottom:194.776933pt;}
.y1d7{bottom:195.631867pt;}
.y194{bottom:199.995600pt;}
.y1b6{bottom:200.461867pt;}
.y19{bottom:201.204133pt;}
.y12f{bottom:201.385867pt;}
.y21a{bottom:201.727733pt;}
.yeb{bottom:202.447333pt;}
.y3e{bottom:202.599733pt;}
.yb2{bottom:203.382667pt;}
.y176{bottom:204.316133pt;}
.y154{bottom:205.598400pt;}
.y8a{bottom:205.601333pt;}
.yc8{bottom:207.193200pt;}
.y246{bottom:207.879333pt;}
.y62{bottom:208.263733pt;}
.y26a{bottom:210.830267pt;}
.y1d6{bottom:214.363867pt;}
.y219{bottom:217.394400pt;}
.y18{bottom:218.550800pt;}
.y12e{bottom:219.877867pt;}
.yea{bottom:220.464000pt;}
.y3d{bottom:220.631733pt;}
.yb1{bottom:221.537333pt;}
.y175{bottom:223.007467pt;}
.y245{bottom:223.546000pt;}
.y153{bottom:223.597067pt;}
.yc7{bottom:225.194533pt;}
.y1b5{bottom:226.193867pt;}
.y292{bottom:226.736933pt;}
.y269{bottom:226.886533pt;}
.y193{bottom:227.141600pt;}
.y1f4{bottom:228.441067pt;}
.y218{bottom:233.061067pt;}
.y17{bottom:235.897467pt;}
.y12d{bottom:238.369867pt;}
.ye9{bottom:238.480667pt;}
.y3c{bottom:238.663733pt;}
.y244{bottom:239.212667pt;}
.yb0{bottom:239.692000pt;}
.y152{bottom:240.042000pt;}
.y1d5{bottom:240.655867pt;}
.y268{bottom:241.550533pt;}
.y174{bottom:241.698800pt;}
.yc6{bottom:243.195867pt;}
.y1b4{bottom:244.379867pt;}
.y291{bottom:244.736933pt;}
.y192{bottom:246.727600pt;}
.y89{bottom:247.386133pt;}
.y10d{bottom:247.409600pt;}
.y217{bottom:248.727733pt;}
.y1f3{bottom:252.819733pt;}
.y16{bottom:253.244133pt;}
.y243{bottom:254.879333pt;}
.y151{bottom:255.378000pt;}
.y267{bottom:256.214533pt;}
.ye8{bottom:256.497333pt;}
.y3b{bottom:256.695733pt;}
.y61{bottom:256.818533pt;}
.y12c{bottom:256.861867pt;}
.yaf{bottom:257.846667pt;}
.y1d4{bottom:259.387867pt;}
.y173{bottom:260.390133pt;}
.yc5{bottom:261.197200pt;}
.y1b3{bottom:262.565867pt;}
.y290{bottom:262.736933pt;}
.y216{bottom:264.394400pt;}
.y10c{bottom:265.518267pt;}
.y88{bottom:267.580133pt;}
.y242{bottom:270.546000pt;}
.y15{bottom:270.590800pt;}
.y266{bottom:270.878533pt;}
.y150{bottom:273.376667pt;}
.y191{bottom:273.873600pt;}
.ye7{bottom:274.514000pt;}
.y3a{bottom:274.727733pt;}
.y60{bottom:274.819867pt;}
.y12b{bottom:275.353867pt;}
.yae{bottom:276.001333pt;}
.y1f2{bottom:277.217067pt;}
.y1d3{bottom:278.119867pt;}
.y172{bottom:279.081467pt;}
.yc4{bottom:279.198533pt;}
.y215{bottom:280.061067pt;}
.y28f{bottom:280.736933pt;}
.y10b{bottom:283.626933pt;}
.y241{bottom:286.212667pt;}
.y87{bottom:287.774133pt;}
.y14{bottom:287.937467pt;}
.y1b2{bottom:288.297867pt;}
.y265{bottom:288.305200pt;}
.ye6{bottom:292.530667pt;}
.y39{bottom:292.759733pt;}
.y5f{bottom:292.821200pt;}
.y190{bottom:293.459600pt;}
.y12a{bottom:293.845867pt;}
.yad{bottom:294.149867pt;}
.y214{bottom:295.727733pt;}
.yc3{bottom:297.199867pt;}
.y171{bottom:297.772800pt;}
.y1f1{bottom:301.614400pt;}
.y10a{bottom:301.735600pt;}
.y240{bottom:301.879333pt;}
.y1d2{bottom:304.411867pt;}
.y13{bottom:305.284133pt;}
.y1b1{bottom:306.483867pt;}
.y86{bottom:307.968133pt;}
.y28e{bottom:310.070267pt;}
.ye5{bottom:310.547333pt;}
.y38{bottom:310.791733pt;}
.y213{bottom:311.394400pt;}
.yac{bottom:312.304533pt;}
.y129{bottom:312.337867pt;}
.y14f{bottom:312.574133pt;}
.y18f{bottom:313.045600pt;}
.yc2{bottom:315.201200pt;}
.y170{bottom:316.426533pt;}
.y23f{bottom:317.546000pt;}
.y264{bottom:317.692667pt;}
.y1d1{bottom:323.143867pt;}
.y1b0{bottom:324.669867pt;}
.y212{bottom:327.061067pt;}
.ye4{bottom:328.564000pt;}
.y37{bottom:328.823733pt;}
.y5e{bottom:329.722133pt;}
.yab{bottom:330.379867pt;}
.y14e{bottom:330.713467pt;}
.y128{bottom:330.829867pt;}
.y109{bottom:331.173200pt;}
.y23e{bottom:333.212667pt;}
.y12{bottom:333.964133pt;}
.y16f{bottom:335.117867pt;}
.y18e{bottom:340.191600pt;}
.y211{bottom:342.727733pt;}
.ye3{bottom:346.580667pt;}
.y36{bottom:346.855733pt;}
.yaa{bottom:348.534533pt;}
.y14d{bottom:348.852800pt;}
.y23d{bottom:348.879333pt;}
.y127{bottom:349.321867pt;}
.y1d0{bottom:349.435867pt;}
.y1af{bottom:350.401867pt;}
.y5d{bottom:351.052133pt;}
.y108{bottom:352.629200pt;}
.y16e{bottom:353.809200pt;}
.y28d{bottom:356.030267pt;}
.y210{bottom:358.394400pt;}
.y18d{bottom:359.777600pt;}
.y85{bottom:363.761867pt;}
.y23c{bottom:364.546000pt;}
.ye2{bottom:364.597333pt;}
.y35{bottom:364.887733pt;}
.ya9{bottom:366.689200pt;}
.y14c{bottom:366.992133pt;}
.y126{bottom:367.813867pt;}
.y1cf{bottom:368.167867pt;}
.y1ae{bottom:368.587867pt;}
.yc1{bottom:369.201200pt;}
.y28c{bottom:372.030267pt;}
.y16d{bottom:372.500533pt;}
.y20f{bottom:374.061067pt;}
.y107{bottom:374.085200pt;}
.y263{bottom:375.879333pt;}
.y23b{bottom:380.212667pt;}
.ye1{bottom:382.614000pt;}
.y34{bottom:382.919733pt;}
.y84{bottom:383.961867pt;}
.ya8{bottom:384.843867pt;}
.y14b{bottom:385.131467pt;}
.y11{bottom:385.339467pt;}
.y1ce{bottom:386.899867pt;}
.y18c{bottom:386.923600pt;}
.y28b{bottom:388.030267pt;}
.y20e{bottom:389.727733pt;}
.y1f0{bottom:390.287867pt;}
.y16c{bottom:391.191867pt;}
.y262{bottom:391.879333pt;}
.y1ad{bottom:394.319867pt;}
.y23a{bottom:395.879333pt;}
.y83{bottom:399.961867pt;}
.ye0{bottom:400.630667pt;}
.y33{bottom:400.951733pt;}
.ya7{bottom:402.998533pt;}
.y14a{bottom:403.270800pt;}
.y28a{bottom:404.030267pt;}
.y20d{bottom:405.399467pt;}
.y5c{bottom:406.379867pt;}
.y18b{bottom:406.509600pt;}
.y261{bottom:407.546000pt;}
.y1ef{bottom:408.669867pt;}
.y10{bottom:409.344800pt;}
.y16b{bottom:409.883200pt;}
.y125{bottom:411.240133pt;}
.y239{bottom:411.546000pt;}
.y1ac{bottom:412.505867pt;}
.y1cd{bottom:413.191867pt;}
.ydf{bottom:418.647333pt;}
.y20c{bottom:418.731467pt;}
.y32{bottom:418.983733pt;}
.y289{bottom:420.030267pt;}
.y82{bottom:420.161867pt;}
.ya6{bottom:421.153200pt;}
.y149{bottom:421.410133pt;}
.y106{bottom:421.996267pt;}
.y260{bottom:423.546000pt;}
.y5b{bottom:424.381200pt;}
.y1ee{bottom:427.051867pt;}
.y238{bottom:427.212667pt;}
.y124{bottom:427.240133pt;}
.y16a{bottom:428.574533pt;}
.y1ab{bottom:430.691867pt;}
.y1cc{bottom:431.923867pt;}
.yf{bottom:433.350133pt;}
.y18a{bottom:433.655600pt;}
.y288{bottom:436.030267pt;}
.y81{bottom:436.161867pt;}
.yde{bottom:436.664000pt;}
.y25f{bottom:439.212667pt;}
.ya5{bottom:439.307867pt;}
.y148{bottom:439.549467pt;}
.y105{bottom:440.111067pt;}
.y5a{bottom:442.382533pt;}
.y20b{bottom:442.389733pt;}
.y237{bottom:442.879333pt;}
.y169{bottom:447.265867pt;}
.y123{bottom:447.440133pt;}
.y1aa{bottom:448.863867pt;}
.y287{bottom:452.030267pt;}
.y80{bottom:452.161867pt;}
.y1ed{bottom:452.993867pt;}
.y189{bottom:453.241600pt;}
.y25e{bottom:455.212667pt;}
.y31{bottom:455.908933pt;}
.ye{bottom:457.355467pt;}
.ya4{bottom:457.462533pt;}
.y147{bottom:457.688800pt;}
.y1cb{bottom:458.215867pt;}
.y104{bottom:458.299600pt;}
.y236{bottom:458.546000pt;}
.y59{bottom:460.383867pt;}
.y122{bottom:463.440133pt;}
.y168{bottom:465.957200pt;}
.y286{bottom:468.083600pt;}
.y25d{bottom:470.879333pt;}
.y1ec{bottom:471.375867pt;}
.y7f{bottom:472.361867pt;}
.y20a{bottom:472.398000pt;}
.y188{bottom:472.827600pt;}
.ydd{bottom:473.565467pt;}
.y235{bottom:474.212667pt;}
.y1a9{bottom:474.595867pt;}
.ya3{bottom:475.617200pt;}
.y146{bottom:475.828133pt;}
.y103{bottom:476.408267pt;}
.y1ca{bottom:476.947867pt;}
.y58{bottom:478.385200pt;}
.y121{bottom:483.640133pt;}
.y285{bottom:484.083600pt;}
.y167{bottom:484.648533pt;}
.y25c{bottom:486.879333pt;}
.y7e{bottom:488.361867pt;}
.y1eb{bottom:489.757867pt;}
.y234{bottom:489.879333pt;}
.y187{bottom:492.413600pt;}
.y1a8{bottom:492.781867pt;}
.ya2{bottom:493.771867pt;}
.y145{bottom:493.967467pt;}
.y102{bottom:494.516933pt;}
.ydc{bottom:494.913467pt;}
.y1c9{bottom:495.679867pt;}
.y57{bottom:496.386533pt;}
.y120{bottom:499.640133pt;}
.y284{bottom:500.083600pt;}
.yd{bottom:500.276400pt;}
.y25b{bottom:502.546000pt;}
.y166{bottom:503.339867pt;}
.y233{bottom:505.546000pt;}
.y1ea{bottom:508.139867pt;}
.y7d{bottom:508.561867pt;}
.ya1{bottom:511.926533pt;}
.y144{bottom:512.106800pt;}
.y101{bottom:512.625600pt;}
.y56{bottom:514.387867pt;}
.y283{bottom:516.083600pt;}
.y209{bottom:516.798000pt;}
.y1a7{bottom:518.513867pt;}
.y25a{bottom:518.546000pt;}
.y186{bottom:519.559600pt;}
.y11f{bottom:520.213467pt;}
.y232{bottom:521.212667pt;}
.y1c8{bottom:521.971867pt;}
.y165{bottom:522.031200pt;}
.yc{bottom:528.284400pt;}
.y7c{bottom:528.761867pt;}
.y30{bottom:529.314000pt;}
.ya0{bottom:530.081200pt;}
.y143{bottom:530.246133pt;}
.y100{bottom:530.734267pt;}
.y282{bottom:532.083600pt;}
.y55{bottom:532.389200pt;}
.y1e9{bottom:534.081867pt;}
.y259{bottom:534.212667pt;}
.y208{bottom:534.731333pt;}
.y11e{bottom:536.213467pt;}
.y1a6{bottom:536.699867pt;}
.y231{bottom:536.879333pt;}
.y1c7{bottom:540.703867pt;}
.y164{bottom:540.722533pt;}
.y2f{bottom:548.007333pt;}
.y281{bottom:548.083600pt;}
.y9f{bottom:548.235867pt;}
.y142{bottom:548.385467pt;}
.yff{bottom:548.842933pt;}
.y7a{bottom:548.979200pt;}
.y258{bottom:549.879333pt;}
.ydb{bottom:550.204933pt;}
.y54{bottom:550.390533pt;}
.y11d{bottom:552.213467pt;}
.y1e8{bottom:552.463867pt;}
.y230{bottom:552.546000pt;}
.y207{bottom:552.664667pt;}
.y1a5{bottom:554.885867pt;}
.yb{bottom:556.292400pt;}
.y163{bottom:559.413867pt;}
.y1c6{bottom:559.435867pt;}
.y280{bottom:564.136933pt;}
.y79{bottom:564.979200pt;}
.y257{bottom:565.879333pt;}
.y9e{bottom:566.390533pt;}
.y141{bottom:566.559867pt;}
.y2e{bottom:566.718000pt;}
.yfe{bottom:566.951600pt;}
.y22f{bottom:568.212667pt;}
.yda{bottom:568.221600pt;}
.yc0{bottom:568.390533pt;}
.y53{bottom:568.391867pt;}
.y206{bottom:570.598000pt;}
.y11c{bottom:572.413467pt;}
.y162{bottom:578.105200pt;}
.y1e7{bottom:578.405867pt;}
.y27f{bottom:580.136933pt;}
.y1a4{bottom:580.617867pt;}
.y78{bottom:580.979200pt;}
.y256{bottom:581.879333pt;}
.y22e{bottom:583.879333pt;}
.y2d{bottom:584.078000pt;}
.ya{bottom:584.300400pt;}
.y9d{bottom:584.545200pt;}
.y140{bottom:584.699200pt;}
.yfd{bottom:585.060267pt;}
.y1c5{bottom:585.727867pt;}
.y185{bottom:585.916933pt;}
.yd9{bottom:586.238267pt;}
.ybf{bottom:586.391867pt;}
.y52{bottom:586.393200pt;}
.y11b{bottom:588.413467pt;}
.y205{bottom:588.531333pt;}
.y27e{bottom:596.136933pt;}
.y1e6{bottom:596.787867pt;}
.y161{bottom:596.796533pt;}
.y7b{bottom:596.961867pt;}
.y77{bottom:596.979200pt;}
.y255{bottom:597.879333pt;}
.y1a3{bottom:598.803867pt;}
.y22d{bottom:599.546000pt;}
.y2c{bottom:601.438000pt;}
.y9c{bottom:602.699867pt;}
.y13f{bottom:602.838533pt;}
.yfc{bottom:603.168933pt;}
.yd8{bottom:604.254933pt;}
.ybe{bottom:604.393200pt;}
.y51{bottom:604.394533pt;}
.y1c4{bottom:604.459867pt;}
.y184{bottom:605.497600pt;}
.y204{bottom:606.464667pt;}
.y11a{bottom:608.613467pt;}
.y27d{bottom:612.136933pt;}
.y9{bottom:612.308400pt;}
.y254{bottom:613.879333pt;}
.y1e5{bottom:615.169867pt;}
.y22c{bottom:615.212667pt;}
.y160{bottom:615.487867pt;}
.y1a2{bottom:616.989867pt;}
.y76{bottom:617.179200pt;}
.y2b{bottom:618.798000pt;}
.y9b{bottom:620.854533pt;}
.y13e{bottom:620.977867pt;}
.yfb{bottom:621.277600pt;}
.yd7{bottom:622.271600pt;}
.ybd{bottom:622.394533pt;}
.y50{bottom:622.395867pt;}
.y203{bottom:624.398000pt;}
.y119{bottom:624.613467pt;}
.y183{bottom:625.078267pt;}
.y27c{bottom:628.190267pt;}
.y253{bottom:629.546000pt;}
.y1c3{bottom:630.751867pt;}
.y22b{bottom:630.879333pt;}
.y75{bottom:633.179200pt;}
.y1e4{bottom:633.551867pt;}
.y15f{bottom:634.179200pt;}
.y2a{bottom:636.158000pt;}
.y9a{bottom:639.009200pt;}
.y13d{bottom:639.117200pt;}
.yfa{bottom:639.386267pt;}
.yd6{bottom:640.288267pt;}
.y8{bottom:640.316400pt;}
.ybc{bottom:640.395867pt;}
.y4f{bottom:640.397200pt;}
.y202{bottom:642.331333pt;}
.y1a1{bottom:642.721867pt;}
.y27b{bottom:644.190267pt;}
.y182{bottom:644.658933pt;}
.y118{bottom:644.813467pt;}
.y252{bottom:645.546000pt;}
.y22a{bottom:646.546000pt;}
.y117{bottom:649.013467pt;}
.y74{bottom:649.179200pt;}
.y1c2{bottom:649.483867pt;}
.y15e{bottom:652.870533pt;}
.y29{bottom:653.518000pt;}
.y99{bottom:657.163867pt;}
.y13c{bottom:657.256533pt;}
.yf9{bottom:657.494933pt;}
.yd5{bottom:658.304933pt;}
.ybb{bottom:658.397200pt;}
.y4e{bottom:658.398533pt;}
.y1e3{bottom:659.493867pt;}
.y27a{bottom:660.243600pt;}
.y201{bottom:660.264667pt;}
.y1a0{bottom:660.907867pt;}
.y251{bottom:661.212667pt;}
.y229{bottom:662.212667pt;}
.y181{bottom:664.239600pt;}
.y116{bottom:665.013467pt;}
.y1c1{bottom:668.215867pt;}
.y73{bottom:669.379200pt;}
.y28{bottom:670.878000pt;}
.y15d{bottom:671.561867pt;}
.y98{bottom:675.318533pt;}
.y13b{bottom:675.395867pt;}
.yf8{bottom:675.603600pt;}
.y279{bottom:676.296933pt;}
.yd4{bottom:676.321600pt;}
.yba{bottom:676.398533pt;}
.y4d{bottom:676.399867pt;}
.y250{bottom:676.879333pt;}
.y1e2{bottom:677.875867pt;}
.y228{bottom:677.879333pt;}
.y200{bottom:678.198000pt;}
.y19f{bottom:679.093867pt;}
.y180{bottom:683.820267pt;}
.y72{bottom:685.379200pt;}
.y27{bottom:688.238000pt;}
.y15c{bottom:690.253200pt;}
.y115{bottom:691.713333pt;}
.y278{bottom:692.350267pt;}
.y24f{bottom:692.879333pt;}
.y97{bottom:693.473200pt;}
.y13a{bottom:693.540133pt;}
.y227{bottom:693.546000pt;}
.yf7{bottom:693.730800pt;}
.yd3{bottom:694.338267pt;}
.y4c{bottom:694.393200pt;}
.yb9{bottom:694.399867pt;}
.y1c0{bottom:694.507867pt;}
.y7{bottom:694.770667pt;}
.y1ff{bottom:696.131333pt;}
.y1e1{bottom:696.257867pt;}
.y17f{bottom:703.400933pt;}
.y19e{bottom:704.825867pt;}
.y71{bottom:705.579200pt;}
.y26{bottom:705.598000pt;}
.y277{bottom:708.350267pt;}
.y24e{bottom:708.879333pt;}
.y15b{bottom:708.944533pt;}
.y226{bottom:709.212667pt;}
.y96{bottom:711.627867pt;}
.y139{bottom:711.704533pt;}
.yf6{bottom:711.839467pt;}
.yd2{bottom:712.347467pt;}
.y4b{bottom:712.394533pt;}
.y1bf{bottom:713.239867pt;}
.y1fe{bottom:714.064667pt;}
.y6{bottom:721.010667pt;}
.y1e0{bottom:722.199867pt;}
.y25{bottom:722.958000pt;}
.y17e{bottom:722.981600pt;}
.y19d{bottom:723.011867pt;}
.y276{bottom:724.403600pt;}
.y225{bottom:724.879333pt;}
.y70{bottom:725.784933pt;}
.y15a{bottom:727.635867pt;}
.y114{bottom:728.433200pt;}
.y95{bottom:729.782533pt;}
.y138{bottom:729.843867pt;}
.yf5{bottom:729.948133pt;}
.yd1{bottom:730.349333pt;}
.y4a{bottom:730.395867pt;}
.y1fd{bottom:731.998000pt;}
.y6d{bottom:733.784933pt;}
.y1be{bottom:739.531867pt;}
.y5{bottom:739.690667pt;}
.y24{bottom:740.318000pt;}
.y275{bottom:740.456933pt;}
.y224{bottom:740.546000pt;}
.y19c{bottom:741.183867pt;}
.y6f{bottom:741.784933pt;}
.y17d{bottom:742.562267pt;}
.y159{bottom:746.327200pt;}
.y113{bottom:746.925200pt;}
.y94{bottom:747.937200pt;}
.y137{bottom:747.983200pt;}
.yf4{bottom:748.062933pt;}
.y1df{bottom:748.141867pt;}
.yd0{bottom:748.366000pt;}
.y49{bottom:748.397200pt;}
.y6c{bottom:749.784933pt;}
.y1fc{bottom:749.931333pt;}
.y223{bottom:756.212667pt;}
.y274{bottom:756.513067pt;}
.y23{bottom:757.678000pt;}
.y6e{bottom:757.784933pt;}
.y1bd{bottom:758.263867pt;}
.y17c{bottom:762.142933pt;}
.y158{bottom:765.018533pt;}
.y112{bottom:765.417200pt;}
.y4{bottom:765.930667pt;}
.y93{bottom:766.091867pt;}
.y136{bottom:766.122533pt;}
.yf3{bottom:766.177733pt;}
.ycf{bottom:766.375200pt;}
.y48{bottom:766.398533pt;}
.y1de{bottom:766.523867pt;}
.y19b{bottom:766.915867pt;}
.y1fb{bottom:767.864667pt;}
.y273{bottom:771.177067pt;}
.y222{bottom:771.879333pt;}
.y22{bottom:775.038000pt;}
.y6b{bottom:776.217333pt;}
.y157{bottom:783.709867pt;}
.y111{bottom:783.909200pt;}
.y92{bottom:784.246533pt;}
.y135{bottom:784.261867pt;}
.yf2{bottom:784.292533pt;}
.yce{bottom:784.384533pt;}
.y47{bottom:784.399867pt;}
.y1bc{bottom:784.555867pt;}
.y3{bottom:784.610667pt;}
.y1dd{bottom:784.905867pt;}
.y19a{bottom:785.101867pt;}
.y1fa{bottom:785.798000pt;}
.y272{bottom:785.841067pt;}
.y221{bottom:787.551067pt;}
.y271{bottom:800.505067pt;}
.y17b{bottom:800.627733pt;}
.y220{bottom:800.883067pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y6a{bottom:803.727600pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y45{bottom:858.834667pt;}
.hf{height:28.437500pt;}
.h21{height:29.392917pt;}
.h12{height:33.117188pt;}
.hb{height:34.724333pt;}
.h1a{height:35.546875pt;}
.h10{height:35.604167pt;}
.h23{height:37.990000pt;}
.he{height:40.054688pt;}
.h7{height:40.333333pt;}
.h24{height:44.010417pt;}
.h11{height:44.505208pt;}
.hc{height:45.375000pt;}
.h25{height:46.119792pt;}
.h4{height:50.416667pt;}
.hd{height:50.431600pt;}
.h3{height:52.937500pt;}
.h19{height:53.037760pt;}
.h1e{height:57.878900pt;}
.h9{height:57.979167pt;}
.h1d{height:58.001033pt;}
.h14{height:58.003700pt;}
.h15{height:58.005833pt;}
.h16{height:58.008500pt;}
.h17{height:58.009033pt;}
.ha{height:58.011167pt;}
.h18{height:58.038367pt;}
.h1f{height:58.129567pt;}
.h13{height:58.296500pt;}
.h2{height:63.020833pt;}
.h8{height:68.062500pt;}
.h6{height:70.583333pt;}
.h20{height:72.063000pt;}
.h1b{height:82.416667pt;}
.h5{height:90.750000pt;}
.h1c{height:113.670000pt;}
.h22{height:114.416667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:73.079333pt;}
.x6{left:74.440533pt;}
.x1{left:75.590533pt;}
.x1f{left:78.180000pt;}
.x1b{left:79.261867pt;}
.x21{left:80.300000pt;}
.x2b{left:81.541333pt;}
.x2a{left:82.464933pt;}
.x29{left:83.421733pt;}
.x2e{left:89.016800pt;}
.x8{left:93.360533pt;}
.x5{left:94.547200pt;}
.x26{left:97.594400pt;}
.x28{left:98.487733pt;}
.x22{left:116.341067pt;}
.x33{left:162.387867pt;}
.x9{left:189.034533pt;}
.x27{left:191.967733pt;}
.xb{left:193.768000pt;}
.xc{left:194.930667pt;}
.x2d{left:196.576267pt;}
.x2c{left:197.522933pt;}
.x20{left:199.420000pt;}
.x3{left:204.975467pt;}
.x4{left:206.103467pt;}
.x2{left:207.628000pt;}
.xa{left:217.076667pt;}
.xd{left:238.109333pt;}
.xe{left:244.232000pt;}
.x34{left:287.054533pt;}
.xf{left:289.117333pt;}
.x10{left:290.280000pt;}
.x23{left:292.154400pt;}
.x11{left:333.458667pt;}
.x12{left:339.581333pt;}
.x25{left:374.301067pt;}
.x13{left:384.466667pt;}
.x14{left:385.629333pt;}
.x24{left:387.167733pt;}
.x2f{left:407.040800pt;}
.x1e{left:411.273333pt;}
.x17{left:427.826667pt;}
.x15{left:430.098667pt;}
.x16{left:432.541333pt;}
.x1d{left:435.115200pt;}
.x1c{left:440.301867pt;}
.x18{left:477.768000pt;}
.x35{left:486.427867pt;}
.x30{left:497.652800pt;}
.x32{left:499.608800pt;}
.x31{left:503.472800pt;}
.x19{left:524.146667pt;}
.x1a{left:530.269333pt;}
}




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