
    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_9d6f9564675cced325cde102.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_aa7e449b40992fb873ac711b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1c0a340ed547b185139a163b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_4975eb69b21ad4df4c2063df.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a825b00ac7e04b9e022c6e96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_b8796e1b2e5bb8a90bea5942.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8644b2626206aef09712d7ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_aa56b4d844779583c924afba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_81dab72223fb9b28d084d0f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-55.440000px;}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.269400px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.025920px;}
.ls17{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.152640px;}
.ls1b{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.ls29{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.223800px;}
.ls21{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.269400px;}
.ls7{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.298800px;}
.ls26{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.828000px;}
.ls20{letter-spacing:0.864000px;}
.ls2a{letter-spacing:1.008000px;}
.ls1d{letter-spacing:2.160000px;}
.ls28{letter-spacing:4.320000px;}
.ls15{letter-spacing:7.920000px;}
.lsa{letter-spacing:8.640000px;}
.ls2b{letter-spacing:15.840000px;}
.lse{letter-spacing:23.040000px;}
.ls1a{letter-spacing:54.864000px;}
.ls1c{letter-spacing:59.345280px;}
.ls19{letter-spacing:104.400000px;}
.ls10{letter-spacing:161.460000px;}
.lsf{letter-spacing:194.520000px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws1b{word-spacing:-19.008000px;}
.ws12{word-spacing:-18.792000px;}
.ws4{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.288000px;}
.ws1a{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws18{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.580000px;}
.ws17{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.329400px;}
.wse{word-spacing:-12.283800px;}
.wsc{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.790600px;}
.wsb{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-16.440000px;}
._1a{margin-left:-12.774960px;}
._17{margin-left:-10.320000px;}
._18{margin-left:-8.520000px;}
._16{margin-left:-6.360000px;}
._1b{margin-left:-4.854960px;}
._14{margin-left:-2.454960px;}
._1{margin-left:-1.121040px;}
._0{width:1.560000px;}
._5{width:2.808000px;}
._c{width:4.032000px;}
._b{width:5.040000px;}
._3{width:6.984000px;}
._4{width:8.136000px;}
._2{width:10.121040px;}
._a{width:11.413920px;}
._d{width:12.644160px;}
._15{width:13.738800px;}
._11{width:14.760000px;}
._12{width:16.025040px;}
._2f{width:18.314640px;}
._8{width:19.872000px;}
._9{width:21.168000px;}
._13{width:22.505040px;}
._6{width:24.120000px;}
._7{width:25.236000px;}
._1c{width:26.820000px;}
._1e{width:28.620000px;}
._e{width:30.240000px;}
._f{width:31.272000px;}
._10{width:32.748000px;}
._1d{width:34.428000px;}
._23{width:35.640000px;}
._24{width:37.044000px;}
._1f{width:38.520000px;}
._20{width:39.672000px;}
._21{width:41.904000px;}
._22{width:43.128000px;}
._25{width:45.401040px;}
._34{width:47.201040px;}
._28{width:48.792000px;}
._29{width:49.841040px;}
._26{width:55.056000px;}
._27{width:56.388000px;}
._30{width:62.622240px;}
._31{width:64.526400px;}
._33{width:73.385280px;}
._2e{width:85.695840px;}
._2d{width:86.952000px;}
._32{width:93.584160px;}
._2b{width:194.400000px;}
._2c{width:195.960000px;}
._2a{width:846.156000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:3.240000px;}
.y1b0{bottom:3.420000px;}
.y208{bottom:3.465000px;}
.y1ad{bottom:3.600000px;}
.y18{bottom:3.780000px;}
.y209{bottom:6.480000px;}
.y134{bottom:7.560000px;}
.y131{bottom:7.740000px;}
.y15d{bottom:8.280000px;}
.y149{bottom:8.460000px;}
.y13d{bottom:10.440000px;}
.y15e{bottom:10.980000px;}
.y147{bottom:11.340000px;}
.y15b{bottom:11.520000px;}
.y1ba{bottom:11.700000px;}
.y14d{bottom:12.240000px;}
.y14a{bottom:12.420000px;}
.y1cc{bottom:12.600000px;}
.y1d5{bottom:12.780000px;}
.y13a{bottom:14.265000px;}
.y15a{bottom:15.165000px;}
.y15f{bottom:17.100000px;}
.y154{bottom:19.125000px;}
.y1af{bottom:20.520000px;}
.y14c{bottom:20.880000px;}
.y1ed{bottom:20.925000px;}
.y1a9{bottom:21.060000px;}
.y155{bottom:21.420000px;}
.y13b{bottom:21.465000px;}
.y14f{bottom:22.680000px;}
.y151{bottom:23.085000px;}
.y204{bottom:23.760000px;}
.y207{bottom:23.805000px;}
.y20d{bottom:23.940000px;}
.y152{bottom:24.120000px;}
.y14e{bottom:24.525000px;}
.y1c8{bottom:25.020000px;}
.y1c1{bottom:25.200000px;}
.y213{bottom:25.380000px;}
.y249{bottom:25.410000px;}
.y1c4{bottom:25.560000px;}
.y156{bottom:28.125000px;}
.y140{bottom:29.205000px;}
.y1cb{bottom:29.880000px;}
.y1d4{bottom:30.060000px;}
.y13f{bottom:33.345000px;}
.y1b9{bottom:33.480000px;}
.y160{bottom:33.525000px;}
.y1ea{bottom:34.560000px;}
.y144{bottom:34.785000px;}
.y150{bottom:35.100000px;}
.y153{bottom:36.540000px;}
.y13e{bottom:36.765000px;}
.y1a7{bottom:37.800000px;}
.y1b2{bottom:37.830000px;}
.y1a8{bottom:38.160000px;}
.y1b4{bottom:38.190000px;}
.y1ec{bottom:38.205000px;}
.y1bd{bottom:38.340000px;}
.y164{bottom:38.745000px;}
.y23c{bottom:39.105000px;}
.y162{bottom:40.185000px;}
.y161{bottom:40.500000px;}
.y165{bottom:41.580000px;}
.y1c0{bottom:42.300000px;}
.y1d0{bottom:42.480000px;}
.y1c3{bottom:42.660000px;}
.y145{bottom:45.720000px;}
.y141{bottom:46.620000px;}
.y163{bottom:47.160000px;}
.y1d3{bottom:47.340000px;}
.y143{bottom:50.940000px;}
.y142{bottom:52.380000px;}
.y17{bottom:54.756000px;}
.y1ab{bottom:55.080000px;}
.y1b8{bottom:55.260000px;}
.y1ac{bottom:55.440000px;}
.y1bc{bottom:55.620000px;}
.y16{bottom:57.096000px;}
.y1bf{bottom:59.580000px;}
.y1c2{bottom:59.940000px;}
.y1c7{bottom:64.125000px;}
.y1cf{bottom:64.260000px;}
.y1ca{bottom:64.485000px;}
.y1d2{bottom:64.620000px;}
.y212{bottom:68.940000px;}
.y251{bottom:69.120000px;}
.y1b7{bottom:72.540000px;}
.y1ef{bottom:72.720000px;}
.y1bb{bottom:72.900000px;}
.y1ce{bottom:81.360000px;}
.y1c6{bottom:81.405000px;}
.y1d1{bottom:81.720000px;}
.y1c9{bottom:81.765000px;}
.y159{bottom:84.105000px;}
.y158{bottom:88.245000px;}
.y157{bottom:89.685000px;}
.y130{bottom:90.720000px;}
.y211{bottom:90.750000px;}
.y250{bottom:90.945000px;}
.y12e{bottom:106.380000px;}
.y12d{bottom:110.016000px;}
.y28f{bottom:113.616000px;}
.y17c{bottom:114.516000px;}
.y1ae{bottom:115.056000px;}
.y240{bottom:115.236000px;}
.y170{bottom:119.556000px;}
.y29f{bottom:122.616000px;}
.y101{bottom:123.516000px;}
.y51{bottom:125.496000px;}
.y16c{bottom:127.296000px;}
.y11b{bottom:128.556000px;}
.yd2{bottom:132.516000px;}
.y12c{bottom:134.136000px;}
.y200{bottom:135.756000px;}
.yc5{bottom:136.656000px;}
.y21f{bottom:137.556000px;}
.y26b{bottom:137.916000px;}
.y16e{bottom:138.996000px;}
.yee{bottom:141.516000px;}
.y16b{bottom:144.396000px;}
.y28e{bottom:144.756000px;}
.y12b{bottom:145.296000px;}
.y17b{bottom:145.656000px;}
.y23f{bottom:146.376000px;}
.y197{bottom:147.816000px;}
.y16f{bottom:150.510000px;}
.y15{bottom:153.570000px;}
.y29e{bottom:153.750000px;}
.y100{bottom:154.650000px;}
.y1aa{bottom:154.830000px;}
.y11a{bottom:159.510000px;}
.y253{bottom:161.130000px;}
.y21e{bottom:161.670000px;}
.yd1{bottom:163.650000px;}
.y1ff{bottom:166.710000px;}
.yc4{bottom:167.610000px;}
.y16a{bottom:168.510000px;}
.y26a{bottom:169.050000px;}
.y50{bottom:171.210000px;}
.y16d{bottom:171.390000px;}
.y9d{bottom:172.650000px;}
.y17a{bottom:176.610000px;}
.y23e{bottom:177.330000px;}
.y196{bottom:178.950000px;}
.y169{bottom:179.670000px;}
.yed{bottom:181.650000px;}
.y28d{bottom:184.710000px;}
.yff{bottom:185.610000px;}
.y21d{bottom:185.790000px;}
.y252{bottom:189.750000px;}
.y119{bottom:190.650000px;}
.y29d{bottom:193.710000px;}
.yd0{bottom:194.610000px;}
.y21c{bottom:196.950000px;}
.y1fe{bottom:197.850000px;}
.y14{bottom:198.750000px;}
.y17d{bottom:199.650000px;}
.y24f{bottom:202.710000px;}
.y9c{bottom:203.610000px;}
.y122{bottom:205.050000px;}
.y269{bottom:209.010000px;}
.y195{bottom:209.910000px;}
.y4f{bottom:211.350000px;}
.y107{bottom:212.610000px;}
.y28c{bottom:215.850000px;}
.y179{bottom:216.750000px;}
.y23d{bottom:217.470000px;}
.y132{bottom:218.550000px;}
.yec{bottom:221.610000px;}
.y29c{bottom:224.850000px;}
.ycf{bottom:225.750000px;}
.y1e2{bottom:227.010000px;}
.y6c{bottom:228.450000px;}
.y1fd{bottom:228.810000px;}
.y1a6{bottom:228.990000px;}
.yc3{bottom:229.710000px;}
.y11f{bottom:230.610000px;}
.y21b{bottom:234.030000px;}
.y9b{bottom:234.750000px;}
.y121{bottom:234.930000px;}
.y27d{bottom:239.610000px;}
.y268{bottom:240.150000px;}
.y194{bottom:241.050000px;}
.y13{bottom:241.590000px;}
.y221{bottom:243.570000px;}
.y106{bottom:243.750000px;}
.y178{bottom:247.710000px;}
.y4e{bottom:251.310000px;}
.yeb{bottom:252.750000px;}
.y28b{bottom:255.810000px;}
.yfe{bottom:256.710000px;}
.y1fc{bottom:259.950000px;}
.y11e{bottom:261.750000px;}
.y29b{bottom:264.810000px;}
.y21a{bottom:265.170000px;}
.y9a{bottom:265.710000px;}
.y1e1{bottom:267.150000px;}
.y6b{bottom:268.410000px;}
.yc2{bottom:269.850000px;}
.y27c{bottom:270.750000px;}
.y193{bottom:272.010000px;}
.y105{bottom:274.755000px;}
.y7e{bottom:275.655000px;}
.y177{bottom:278.895000px;}
.y267{bottom:280.155000px;}
.y12{bottom:281.595000px;}
.y4d{bottom:282.495000px;}
.y23b{bottom:282.675000px;}
.yea{bottom:283.755000px;}
.y1fb{bottom:286.095000px;}
.y28a{bottom:286.995000px;}
.yfd{bottom:287.895000px;}
.y11d{bottom:292.755000px;}
.y29a{bottom:295.995000px;}
.y219{bottom:296.175000px;}
.y99{bottom:296.895000px;}
.y1a5{bottom:299.595000px;}
.yc1{bottom:300.855000px;}
.y27b{bottom:301.755000px;}
.y23a{bottom:304.455000px;}
.y104{bottom:305.895000px;}
.y1e0{bottom:307.155000px;}
.y6a{bottom:308.595000px;}
.y176{bottom:309.855000px;}
.y266{bottom:311.115000px;}
.y192{bottom:312.195000px;}
.y24e{bottom:312.375000px;}
.ye9{bottom:314.895000px;}
.y7d{bottom:315.615000px;}
.yfc{bottom:318.855000px;}
.y11{bottom:321.735000px;}
.y4c{bottom:322.455000px;}
.y118{bottom:323.895000px;}
.y239{bottom:326.055000px;}
.y289{bottom:326.955000px;}
.y218{bottom:327.315000px;}
.y98{bottom:327.855000px;}
.yc0{bottom:331.995000px;}
.y103{bottom:336.855000px;}
.y1a4{bottom:338.115000px;}
.y175{bottom:340.995000px;}
.y27a{bottom:341.715000px;}
.y191{bottom:343.155000px;}
.ye8{bottom:345.855000px;}
.y1df{bottom:347.115000px;}
.y238{bottom:347.835000px;}
.y133{bottom:348.330000px;}
.y69{bottom:348.555000px;}
.yfb{bottom:349.995000px;}
.y265{bottom:351.255000px;}
.y4b{bottom:353.595000px;}
.y117{bottom:354.855000px;}
.y7c{bottom:355.755000px;}
.y24d{bottom:356.655000px;}
.y288{bottom:357.915000px;}
.y217{bottom:358.275000px;}
.y97{bottom:358.995000px;}
.y10{bottom:361.695000px;}
.ybf{bottom:362.955000px;}
.y299{bottom:366.915000px;}
.ya7{bottom:367.995000px;}
.y1a3{bottom:369.255000px;}
.y237{bottom:369.615000px;}
.y1a1{bottom:371.955000px;}
.y279{bottom:372.855000px;}
.y190{bottom:374.295000px;}
.ye7{bottom:376.995000px;}
.y1de{bottom:378.255000px;}
.y68{bottom:379.695000px;}
.yfa{bottom:380.955000px;}
.y264{bottom:382.215000px;}
.y1fa{bottom:382.935000px;}
.y4a{bottom:384.555000px;}
.y116{bottom:385.995000px;}
.y287{bottom:389.055000px;}
.y216{bottom:389.415000px;}
.yce{bottom:389.955000px;}
.y236{bottom:391.395000px;}
.ybe{bottom:393.915000px;}
.y7b{bottom:395.715000px;}
.y298{bottom:398.055000px;}
.y96{bottom:398.955000px;}
.y24c{bottom:400.755000px;}
.yf{bottom:401.835000px;}
.y1a0{bottom:402.915000px;}
.y18f{bottom:405.255000px;}
.y2a3{bottom:407.055000px;}
.ye6{bottom:407.955000px;}
.y1a2{bottom:408.675000px;}
.y1dd{bottom:409.215000px;}
.yf9{bottom:411.915000px;}
.y278{bottom:412.815000px;}
.y235{bottom:413.175000px;}
.y263{bottom:413.355000px;}
.y49{bottom:415.695000px;}
.y115{bottom:416.955000px;}
.y1f9{bottom:418.935000px;}
.y67{bottom:419.655000px;}
.ycd{bottom:420.915000px;}
.ybd{bottom:425.055000px;}
.y286{bottom:429.015000px;}
.y215{bottom:429.375000px;}
.y95{bottom:429.915000px;}
.y19f{bottom:434.055000px;}
.y234{bottom:434.955000px;}
.y7a{bottom:435.855000px;}
.y18e{bottom:436.395000px;}
.y297{bottom:438.015000px;}
.ye5{bottom:438.915000px;}
.y1dc{bottom:440.355000px;}
.yf8{bottom:443.055000px;}
.y277{bottom:443.955000px;}
.ye{bottom:444.315000px;}
.y24b{bottom:445.035000px;}
.y48{bottom:446.655000px;}
.y2a2{bottom:447.015000px;}
.y114{bottom:447.915000px;}
.y66{bottom:450.615000px;}
.ycc{bottom:452.055000px;}
.y262{bottom:453.315000px;}
.ybc{bottom:456.015000px;}
.y233{bottom:456.555000px;}
.y1f8{bottom:457.455000px;}
.y214{bottom:458.175000px;}
.y285{bottom:460.155000px;}
.y94{bottom:461.055000px;}
.y19e{bottom:465.015000px;}
.y18d{bottom:467.355000px;}
.y296{bottom:469.155000px;}
.ye4{bottom:470.055000px;}
.y210{bottom:471.135000px;}
.y135{bottom:474.015000px;}
.y79{bottom:475.815000px;}
.y47{bottom:477.615000px;}
.y2a1{bottom:478.155000px;}
.y232{bottom:478.335000px;}
.y113{bottom:479.055000px;}
.y1db{bottom:480.315000px;}
.y65{bottom:481.755000px;}
.ycb{bottom:483.015000px;}
.y276{bottom:483.915000px;}
.y261{bottom:484.455000px;}
.y1f7{bottom:488.595000px;}
.y24a{bottom:489.315000px;}
.yd{bottom:492.015000px;}
.ybb{bottom:496.155000px;}
.y18c{bottom:498.495000px;}
.y231{bottom:500.115000px;}
.ye3{bottom:501.015000px;}
.y174{bottom:505.155000px;}
.y46{bottom:508.755000px;}
.y295{bottom:509.115000px;}
.y112{bottom:510.015000px;}
.y1da{bottom:511.455000px;}
.y64{bottom:512.715000px;}
.yca{bottom:514.155000px;}
.y275{bottom:515.055000px;}
.y78{bottom:515.955000px;}
.y1f6{bottom:519.555000px;}
.y230{bottom:521.895000px;}
.y93{bottom:523.155000px;}
.y260{bottom:524.415000px;}
.yba{bottom:527.115000px;}
.y18b{bottom:529.455000px;}
.y284{bottom:531.255000px;}
.ye2{bottom:532.155000px;}
.y248{bottom:533.595000px;}
.y173{bottom:536.115000px;}
.y45{bottom:539.715000px;}
.y294{bottom:540.255000px;}
.y11c{bottom:541.155000px;}
.y1d9{bottom:542.415000px;}
.y22f{bottom:543.675000px;}
.y63{bottom:543.855000px;}
.yc9{bottom:545.115000px;}
.y274{bottom:546.015000px;}
.y2a0{bottom:549.255000px;}
.y111{bottom:550.155000px;}
.y1f5{bottom:550.695000px;}
.yc{bottom:551.775000px;}
.y92{bottom:554.115000px;}
.y25f{bottom:555.585000px;}
.y77{bottom:555.945000px;}
.yb9{bottom:558.285000px;}
.y102{bottom:563.145000px;}
.y22e{bottom:565.305000px;}
.y19d{bottom:567.285000px;}
.y18a{bottom:569.625000px;}
.y44{bottom:570.885000px;}
.y283{bottom:571.245000px;}
.ye1{bottom:572.145000px;}
.y32{bottom:573.945000px;}
.y62{bottom:574.845000px;}
.y172{bottom:575.925000px;}
.yc8{bottom:576.285000px;}
.y247{bottom:577.905000px;}
.y293{bottom:580.245000px;}
.y20f{bottom:580.605000px;}
.y110{bottom:581.145000px;}
.y1f4{bottom:581.685000px;}
.y1d8{bottom:582.225000px;}
.y91{bottom:585.285000px;}
.y273{bottom:586.185000px;}
.y22d{bottom:587.085000px;}
.yb8{bottom:589.245000px;}
.ya6{bottom:594.285000px;}
.y76{bottom:596.085000px;}
.y19c{bottom:598.245000px;}
.y189{bottom:600.585000px;}
.y43{bottom:601.845000px;}
.y282{bottom:602.385000px;}
.ye0{bottom:603.285000px;}
.y136{bottom:604.875000px;}
.y61{bottom:605.985000px;}
.yf4{bottom:607.245000px;}
.y222{bottom:607.980000px;}
.y25e{bottom:608.145000px;}
.y22c{bottom:608.865000px;}
.y292{bottom:611.385000px;}
.y10f{bottom:612.285000px;}
.y1f3{bottom:612.825000px;}
.yb{bottom:613.905000px;}
.y31{bottom:614.085000px;}
.y171{bottom:615.885000px;}
.y90{bottom:616.245000px;}
.y272{bottom:617.145000px;}
.yb7{bottom:620.385000px;}
.y246{bottom:622.005000px;}
.y1d7{bottom:622.545000px;}
.y20e{bottom:623.085000px;}
.y12f{bottom:623.955000px;}
.ya5{bottom:625.245000px;}
.y75{bottom:627.045000px;}
.y19b{bottom:629.385000px;}
.y22b{bottom:630.645000px;}
.y188{bottom:631.725000px;}
.y42{bottom:632.985000px;}
.ydf{bottom:634.245000px;}
.y60{bottom:636.945000px;}
.yf3{bottom:638.385000px;}
.y25d{bottom:639.285000px;}
.y281{bottom:642.345000px;}
.y10e{bottom:643.245000px;}
.y8f{bottom:647.385000px;}
.y1d6{bottom:648.825000px;}
.yb6{bottom:651.345000px;}
.y22a{bottom:652.425000px;}
.y1f2{bottom:652.785000px;}
.y30{bottom:654.045000px;}
.ya4{bottom:656.385000px;}
.y271{bottom:657.285000px;}
.y19a{bottom:660.345000px;}
.y41{bottom:663.945000px;}
.y17e{bottom:665.205000px;}
.yde{bottom:665.385000px;}
.y20c{bottom:665.565000px;}
.y245{bottom:666.285000px;}
.y74{bottom:667.185000px;}
.y5f{bottom:668.085000px;}
.yf7{bottom:669.345000px;}
.y187{bottom:671.685000px;}
.y280{bottom:673.485000px;}
.y229{bottom:674.205000px;}
.y10d{bottom:674.385000px;}
.ya{bottom:676.005000px;}
.yc7{bottom:678.345000px;}
.y26{bottom:681.045000px;}
.yb5{bottom:682.485000px;}
.y1f1{bottom:683.925000px;}
.y8e{bottom:687.345000px;}
.y270{bottom:688.245000px;}
.y1cd{bottom:688.425000px;}
.y199{bottom:691.485000px;}
.y25c{bottom:691.845000px;}
.y2f{bottom:694.185000px;}
.y40{bottom:695.085000px;}
.y228{bottom:695.805000px;}
.ydd{bottom:696.345000px;}
.y5e{bottom:699.045000px;}
.yf6{bottom:700.485000px;}
.y10c{bottom:705.345000px;}
.y73{bottom:707.145000px;}
.y20b{bottom:708.225000px;}
.yf2{bottom:709.485000px;}
.y244{bottom:710.565000px;}
.y186{bottom:711.825000px;}
.yb4{bottom:713.445000px;}
.y1f0{bottom:714.885000px;}
.y227{bottom:717.585000px;}
.y8d{bottom:718.485000px;}
.y25{bottom:721.185000px;}
.y291{bottom:722.445000px;}
.y25b{bottom:722.985000px;}
.y137{bottom:723.525000px;}
.y3f{bottom:726.045000px;}
.ydc{bottom:727.485000px;}
.y26f{bottom:728.385000px;}
.y5d{bottom:730.185000px;}
.y12a{bottom:731.445000px;}
.y2e{bottom:734.145000px;}
.y9{bottom:735.225000px;}
.y10b{bottom:736.485000px;}
.y226{bottom:739.365000px;}
.yf5{bottom:740.085000px;}
.yf1{bottom:740.445000px;}
.y1ee{bottom:740.985000px;}
.yb3{bottom:744.585000px;}
.y72{bottom:747.285000px;}
.y8c{bottom:749.445000px;}
.y20a{bottom:750.705000px;}
.y185{bottom:751.785000px;}
.y24{bottom:752.145000px;}
.y290{bottom:753.585000px;}
.y243{bottom:754.845000px;}
.y3e{bottom:757.185000px;}
.ydb{bottom:758.445000px;}
.y26e{bottom:759.345000px;}
.y5c{bottom:761.145000px;}
.y129{bottom:762.585000px;}
.y2d{bottom:765.285000px;}
.y10a{bottom:767.445000px;}
.y120{bottom:771.585000px;}
.y25a{bottom:775.545000px;}
.y7f{bottom:778.245000px;}
.y8{bottom:780.405000px;}
.y8b{bottom:780.585000px;}
.y225{bottom:782.925000px;}
.y23{bottom:783.285000px;}
.yb2{bottom:784.185000px;}
.y27f{bottom:784.545000px;}
.y71{bottom:787.245000px;}
.y3d{bottom:788.145000px;}
.y1c5{bottom:789.045000px;}
.yda{bottom:789.585000px;}
.y139{bottom:789.765000px;}
.y5b{bottom:792.285000px;}
.y184{bottom:793.185000px;}
.y128{bottom:793.545000px;}
.y2c{bottom:796.245000px;}
.y109{bottom:798.585000px;}
.y242{bottom:799.125000px;}
.y168{bottom:802.545000px;}
.y224{bottom:804.705000px;}
.y259{bottom:806.685000px;}
.y8a{bottom:811.545000px;}
.y26d{bottom:812.085000px;}
.y27e{bottom:815.685000px;}
.y70{bottom:818.385000px;}
.y3c{bottom:819.285000px;}
.ya3{bottom:820.545000px;}
.y22{bottom:823.245000px;}
.yb1{bottom:824.325000px;}
.y127{bottom:824.685000px;}
.y7{bottom:825.765000px;}
.y223{bottom:826.305000px;}
.y108{bottom:829.545000px;}
.y5a{bottom:832.245000px;}
.y1eb{bottom:832.605000px;}
.y167{bottom:833.685000px;}
.y183{bottom:834.585000px;}
.y241{bottom:835.125000px;}
.y206{bottom:835.665000px;}
.y2b{bottom:836.385000px;}
.y89{bottom:842.730000px;}
.y26c{bottom:843.090000px;}
.y258{bottom:846.690000px;}
.y3b{bottom:850.290000px;}
.ya2{bottom:851.730000px;}
.y21{bottom:854.430000px;}
.y126{bottom:855.690000px;}
.y6f{bottom:858.390000px;}
.yd9{bottom:860.730000px;}
.y59{bottom:863.430000px;}
.yb0{bottom:864.690000px;}
.y6{bottom:870.990000px;}
.y88{bottom:873.690000px;}
.y182{bottom:875.850000px;}
.y2a{bottom:876.390000px;}
.y205{bottom:878.370000px;}
.y3a{bottom:881.430000px;}
.ya1{bottom:882.690000px;}
.y220{bottom:884.130000px;}
.y20{bottom:885.390000px;}
.y257{bottom:886.830000px;}
.y1be{bottom:889.530000px;}
.yd8{bottom:891.690000px;}
.y58{bottom:894.390000px;}
.yaf{bottom:895.830000px;}
.y6e{bottom:898.530000px;}
.y87{bottom:904.830000px;}
.y181{bottom:906.990000px;}
.y29{bottom:907.530000px;}
.y39{bottom:912.390000px;}
.ya0{bottom:913.830000px;}
.y5{bottom:916.170000px;}
.y1f{bottom:916.530000px;}
.y256{bottom:917.790000px;}
.y203{bottom:920.850000px;}
.yd7{bottom:922.830000px;}
.y1e9{bottom:924.090000px;}
.y57{bottom:925.530000px;}
.yae{bottom:926.790000px;}
.yf0{bottom:935.790000px;}
.y6d{bottom:938.490000px;}
.y38{bottom:943.530000px;}
.y86{bottom:944.790000px;}
.y1e8{bottom:946.590000px;}
.y1e{bottom:947.490000px;}
.y180{bottom:948.210000px;}
.y255{bottom:948.930000px;}
.yd6{bottom:953.790000px;}
.y56{bottom:956.490000px;}
.yad{bottom:957.930000px;}
.y4{bottom:961.350000px;}
.y202{bottom:963.330000px;}
.yef{bottom:966.930000px;}
.y1b6{bottom:968.190000px;}
.y1e7{bottom:969.090000px;}
.y37{bottom:974.490000px;}
.y85{bottom:975.930000px;}
.y146{bottom:978.225000px;}
.y138{bottom:978.585000px;}
.y1d{bottom:978.630000px;}
.yd5{bottom:984.930000px;}
.y17f{bottom:988.710000px;}
.y125{bottom:988.890000px;}
.y55{bottom:996.630000px;}
.yac{bottom:997.890000px;}
.y201{bottom:999.330000px;}
.y36{bottom:1005.630000px;}
.y84{bottom:1006.890000px;}
.y3{bottom:1011.390000px;}
.yd4{bottom:1015.890000px;}
.y1c{bottom:1018.590000px;}
.y124{bottom:1020.030000px;}
.y54{bottom:1027.590000px;}
.y198{bottom:1028.670000px;}
.yab{bottom:1029.030000px;}
.y148{bottom:1031.910000px;}
.y35{bottom:1036.590000px;}
.y83{bottom:1038.030000px;}
.y1e6{bottom:1043.250000px;}
.yd3{bottom:1047.030000px;}
.y1b{bottom:1049.730000px;}
.y13c{bottom:1053.150000px;}
.y53{bottom:1058.730000px;}
.y123{bottom:1059.630000px;}
.y1b5{bottom:1059.810000px;}
.yaa{bottom:1059.990000px;}
.y15c{bottom:1063.770000px;}
.y2{bottom:1067.010000px;}
.y34{bottom:1067.730000px;}
.y82{bottom:1068.990000px;}
.yc6{bottom:1077.990000px;}
.y28{bottom:1080.690000px;}
.y1e5{bottom:1083.030000px;}
.y14b{bottom:1085.010000px;}
.y1a{bottom:1089.330000px;}
.y52{bottom:1089.690000px;}
.y254{bottom:1091.130000px;}
.y33{bottom:1098.690000px;}
.y1b1{bottom:1099.590000px;}
.ya9{bottom:1099.770000px;}
.y81{bottom:1100.130000px;}
.y1e4{bottom:1105.530000px;}
.y9f{bottom:1109.130000px;}
.y1{bottom:1122.660000px;}
.y27{bottom:1125.360000px;}
.ya8{bottom:1130.760000px;}
.y166{bottom:1131.120000px;}
.y19{bottom:1134.360000px;}
.y80{bottom:1139.760000px;}
.y9e{bottom:1140.120000px;}
.y1e3{bottom:1141.560000px;}
.h35{height:2.826563px;}
.h10{height:15.120000px;}
.h8{height:17.280000px;}
.h37{height:21.600000px;}
.h3f{height:21.636000px;}
.h32{height:21.780000px;}
.h31{height:21.816000px;}
.hf{height:38.158594px;}
.h2c{height:38.880000px;}
.h33{height:39.060000px;}
.h38{height:41.760000px;}
.h39{height:41.796000px;}
.h3a{height:41.940000px;}
.h41{height:43.380000px;}
.h42{height:43.416000px;}
.h40{height:43.560000px;}
.h1e{height:47.321367px;}
.h19{height:47.344922px;}
.h12{height:48.616875px;}
.hd{height:50.027344px;}
.h21{height:52.200000px;}
.h20{height:52.776000px;}
.h3d{height:54.421875px;}
.h29{height:56.196000px;}
.h34{height:56.340000px;}
.h9{height:58.651172px;}
.h2a{height:60.226875px;}
.h7{height:65.010937px;}
.h3c{height:65.518594px;}
.h1a{height:65.520000px;}
.h44{height:65.698594px;}
.h28{height:66.757500px;}
.h27{height:67.837500px;}
.h45{height:70.628906px;}
.ha{height:70.664062px;}
.h6{height:72.562500px;}
.h2b{height:73.440000px;}
.h1c{height:73.656000px;}
.h26{height:74.004654px;}
.hc{height:74.953125px;}
.h25{height:76.317188px;}
.h22{height:77.040000px;}
.h2e{height:77.940000px;}
.he{height:80.464922px;}
.h23{height:84.456000px;}
.h3{height:84.898125px;}
.h36{height:90.720000px;}
.h2d{height:90.900000px;}
.h5{height:96.508125px;}
.h24{height:98.280000px;}
.hb{height:99.687656px;}
.h30{height:99.720000px;}
.h2f{height:99.756000px;}
.h3b{height:108.756000px;}
.h2{height:108.843750px;}
.h1d{height:108.900000px;}
.h43{height:108.936000px;}
.h16{height:117.936000px;}
.h14{height:124.956000px;}
.h11{height:127.116000px;}
.h13{height:128.880000px;}
.h15{height:130.140000px;}
.h4{height:145.125000px;}
.h18{height:183.450000px;}
.h1b{height:188.100000px;}
.h1f{height:253.980000px;}
.h17{height:254.340000px;}
.h3e{height:626.325000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:4.140000px;}
.w6{width:7.560000px;}
.w3{width:8.460000px;}
.w5{width:11.700000px;}
.w4{width:12.420000px;}
.w21{width:13.680000px;}
.w25{width:13.716000px;}
.w2a{width:13.860000px;}
.w7{width:14.940000px;}
.w18{width:15.120000px;}
.w28{width:15.300000px;}
.w23{width:16.200000px;}
.w33{width:16.380000px;}
.w17{width:16.560000px;}
.w34{width:16.596000px;}
.w8{width:17.280000px;}
.w22{width:17.460000px;}
.w11{width:18.360000px;}
.wf{width:18.576000px;}
.we{width:19.800000px;}
.w10{width:19.980000px;}
.w15{width:20.016000px;}
.w1e{width:20.520000px;}
.w27{width:20.700000px;}
.w14{width:21.600000px;}
.w1d{width:21.960000px;}
.w9{width:27.540000px;}
.w24{width:27.720000px;}
.w1f{width:28.800000px;}
.w19{width:30.420000px;}
.w1a{width:30.780000px;}
.w12{width:33.300000px;}
.wd{width:36.540000px;}
.w29{width:36.720000px;}
.w2f{width:39.636000px;}
.w35{width:40.320000px;}
.w2d{width:40.860000px;}
.w32{width:41.400000px;}
.w2e{width:42.660000px;}
.w1b{width:45.036000px;}
.w4c{width:48.780000px;}
.w50{width:48.960000px;}
.w42{width:51.300000px;}
.w1c{width:58.140000px;}
.w13{width:61.560000px;}
.wc{width:64.800000px;}
.w3d{width:69.660000px;}
.w30{width:70.380000px;}
.w41{width:72.540000px;}
.w40{width:76.896000px;}
.w3c{width:77.040000px;}
.w45{width:83.520000px;}
.w48{width:83.556000px;}
.w47{width:83.700000px;}
.w46{width:83.736000px;}
.w3a{width:86.760000px;}
.w3e{width:86.976000px;}
.w4e{width:98.280000px;}
.w52{width:98.496000px;}
.w3f{width:99.720000px;}
.w3b{width:99.756000px;}
.w51{width:105.840000px;}
.w4d{width:106.056000px;}
.w2c{width:124.776000px;}
.w20{width:134.676000px;}
.w36{width:134.820000px;}
.w2b{width:196.050000px;}
.w4a{width:198.930000px;}
.w49{width:222.330000px;}
.w16{width:263.010000px;}
.w26{width:279.030000px;}
.w31{width:297.390000px;}
.wb{width:318.135000px;}
.w4b{width:333.930000px;}
.w4f{width:334.155000px;}
.w38{width:335.370000px;}
.w44{width:336.855000px;}
.w43{width:336.990000px;}
.w39{width:338.475000px;}
.w37{width:511.845000px;}
.wa{width:581.865000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x75{left:4.680000px;}
.x6b{left:7.740000px;}
.x78{left:9.360000px;}
.x17{left:10.980000px;}
.x36{left:12.240000px;}
.x13{left:13.500000px;}
.x28{left:15.300000px;}
.x16{left:17.820000px;}
.x3a{left:19.080000px;}
.x2f{left:20.520000px;}
.x50{left:22.320000px;}
.x5a{left:23.796000px;}
.x18{left:24.840000px;}
.x3d{left:26.451000px;}
.x49{left:27.540000px;}
.x29{left:29.160000px;}
.x7a{left:30.420000px;}
.x3f{left:32.940000px;}
.x31{left:34.740000px;}
.x76{left:36.360000px;}
.x1a{left:38.331000px;}
.x7f{left:47.160000px;}
.x1b{left:52.011000px;}
.x86{left:55.620000px;}
.x21{left:57.420000px;}
.x81{left:63.180000px;}
.x90{left:64.440000px;}
.x1c{left:65.871000px;}
.x80{left:67.860000px;}
.x85{left:69.660000px;}
.x84{left:71.280000px;}
.x22{left:72.720000px;}
.x87{left:74.700000px;}
.x8f{left:76.140000px;}
.x88{left:77.220000px;}
.x1d{left:79.731000px;}
.x83{left:81.180000px;}
.x82{left:82.800000px;}
.x23{left:86.580000px;}
.x1e{left:93.456000px;}
.x24{left:100.485000px;}
.x1f{left:107.316000px;}
.x25{left:114.165000px;}
.x6c{left:115.374000px;}
.x6a{left:119.916000px;}
.x20{left:121.176000px;}
.x8c{left:123.870000px;}
.x6d{left:126.030000px;}
.xa{left:127.656000px;}
.x6{left:132.876000px;}
.x26{left:141.885000px;}
.x14{left:151.590000px;}
.x2{left:157.530000px;}
.x89{left:160.050000px;}
.x15{left:165.810000px;}
.x5e{left:170.490000px;}
.x5{left:174.990000px;}
.x1{left:183.270000px;}
.x42{left:186.330000px;}
.x19{left:194.259000px;}
.x43{left:200.730000px;}
.x77{left:204.330000px;}
.x5f{left:205.590000px;}
.x6e{left:207.390000px;}
.x8a{left:208.830000px;}
.x44{left:218.910000px;}
.x27{left:222.510000px;}
.xb{left:230.610000px;}
.x45{left:233.490000px;}
.x60{left:238.890000px;}
.x46{left:250.410000px;}
.x61{left:255.990000px;}
.x7{left:257.070000px;}
.x2a{left:259.950000px;}
.x62{left:273.999000px;}
.x47{left:278.859000px;}
.x2b{left:280.659000px;}
.x79{left:288.795000px;}
.x63{left:291.315000px;}
.x48{left:293.475000px;}
.x2c{left:299.955000px;}
.x6f{left:307.875000px;}
.x8{left:312.915000px;}
.x8b{left:314.895000px;}
.x64{left:319.575000px;}
.x2d{left:320.655000px;}
.x4a{left:327.495000px;}
.x2e{left:339.735000px;}
.x7e{left:342.975000px;}
.x69{left:351.615000px;}
.x4b{left:357.015000px;}
.x65{left:360.615000px;}
.x9{left:363.135000px;}
.x30{left:373.755000px;}
.x66{left:376.635000px;}
.x4c{left:378.435000px;}
.xc{left:379.695000px;}
.x70{left:385.635000px;}
.x3{left:388.695000px;}
.x4d{left:397.515000px;}
.x67{left:405.075000px;}
.x4e{left:416.775000px;}
.x4f{left:432.795000px;}
.x32{left:436.035000px;}
.x68{left:437.295000px;}
.x4{left:446.475000px;}
.x10{left:449.715000px;}
.xf{left:450.975000px;}
.xe{left:452.955000px;}
.xd{left:455.115000px;}
.x33{left:458.349000px;}
.x51{left:470.229000px;}
.x34{left:479.085000px;}
.x52{left:489.525000px;}
.x8d{left:494.745000px;}
.x53{left:508.605000px;}
.x35{left:513.114000px;}
.x54{left:524.625000px;}
.x37{left:530.385000px;}
.x55{left:540.645000px;}
.x7b{left:542.085000px;}
.x71{left:543.705000px;}
.x38{left:549.465000px;}
.x56{left:558.645000px;}
.x39{left:565.305000px;}
.x57{left:573.234000px;}
.x3b{left:596.625000px;}
.x58{left:614.805000px;}
.x7c{left:626.505000px;}
.x3c{left:628.134000px;}
.x72{left:644.145000px;}
.x8e{left:649.545000px;}
.x59{left:658.374000px;}
.x3e{left:673.890000px;}
.x5b{left:698.904000px;}
.x7d{left:710.790000px;}
.x73{left:721.950000px;}
.x5c{left:727.170000px;}
.x74{left:731.850000px;}
.x40{left:732.924000px;}
.x5d{left:741.744000px;}
.x41{left:755.604000px;}
.x12{left:820.944000px;}
.x11{left:835.884000px;}
@media print{
.v3{vertical-align:-49.280000pt;}
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.023040pt;}
.ls17{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.135680pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.ls29{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.198933pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls7{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.265600pt;}
.ls26{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls28{letter-spacing:3.840000pt;}
.ls15{letter-spacing:7.040000pt;}
.lsa{letter-spacing:7.680000pt;}
.ls2b{letter-spacing:14.080000pt;}
.lse{letter-spacing:20.480000pt;}
.ls1a{letter-spacing:48.768000pt;}
.ls1c{letter-spacing:52.751360pt;}
.ls19{letter-spacing:92.800000pt;}
.ls10{letter-spacing:143.520000pt;}
.lsf{letter-spacing:172.906667pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1b{word-spacing:-16.896000pt;}
.ws12{word-spacing:-16.704000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws1a{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws18{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws16{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws11{word-spacing:-10.959467pt;}
.wse{word-spacing:-10.918933pt;}
.wsc{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.480533pt;}
.wsb{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-14.613333pt;}
._1a{margin-left:-11.355520pt;}
._17{margin-left:-9.173333pt;}
._18{margin-left:-7.573333pt;}
._16{margin-left:-5.653333pt;}
._1b{margin-left:-4.315520pt;}
._14{margin-left:-2.182187pt;}
._1{margin-left:-0.996480pt;}
._0{width:1.386667pt;}
._5{width:2.496000pt;}
._c{width:3.584000pt;}
._b{width:4.480000pt;}
._3{width:6.208000pt;}
._4{width:7.232000pt;}
._2{width:8.996480pt;}
._a{width:10.145707pt;}
._d{width:11.239253pt;}
._15{width:12.212267pt;}
._11{width:13.120000pt;}
._12{width:14.244480pt;}
._2f{width:16.279680pt;}
._8{width:17.664000pt;}
._9{width:18.816000pt;}
._13{width:20.004480pt;}
._6{width:21.440000pt;}
._7{width:22.432000pt;}
._1c{width:23.840000pt;}
._1e{width:25.440000pt;}
._e{width:26.880000pt;}
._f{width:27.797333pt;}
._10{width:29.109333pt;}
._1d{width:30.602667pt;}
._23{width:31.680000pt;}
._24{width:32.928000pt;}
._1f{width:34.240000pt;}
._20{width:35.264000pt;}
._21{width:37.248000pt;}
._22{width:38.336000pt;}
._25{width:40.356480pt;}
._34{width:41.956480pt;}
._28{width:43.370667pt;}
._29{width:44.303147pt;}
._26{width:48.938667pt;}
._27{width:50.122667pt;}
._30{width:55.664213pt;}
._31{width:57.356800pt;}
._33{width:65.231360pt;}
._2e{width:76.174080pt;}
._2d{width:77.290667pt;}
._32{width:83.185920pt;}
._2b{width:172.800000pt;}
._2c{width:174.186667pt;}
._2a{width:752.138667pt;}
.fsb{font-size:2.560000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:2.880000pt;}
.y1b0{bottom:3.040000pt;}
.y208{bottom:3.080000pt;}
.y1ad{bottom:3.200000pt;}
.y18{bottom:3.360000pt;}
.y209{bottom:5.760000pt;}
.y134{bottom:6.720000pt;}
.y131{bottom:6.880000pt;}
.y15d{bottom:7.360000pt;}
.y149{bottom:7.520000pt;}
.y13d{bottom:9.280000pt;}
.y15e{bottom:9.760000pt;}
.y147{bottom:10.080000pt;}
.y15b{bottom:10.240000pt;}
.y1ba{bottom:10.400000pt;}
.y14d{bottom:10.880000pt;}
.y14a{bottom:11.040000pt;}
.y1cc{bottom:11.200000pt;}
.y1d5{bottom:11.360000pt;}
.y13a{bottom:12.680000pt;}
.y15a{bottom:13.480000pt;}
.y15f{bottom:15.200000pt;}
.y154{bottom:17.000000pt;}
.y1af{bottom:18.240000pt;}
.y14c{bottom:18.560000pt;}
.y1ed{bottom:18.600000pt;}
.y1a9{bottom:18.720000pt;}
.y155{bottom:19.040000pt;}
.y13b{bottom:19.080000pt;}
.y14f{bottom:20.160000pt;}
.y151{bottom:20.520000pt;}
.y204{bottom:21.120000pt;}
.y207{bottom:21.160000pt;}
.y20d{bottom:21.280000pt;}
.y152{bottom:21.440000pt;}
.y14e{bottom:21.800000pt;}
.y1c8{bottom:22.240000pt;}
.y1c1{bottom:22.400000pt;}
.y213{bottom:22.560000pt;}
.y249{bottom:22.586667pt;}
.y1c4{bottom:22.720000pt;}
.y156{bottom:25.000000pt;}
.y140{bottom:25.960000pt;}
.y1cb{bottom:26.560000pt;}
.y1d4{bottom:26.720000pt;}
.y13f{bottom:29.640000pt;}
.y1b9{bottom:29.760000pt;}
.y160{bottom:29.800000pt;}
.y1ea{bottom:30.720000pt;}
.y144{bottom:30.920000pt;}
.y150{bottom:31.200000pt;}
.y153{bottom:32.480000pt;}
.y13e{bottom:32.680000pt;}
.y1a7{bottom:33.600000pt;}
.y1b2{bottom:33.626667pt;}
.y1a8{bottom:33.920000pt;}
.y1b4{bottom:33.946667pt;}
.y1ec{bottom:33.960000pt;}
.y1bd{bottom:34.080000pt;}
.y164{bottom:34.440000pt;}
.y23c{bottom:34.760000pt;}
.y162{bottom:35.720000pt;}
.y161{bottom:36.000000pt;}
.y165{bottom:36.960000pt;}
.y1c0{bottom:37.600000pt;}
.y1d0{bottom:37.760000pt;}
.y1c3{bottom:37.920000pt;}
.y145{bottom:40.640000pt;}
.y141{bottom:41.440000pt;}
.y163{bottom:41.920000pt;}
.y1d3{bottom:42.080000pt;}
.y143{bottom:45.280000pt;}
.y142{bottom:46.560000pt;}
.y17{bottom:48.672000pt;}
.y1ab{bottom:48.960000pt;}
.y1b8{bottom:49.120000pt;}
.y1ac{bottom:49.280000pt;}
.y1bc{bottom:49.440000pt;}
.y16{bottom:50.752000pt;}
.y1bf{bottom:52.960000pt;}
.y1c2{bottom:53.280000pt;}
.y1c7{bottom:57.000000pt;}
.y1cf{bottom:57.120000pt;}
.y1ca{bottom:57.320000pt;}
.y1d2{bottom:57.440000pt;}
.y212{bottom:61.280000pt;}
.y251{bottom:61.440000pt;}
.y1b7{bottom:64.480000pt;}
.y1ef{bottom:64.640000pt;}
.y1bb{bottom:64.800000pt;}
.y1ce{bottom:72.320000pt;}
.y1c6{bottom:72.360000pt;}
.y1d1{bottom:72.640000pt;}
.y1c9{bottom:72.680000pt;}
.y159{bottom:74.760000pt;}
.y158{bottom:78.440000pt;}
.y157{bottom:79.720000pt;}
.y130{bottom:80.640000pt;}
.y211{bottom:80.666667pt;}
.y250{bottom:80.840000pt;}
.y12e{bottom:94.560000pt;}
.y12d{bottom:97.792000pt;}
.y28f{bottom:100.992000pt;}
.y17c{bottom:101.792000pt;}
.y1ae{bottom:102.272000pt;}
.y240{bottom:102.432000pt;}
.y170{bottom:106.272000pt;}
.y29f{bottom:108.992000pt;}
.y101{bottom:109.792000pt;}
.y51{bottom:111.552000pt;}
.y16c{bottom:113.152000pt;}
.y11b{bottom:114.272000pt;}
.yd2{bottom:117.792000pt;}
.y12c{bottom:119.232000pt;}
.y200{bottom:120.672000pt;}
.yc5{bottom:121.472000pt;}
.y21f{bottom:122.272000pt;}
.y26b{bottom:122.592000pt;}
.y16e{bottom:123.552000pt;}
.yee{bottom:125.792000pt;}
.y16b{bottom:128.352000pt;}
.y28e{bottom:128.672000pt;}
.y12b{bottom:129.152000pt;}
.y17b{bottom:129.472000pt;}
.y23f{bottom:130.112000pt;}
.y197{bottom:131.392000pt;}
.y16f{bottom:133.786667pt;}
.y15{bottom:136.506667pt;}
.y29e{bottom:136.666667pt;}
.y100{bottom:137.466667pt;}
.y1aa{bottom:137.626667pt;}
.y11a{bottom:141.786667pt;}
.y253{bottom:143.226667pt;}
.y21e{bottom:143.706667pt;}
.yd1{bottom:145.466667pt;}
.y1ff{bottom:148.186667pt;}
.yc4{bottom:148.986667pt;}
.y16a{bottom:149.786667pt;}
.y26a{bottom:150.266667pt;}
.y50{bottom:152.186667pt;}
.y16d{bottom:152.346667pt;}
.y9d{bottom:153.466667pt;}
.y17a{bottom:156.986667pt;}
.y23e{bottom:157.626667pt;}
.y196{bottom:159.066667pt;}
.y169{bottom:159.706667pt;}
.yed{bottom:161.466667pt;}
.y28d{bottom:164.186667pt;}
.yff{bottom:164.986667pt;}
.y21d{bottom:165.146667pt;}
.y252{bottom:168.666667pt;}
.y119{bottom:169.466667pt;}
.y29d{bottom:172.186667pt;}
.yd0{bottom:172.986667pt;}
.y21c{bottom:175.066667pt;}
.y1fe{bottom:175.866667pt;}
.y14{bottom:176.666667pt;}
.y17d{bottom:177.466667pt;}
.y24f{bottom:180.186667pt;}
.y9c{bottom:180.986667pt;}
.y122{bottom:182.266667pt;}
.y269{bottom:185.786667pt;}
.y195{bottom:186.586667pt;}
.y4f{bottom:187.866667pt;}
.y107{bottom:188.986667pt;}
.y28c{bottom:191.866667pt;}
.y179{bottom:192.666667pt;}
.y23d{bottom:193.306667pt;}
.y132{bottom:194.266667pt;}
.yec{bottom:196.986667pt;}
.y29c{bottom:199.866667pt;}
.ycf{bottom:200.666667pt;}
.y1e2{bottom:201.786667pt;}
.y6c{bottom:203.066667pt;}
.y1fd{bottom:203.386667pt;}
.y1a6{bottom:203.546667pt;}
.yc3{bottom:204.186667pt;}
.y11f{bottom:204.986667pt;}
.y21b{bottom:208.026667pt;}
.y9b{bottom:208.666667pt;}
.y121{bottom:208.826667pt;}
.y27d{bottom:212.986667pt;}
.y268{bottom:213.466667pt;}
.y194{bottom:214.266667pt;}
.y13{bottom:214.746667pt;}
.y221{bottom:216.506667pt;}
.y106{bottom:216.666667pt;}
.y178{bottom:220.186667pt;}
.y4e{bottom:223.386667pt;}
.yeb{bottom:224.666667pt;}
.y28b{bottom:227.386667pt;}
.yfe{bottom:228.186667pt;}
.y1fc{bottom:231.066667pt;}
.y11e{bottom:232.666667pt;}
.y29b{bottom:235.386667pt;}
.y21a{bottom:235.706667pt;}
.y9a{bottom:236.186667pt;}
.y1e1{bottom:237.466667pt;}
.y6b{bottom:238.586667pt;}
.yc2{bottom:239.866667pt;}
.y27c{bottom:240.666667pt;}
.y193{bottom:241.786667pt;}
.y105{bottom:244.226667pt;}
.y7e{bottom:245.026667pt;}
.y177{bottom:247.906667pt;}
.y267{bottom:249.026667pt;}
.y12{bottom:250.306667pt;}
.y4d{bottom:251.106667pt;}
.y23b{bottom:251.266667pt;}
.yea{bottom:252.226667pt;}
.y1fb{bottom:254.306667pt;}
.y28a{bottom:255.106667pt;}
.yfd{bottom:255.906667pt;}
.y11d{bottom:260.226667pt;}
.y29a{bottom:263.106667pt;}
.y219{bottom:263.266667pt;}
.y99{bottom:263.906667pt;}
.y1a5{bottom:266.306667pt;}
.yc1{bottom:267.426667pt;}
.y27b{bottom:268.226667pt;}
.y23a{bottom:270.626667pt;}
.y104{bottom:271.906667pt;}
.y1e0{bottom:273.026667pt;}
.y6a{bottom:274.306667pt;}
.y176{bottom:275.426667pt;}
.y266{bottom:276.546667pt;}
.y192{bottom:277.506667pt;}
.y24e{bottom:277.666667pt;}
.ye9{bottom:279.906667pt;}
.y7d{bottom:280.546667pt;}
.yfc{bottom:283.426667pt;}
.y11{bottom:285.986667pt;}
.y4c{bottom:286.626667pt;}
.y118{bottom:287.906667pt;}
.y239{bottom:289.826667pt;}
.y289{bottom:290.626667pt;}
.y218{bottom:290.946667pt;}
.y98{bottom:291.426667pt;}
.yc0{bottom:295.106667pt;}
.y103{bottom:299.426667pt;}
.y1a4{bottom:300.546667pt;}
.y175{bottom:303.106667pt;}
.y27a{bottom:303.746667pt;}
.y191{bottom:305.026667pt;}
.ye8{bottom:307.426667pt;}
.y1df{bottom:308.546667pt;}
.y238{bottom:309.186667pt;}
.y133{bottom:309.626667pt;}
.y69{bottom:309.826667pt;}
.yfb{bottom:311.106667pt;}
.y265{bottom:312.226667pt;}
.y4b{bottom:314.306667pt;}
.y117{bottom:315.426667pt;}
.y7c{bottom:316.226667pt;}
.y24d{bottom:317.026667pt;}
.y288{bottom:318.146667pt;}
.y217{bottom:318.466667pt;}
.y97{bottom:319.106667pt;}
.y10{bottom:321.506667pt;}
.ybf{bottom:322.626667pt;}
.y299{bottom:326.146667pt;}
.ya7{bottom:327.106667pt;}
.y1a3{bottom:328.226667pt;}
.y237{bottom:328.546667pt;}
.y1a1{bottom:330.626667pt;}
.y279{bottom:331.426667pt;}
.y190{bottom:332.706667pt;}
.ye7{bottom:335.106667pt;}
.y1de{bottom:336.226667pt;}
.y68{bottom:337.506667pt;}
.yfa{bottom:338.626667pt;}
.y264{bottom:339.746667pt;}
.y1fa{bottom:340.386667pt;}
.y4a{bottom:341.826667pt;}
.y116{bottom:343.106667pt;}
.y287{bottom:345.826667pt;}
.y216{bottom:346.146667pt;}
.yce{bottom:346.626667pt;}
.y236{bottom:347.906667pt;}
.ybe{bottom:350.146667pt;}
.y7b{bottom:351.746667pt;}
.y298{bottom:353.826667pt;}
.y96{bottom:354.626667pt;}
.y24c{bottom:356.226667pt;}
.yf{bottom:357.186667pt;}
.y1a0{bottom:358.146667pt;}
.y18f{bottom:360.226667pt;}
.y2a3{bottom:361.826667pt;}
.ye6{bottom:362.626667pt;}
.y1a2{bottom:363.266667pt;}
.y1dd{bottom:363.746667pt;}
.yf9{bottom:366.146667pt;}
.y278{bottom:366.946667pt;}
.y235{bottom:367.266667pt;}
.y263{bottom:367.426667pt;}
.y49{bottom:369.506667pt;}
.y115{bottom:370.626667pt;}
.y1f9{bottom:372.386667pt;}
.y67{bottom:373.026667pt;}
.ycd{bottom:374.146667pt;}
.ybd{bottom:377.826667pt;}
.y286{bottom:381.346667pt;}
.y215{bottom:381.666667pt;}
.y95{bottom:382.146667pt;}
.y19f{bottom:385.826667pt;}
.y234{bottom:386.626667pt;}
.y7a{bottom:387.426667pt;}
.y18e{bottom:387.906667pt;}
.y297{bottom:389.346667pt;}
.ye5{bottom:390.146667pt;}
.y1dc{bottom:391.426667pt;}
.yf8{bottom:393.826667pt;}
.y277{bottom:394.626667pt;}
.ye{bottom:394.946667pt;}
.y24b{bottom:395.586667pt;}
.y48{bottom:397.026667pt;}
.y2a2{bottom:397.346667pt;}
.y114{bottom:398.146667pt;}
.y66{bottom:400.546667pt;}
.ycc{bottom:401.826667pt;}
.y262{bottom:402.946667pt;}
.ybc{bottom:405.346667pt;}
.y233{bottom:405.826667pt;}
.y1f8{bottom:406.626667pt;}
.y214{bottom:407.266667pt;}
.y285{bottom:409.026667pt;}
.y94{bottom:409.826667pt;}
.y19e{bottom:413.346667pt;}
.y18d{bottom:415.426667pt;}
.y296{bottom:417.026667pt;}
.ye4{bottom:417.826667pt;}
.y210{bottom:418.786667pt;}
.y135{bottom:421.346667pt;}
.y79{bottom:422.946667pt;}
.y47{bottom:424.546667pt;}
.y2a1{bottom:425.026667pt;}
.y232{bottom:425.186667pt;}
.y113{bottom:425.826667pt;}
.y1db{bottom:426.946667pt;}
.y65{bottom:428.226667pt;}
.ycb{bottom:429.346667pt;}
.y276{bottom:430.146667pt;}
.y261{bottom:430.626667pt;}
.y1f7{bottom:434.306667pt;}
.y24a{bottom:434.946667pt;}
.yd{bottom:437.346667pt;}
.ybb{bottom:441.026667pt;}
.y18c{bottom:443.106667pt;}
.y231{bottom:444.546667pt;}
.ye3{bottom:445.346667pt;}
.y174{bottom:449.026667pt;}
.y46{bottom:452.226667pt;}
.y295{bottom:452.546667pt;}
.y112{bottom:453.346667pt;}
.y1da{bottom:454.626667pt;}
.y64{bottom:455.746667pt;}
.yca{bottom:457.026667pt;}
.y275{bottom:457.826667pt;}
.y78{bottom:458.626667pt;}
.y1f6{bottom:461.826667pt;}
.y230{bottom:463.906667pt;}
.y93{bottom:465.026667pt;}
.y260{bottom:466.146667pt;}
.yba{bottom:468.546667pt;}
.y18b{bottom:470.626667pt;}
.y284{bottom:472.226667pt;}
.ye2{bottom:473.026667pt;}
.y248{bottom:474.306667pt;}
.y173{bottom:476.546667pt;}
.y45{bottom:479.746667pt;}
.y294{bottom:480.226667pt;}
.y11c{bottom:481.026667pt;}
.y1d9{bottom:482.146667pt;}
.y22f{bottom:483.266667pt;}
.y63{bottom:483.426667pt;}
.yc9{bottom:484.546667pt;}
.y274{bottom:485.346667pt;}
.y2a0{bottom:488.226667pt;}
.y111{bottom:489.026667pt;}
.y1f5{bottom:489.506667pt;}
.yc{bottom:490.466667pt;}
.y92{bottom:492.546667pt;}
.y25f{bottom:493.853333pt;}
.y77{bottom:494.173333pt;}
.yb9{bottom:496.253333pt;}
.y102{bottom:500.573333pt;}
.y22e{bottom:502.493333pt;}
.y19d{bottom:504.253333pt;}
.y18a{bottom:506.333333pt;}
.y44{bottom:507.453333pt;}
.y283{bottom:507.773333pt;}
.ye1{bottom:508.573333pt;}
.y32{bottom:510.173333pt;}
.y62{bottom:510.973333pt;}
.y172{bottom:511.933333pt;}
.yc8{bottom:512.253333pt;}
.y247{bottom:513.693333pt;}
.y293{bottom:515.773333pt;}
.y20f{bottom:516.093333pt;}
.y110{bottom:516.573333pt;}
.y1f4{bottom:517.053333pt;}
.y1d8{bottom:517.533333pt;}
.y91{bottom:520.253333pt;}
.y273{bottom:521.053333pt;}
.y22d{bottom:521.853333pt;}
.yb8{bottom:523.773333pt;}
.ya6{bottom:528.253333pt;}
.y76{bottom:529.853333pt;}
.y19c{bottom:531.773333pt;}
.y189{bottom:533.853333pt;}
.y43{bottom:534.973333pt;}
.y282{bottom:535.453333pt;}
.ye0{bottom:536.253333pt;}
.y136{bottom:537.666667pt;}
.y61{bottom:538.653333pt;}
.yf4{bottom:539.773333pt;}
.y222{bottom:540.426667pt;}
.y25e{bottom:540.573333pt;}
.y22c{bottom:541.213333pt;}
.y292{bottom:543.453333pt;}
.y10f{bottom:544.253333pt;}
.y1f3{bottom:544.733333pt;}
.yb{bottom:545.693333pt;}
.y31{bottom:545.853333pt;}
.y171{bottom:547.453333pt;}
.y90{bottom:547.773333pt;}
.y272{bottom:548.573333pt;}
.yb7{bottom:551.453333pt;}
.y246{bottom:552.893333pt;}
.y1d7{bottom:553.373333pt;}
.y20e{bottom:553.853333pt;}
.y12f{bottom:554.626667pt;}
.ya5{bottom:555.773333pt;}
.y75{bottom:557.373333pt;}
.y19b{bottom:559.453333pt;}
.y22b{bottom:560.573333pt;}
.y188{bottom:561.533333pt;}
.y42{bottom:562.653333pt;}
.ydf{bottom:563.773333pt;}
.y60{bottom:566.173333pt;}
.yf3{bottom:567.453333pt;}
.y25d{bottom:568.253333pt;}
.y281{bottom:570.973333pt;}
.y10e{bottom:571.773333pt;}
.y8f{bottom:575.453333pt;}
.y1d6{bottom:576.733333pt;}
.yb6{bottom:578.973333pt;}
.y22a{bottom:579.933333pt;}
.y1f2{bottom:580.253333pt;}
.y30{bottom:581.373333pt;}
.ya4{bottom:583.453333pt;}
.y271{bottom:584.253333pt;}
.y19a{bottom:586.973333pt;}
.y41{bottom:590.173333pt;}
.y17e{bottom:591.293333pt;}
.yde{bottom:591.453333pt;}
.y20c{bottom:591.613333pt;}
.y245{bottom:592.253333pt;}
.y74{bottom:593.053333pt;}
.y5f{bottom:593.853333pt;}
.yf7{bottom:594.973333pt;}
.y187{bottom:597.053333pt;}
.y280{bottom:598.653333pt;}
.y229{bottom:599.293333pt;}
.y10d{bottom:599.453333pt;}
.ya{bottom:600.893333pt;}
.yc7{bottom:602.973333pt;}
.y26{bottom:605.373333pt;}
.yb5{bottom:606.653333pt;}
.y1f1{bottom:607.933333pt;}
.y8e{bottom:610.973333pt;}
.y270{bottom:611.773333pt;}
.y1cd{bottom:611.933333pt;}
.y199{bottom:614.653333pt;}
.y25c{bottom:614.973333pt;}
.y2f{bottom:617.053333pt;}
.y40{bottom:617.853333pt;}
.y228{bottom:618.493333pt;}
.ydd{bottom:618.973333pt;}
.y5e{bottom:621.373333pt;}
.yf6{bottom:622.653333pt;}
.y10c{bottom:626.973333pt;}
.y73{bottom:628.573333pt;}
.y20b{bottom:629.533333pt;}
.yf2{bottom:630.653333pt;}
.y244{bottom:631.613333pt;}
.y186{bottom:632.733333pt;}
.yb4{bottom:634.173333pt;}
.y1f0{bottom:635.453333pt;}
.y227{bottom:637.853333pt;}
.y8d{bottom:638.653333pt;}
.y25{bottom:641.053333pt;}
.y291{bottom:642.173333pt;}
.y25b{bottom:642.653333pt;}
.y137{bottom:643.133333pt;}
.y3f{bottom:645.373333pt;}
.ydc{bottom:646.653333pt;}
.y26f{bottom:647.453333pt;}
.y5d{bottom:649.053333pt;}
.y12a{bottom:650.173333pt;}
.y2e{bottom:652.573333pt;}
.y9{bottom:653.533333pt;}
.y10b{bottom:654.653333pt;}
.y226{bottom:657.213333pt;}
.yf5{bottom:657.853333pt;}
.yf1{bottom:658.173333pt;}
.y1ee{bottom:658.653333pt;}
.yb3{bottom:661.853333pt;}
.y72{bottom:664.253333pt;}
.y8c{bottom:666.173333pt;}
.y20a{bottom:667.293333pt;}
.y185{bottom:668.253333pt;}
.y24{bottom:668.573333pt;}
.y290{bottom:669.853333pt;}
.y243{bottom:670.973333pt;}
.y3e{bottom:673.053333pt;}
.ydb{bottom:674.173333pt;}
.y26e{bottom:674.973333pt;}
.y5c{bottom:676.573333pt;}
.y129{bottom:677.853333pt;}
.y2d{bottom:680.253333pt;}
.y10a{bottom:682.173333pt;}
.y120{bottom:685.853333pt;}
.y25a{bottom:689.373333pt;}
.y7f{bottom:691.773333pt;}
.y8{bottom:693.693333pt;}
.y8b{bottom:693.853333pt;}
.y225{bottom:695.933333pt;}
.y23{bottom:696.253333pt;}
.yb2{bottom:697.053333pt;}
.y27f{bottom:697.373333pt;}
.y71{bottom:699.773333pt;}
.y3d{bottom:700.573333pt;}
.y1c5{bottom:701.373333pt;}
.yda{bottom:701.853333pt;}
.y139{bottom:702.013333pt;}
.y5b{bottom:704.253333pt;}
.y184{bottom:705.053333pt;}
.y128{bottom:705.373333pt;}
.y2c{bottom:707.773333pt;}
.y109{bottom:709.853333pt;}
.y242{bottom:710.333333pt;}
.y168{bottom:713.373333pt;}
.y224{bottom:715.293333pt;}
.y259{bottom:717.053333pt;}
.y8a{bottom:721.373333pt;}
.y26d{bottom:721.853333pt;}
.y27e{bottom:725.053333pt;}
.y70{bottom:727.453333pt;}
.y3c{bottom:728.253333pt;}
.ya3{bottom:729.373333pt;}
.y22{bottom:731.773333pt;}
.yb1{bottom:732.733333pt;}
.y127{bottom:733.053333pt;}
.y7{bottom:734.013333pt;}
.y223{bottom:734.493333pt;}
.y108{bottom:737.373333pt;}
.y5a{bottom:739.773333pt;}
.y1eb{bottom:740.093333pt;}
.y167{bottom:741.053333pt;}
.y183{bottom:741.853333pt;}
.y241{bottom:742.333333pt;}
.y206{bottom:742.813333pt;}
.y2b{bottom:743.453333pt;}
.y89{bottom:749.093333pt;}
.y26c{bottom:749.413333pt;}
.y258{bottom:752.613333pt;}
.y3b{bottom:755.813333pt;}
.ya2{bottom:757.093333pt;}
.y21{bottom:759.493333pt;}
.y126{bottom:760.613333pt;}
.y6f{bottom:763.013333pt;}
.yd9{bottom:765.093333pt;}
.y59{bottom:767.493333pt;}
.yb0{bottom:768.613333pt;}
.y6{bottom:774.213333pt;}
.y88{bottom:776.613333pt;}
.y182{bottom:778.533333pt;}
.y2a{bottom:779.013333pt;}
.y205{bottom:780.773333pt;}
.y3a{bottom:783.493333pt;}
.ya1{bottom:784.613333pt;}
.y220{bottom:785.893333pt;}
.y20{bottom:787.013333pt;}
.y257{bottom:788.293333pt;}
.y1be{bottom:790.693333pt;}
.yd8{bottom:792.613333pt;}
.y58{bottom:795.013333pt;}
.yaf{bottom:796.293333pt;}
.y6e{bottom:798.693333pt;}
.y87{bottom:804.293333pt;}
.y181{bottom:806.213333pt;}
.y29{bottom:806.693333pt;}
.y39{bottom:811.013333pt;}
.ya0{bottom:812.293333pt;}
.y5{bottom:814.373333pt;}
.y1f{bottom:814.693333pt;}
.y256{bottom:815.813333pt;}
.y203{bottom:818.533333pt;}
.yd7{bottom:820.293333pt;}
.y1e9{bottom:821.413333pt;}
.y57{bottom:822.693333pt;}
.yae{bottom:823.813333pt;}
.yf0{bottom:831.813333pt;}
.y6d{bottom:834.213333pt;}
.y38{bottom:838.693333pt;}
.y86{bottom:839.813333pt;}
.y1e8{bottom:841.413333pt;}
.y1e{bottom:842.213333pt;}
.y180{bottom:842.853333pt;}
.y255{bottom:843.493333pt;}
.yd6{bottom:847.813333pt;}
.y56{bottom:850.213333pt;}
.yad{bottom:851.493333pt;}
.y4{bottom:854.533333pt;}
.y202{bottom:856.293333pt;}
.yef{bottom:859.493333pt;}
.y1b6{bottom:860.613333pt;}
.y1e7{bottom:861.413333pt;}
.y37{bottom:866.213333pt;}
.y85{bottom:867.493333pt;}
.y146{bottom:869.533333pt;}
.y138{bottom:869.853333pt;}
.y1d{bottom:869.893333pt;}
.yd5{bottom:875.493333pt;}
.y17f{bottom:878.853333pt;}
.y125{bottom:879.013333pt;}
.y55{bottom:885.893333pt;}
.yac{bottom:887.013333pt;}
.y201{bottom:888.293333pt;}
.y36{bottom:893.893333pt;}
.y84{bottom:895.013333pt;}
.y3{bottom:899.013333pt;}
.yd4{bottom:903.013333pt;}
.y1c{bottom:905.413333pt;}
.y124{bottom:906.693333pt;}
.y54{bottom:913.413333pt;}
.y198{bottom:914.373333pt;}
.yab{bottom:914.693333pt;}
.y148{bottom:917.253333pt;}
.y35{bottom:921.413333pt;}
.y83{bottom:922.693333pt;}
.y1e6{bottom:927.333333pt;}
.yd3{bottom:930.693333pt;}
.y1b{bottom:933.093333pt;}
.y13c{bottom:936.133333pt;}
.y53{bottom:941.093333pt;}
.y123{bottom:941.893333pt;}
.y1b5{bottom:942.053333pt;}
.yaa{bottom:942.213333pt;}
.y15c{bottom:945.573333pt;}
.y2{bottom:948.453333pt;}
.y34{bottom:949.093333pt;}
.y82{bottom:950.213333pt;}
.yc6{bottom:958.213333pt;}
.y28{bottom:960.613333pt;}
.y1e5{bottom:962.693333pt;}
.y14b{bottom:964.453333pt;}
.y1a{bottom:968.293333pt;}
.y52{bottom:968.613333pt;}
.y254{bottom:969.893333pt;}
.y33{bottom:976.613333pt;}
.y1b1{bottom:977.413333pt;}
.ya9{bottom:977.573333pt;}
.y81{bottom:977.893333pt;}
.y1e4{bottom:982.693333pt;}
.y9f{bottom:985.893333pt;}
.y1{bottom:997.920000pt;}
.y27{bottom:1000.320000pt;}
.ya8{bottom:1005.120000pt;}
.y166{bottom:1005.440000pt;}
.y19{bottom:1008.320000pt;}
.y80{bottom:1013.120000pt;}
.y9e{bottom:1013.440000pt;}
.y1e3{bottom:1014.720000pt;}
.h35{height:2.512500pt;}
.h10{height:13.440000pt;}
.h8{height:15.360000pt;}
.h37{height:19.200000pt;}
.h3f{height:19.232000pt;}
.h32{height:19.360000pt;}
.h31{height:19.392000pt;}
.hf{height:33.918750pt;}
.h2c{height:34.560000pt;}
.h33{height:34.720000pt;}
.h38{height:37.120000pt;}
.h39{height:37.152000pt;}
.h3a{height:37.280000pt;}
.h41{height:38.560000pt;}
.h42{height:38.592000pt;}
.h40{height:38.720000pt;}
.h1e{height:42.063437pt;}
.h19{height:42.084375pt;}
.h12{height:43.215000pt;}
.hd{height:44.468750pt;}
.h21{height:46.400000pt;}
.h20{height:46.912000pt;}
.h3d{height:48.375000pt;}
.h29{height:49.952000pt;}
.h34{height:50.080000pt;}
.h9{height:52.134375pt;}
.h2a{height:53.535000pt;}
.h7{height:57.787500pt;}
.h3c{height:58.238750pt;}
.h1a{height:58.240000pt;}
.h44{height:58.398750pt;}
.h28{height:59.340000pt;}
.h27{height:60.300000pt;}
.h45{height:62.781250pt;}
.ha{height:62.812500pt;}
.h6{height:64.500000pt;}
.h2b{height:65.280000pt;}
.h1c{height:65.472000pt;}
.h26{height:65.781915pt;}
.hc{height:66.625000pt;}
.h25{height:67.837500pt;}
.h22{height:68.480000pt;}
.h2e{height:69.280000pt;}
.he{height:71.524375pt;}
.h23{height:75.072000pt;}
.h3{height:75.465000pt;}
.h36{height:80.640000pt;}
.h2d{height:80.800000pt;}
.h5{height:85.785000pt;}
.h24{height:87.360000pt;}
.hb{height:88.611250pt;}
.h30{height:88.640000pt;}
.h2f{height:88.672000pt;}
.h3b{height:96.672000pt;}
.h2{height:96.750000pt;}
.h1d{height:96.800000pt;}
.h43{height:96.832000pt;}
.h16{height:104.832000pt;}
.h14{height:111.072000pt;}
.h11{height:112.992000pt;}
.h13{height:114.560000pt;}
.h15{height:115.680000pt;}
.h4{height:129.000000pt;}
.h18{height:163.066667pt;}
.h1b{height:167.200000pt;}
.h1f{height:225.760000pt;}
.h17{height:226.080000pt;}
.h3e{height:556.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:3.680000pt;}
.w6{width:6.720000pt;}
.w3{width:7.520000pt;}
.w5{width:10.400000pt;}
.w4{width:11.040000pt;}
.w21{width:12.160000pt;}
.w25{width:12.192000pt;}
.w2a{width:12.320000pt;}
.w7{width:13.280000pt;}
.w18{width:13.440000pt;}
.w28{width:13.600000pt;}
.w23{width:14.400000pt;}
.w33{width:14.560000pt;}
.w17{width:14.720000pt;}
.w34{width:14.752000pt;}
.w8{width:15.360000pt;}
.w22{width:15.520000pt;}
.w11{width:16.320000pt;}
.wf{width:16.512000pt;}
.we{width:17.600000pt;}
.w10{width:17.760000pt;}
.w15{width:17.792000pt;}
.w1e{width:18.240000pt;}
.w27{width:18.400000pt;}
.w14{width:19.200000pt;}
.w1d{width:19.520000pt;}
.w9{width:24.480000pt;}
.w24{width:24.640000pt;}
.w1f{width:25.600000pt;}
.w19{width:27.040000pt;}
.w1a{width:27.360000pt;}
.w12{width:29.600000pt;}
.wd{width:32.480000pt;}
.w29{width:32.640000pt;}
.w2f{width:35.232000pt;}
.w35{width:35.840000pt;}
.w2d{width:36.320000pt;}
.w32{width:36.800000pt;}
.w2e{width:37.920000pt;}
.w1b{width:40.032000pt;}
.w4c{width:43.360000pt;}
.w50{width:43.520000pt;}
.w42{width:45.600000pt;}
.w1c{width:51.680000pt;}
.w13{width:54.720000pt;}
.wc{width:57.600000pt;}
.w3d{width:61.920000pt;}
.w30{width:62.560000pt;}
.w41{width:64.480000pt;}
.w40{width:68.352000pt;}
.w3c{width:68.480000pt;}
.w45{width:74.240000pt;}
.w48{width:74.272000pt;}
.w47{width:74.400000pt;}
.w46{width:74.432000pt;}
.w3a{width:77.120000pt;}
.w3e{width:77.312000pt;}
.w4e{width:87.360000pt;}
.w52{width:87.552000pt;}
.w3f{width:88.640000pt;}
.w3b{width:88.672000pt;}
.w51{width:94.080000pt;}
.w4d{width:94.272000pt;}
.w2c{width:110.912000pt;}
.w20{width:119.712000pt;}
.w36{width:119.840000pt;}
.w2b{width:174.266667pt;}
.w4a{width:176.826667pt;}
.w49{width:197.626667pt;}
.w16{width:233.786667pt;}
.w26{width:248.026667pt;}
.w31{width:264.346667pt;}
.wb{width:282.786667pt;}
.w4b{width:296.826667pt;}
.w4f{width:297.026667pt;}
.w38{width:298.106667pt;}
.w44{width:299.426667pt;}
.w43{width:299.546667pt;}
.w39{width:300.866667pt;}
.w37{width:454.973333pt;}
.wa{width:517.213333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x75{left:4.160000pt;}
.x6b{left:6.880000pt;}
.x78{left:8.320000pt;}
.x17{left:9.760000pt;}
.x36{left:10.880000pt;}
.x13{left:12.000000pt;}
.x28{left:13.600000pt;}
.x16{left:15.840000pt;}
.x3a{left:16.960000pt;}
.x2f{left:18.240000pt;}
.x50{left:19.840000pt;}
.x5a{left:21.152000pt;}
.x18{left:22.080000pt;}
.x3d{left:23.512000pt;}
.x49{left:24.480000pt;}
.x29{left:25.920000pt;}
.x7a{left:27.040000pt;}
.x3f{left:29.280000pt;}
.x31{left:30.880000pt;}
.x76{left:32.320000pt;}
.x1a{left:34.072000pt;}
.x7f{left:41.920000pt;}
.x1b{left:46.232000pt;}
.x86{left:49.440000pt;}
.x21{left:51.040000pt;}
.x81{left:56.160000pt;}
.x90{left:57.280000pt;}
.x1c{left:58.552000pt;}
.x80{left:60.320000pt;}
.x85{left:61.920000pt;}
.x84{left:63.360000pt;}
.x22{left:64.640000pt;}
.x87{left:66.400000pt;}
.x8f{left:67.680000pt;}
.x88{left:68.640000pt;}
.x1d{left:70.872000pt;}
.x83{left:72.160000pt;}
.x82{left:73.600000pt;}
.x23{left:76.960000pt;}
.x1e{left:83.072000pt;}
.x24{left:89.320000pt;}
.x1f{left:95.392000pt;}
.x25{left:101.480000pt;}
.x6c{left:102.554667pt;}
.x6a{left:106.592000pt;}
.x20{left:107.712000pt;}
.x8c{left:110.106667pt;}
.x6d{left:112.026667pt;}
.xa{left:113.472000pt;}
.x6{left:118.112000pt;}
.x26{left:126.120000pt;}
.x14{left:134.746667pt;}
.x2{left:140.026667pt;}
.x89{left:142.266667pt;}
.x15{left:147.386667pt;}
.x5e{left:151.546667pt;}
.x5{left:155.546667pt;}
.x1{left:162.906667pt;}
.x42{left:165.626667pt;}
.x19{left:172.674667pt;}
.x43{left:178.426667pt;}
.x77{left:181.626667pt;}
.x5f{left:182.746667pt;}
.x6e{left:184.346667pt;}
.x8a{left:185.626667pt;}
.x44{left:194.586667pt;}
.x27{left:197.786667pt;}
.xb{left:204.986667pt;}
.x45{left:207.546667pt;}
.x60{left:212.346667pt;}
.x46{left:222.586667pt;}
.x61{left:227.546667pt;}
.x7{left:228.506667pt;}
.x2a{left:231.066667pt;}
.x62{left:243.554667pt;}
.x47{left:247.874667pt;}
.x2b{left:249.474667pt;}
.x79{left:256.706667pt;}
.x63{left:258.946667pt;}
.x48{left:260.866667pt;}
.x2c{left:266.626667pt;}
.x6f{left:273.666667pt;}
.x8{left:278.146667pt;}
.x8b{left:279.906667pt;}
.x64{left:284.066667pt;}
.x2d{left:285.026667pt;}
.x4a{left:291.106667pt;}
.x2e{left:301.986667pt;}
.x7e{left:304.866667pt;}
.x69{left:312.546667pt;}
.x4b{left:317.346667pt;}
.x65{left:320.546667pt;}
.x9{left:322.786667pt;}
.x30{left:332.226667pt;}
.x66{left:334.786667pt;}
.x4c{left:336.386667pt;}
.xc{left:337.506667pt;}
.x70{left:342.786667pt;}
.x3{left:345.506667pt;}
.x4d{left:353.346667pt;}
.x67{left:360.066667pt;}
.x4e{left:370.466667pt;}
.x4f{left:384.706667pt;}
.x32{left:387.586667pt;}
.x68{left:388.706667pt;}
.x4{left:396.866667pt;}
.x10{left:399.746667pt;}
.xf{left:400.866667pt;}
.xe{left:402.626667pt;}
.xd{left:404.546667pt;}
.x33{left:407.421333pt;}
.x51{left:417.981333pt;}
.x34{left:425.853333pt;}
.x52{left:435.133333pt;}
.x8d{left:439.773333pt;}
.x53{left:452.093333pt;}
.x35{left:456.101333pt;}
.x54{left:466.333333pt;}
.x37{left:471.453333pt;}
.x55{left:480.573333pt;}
.x7b{left:481.853333pt;}
.x71{left:483.293333pt;}
.x38{left:488.413333pt;}
.x56{left:496.573333pt;}
.x39{left:502.493333pt;}
.x57{left:509.541333pt;}
.x3b{left:530.333333pt;}
.x58{left:546.493333pt;}
.x7c{left:556.893333pt;}
.x3c{left:558.341333pt;}
.x72{left:572.573333pt;}
.x8e{left:577.373333pt;}
.x59{left:585.221333pt;}
.x3e{left:599.013333pt;}
.x5b{left:621.248000pt;}
.x7d{left:631.813333pt;}
.x73{left:641.733333pt;}
.x5c{left:646.373333pt;}
.x74{left:650.533333pt;}
.x40{left:651.488000pt;}
.x5d{left:659.328000pt;}
.x41{left:671.648000pt;}
.x12{left:729.728000pt;}
.x11{left:743.008000pt;}
}




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