
    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_2a9a72605a5e2989e160a9dd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2a7058558f9fb8aac7239607.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27eeaa458dcaa106463c5169.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_971fb8a96a1b26c7d784cc82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_f8e64586ec9c689de153f069.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b342205512b69a9d434a1377.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_7e52a448bd5c9a9b2c618658.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bf25de1455869ea81d085ccd.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_be83bb5980859f089330d3f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.241699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a9a011597d5a5b9b1c249ef1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7932ca88b8c7f41fadf56c88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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);}
.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);}
.v1{vertical-align:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v6{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.vb{vertical-align:5.040000px;}
.v7{vertical-align:14.400000px;}
.v8{vertical-align:16.560000px;}
.v5{vertical-align:19.440000px;}
.v2{vertical-align:30.240000px;}
.vc{vertical-align:36.000000px;}
.ls7{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.828000px;}
.ls8{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls22{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.126000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls24{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.198000px;}
.lsf{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.630000px;}
.ls1f{letter-spacing:0.792000px;}
.ls23{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.968480px;}
.ls15{letter-spacing:1.998000px;}
.ls13{letter-spacing:2.610000px;}
.ls1c{letter-spacing:2.664480px;}
.ls16{letter-spacing:2.688480px;}
.ls29{letter-spacing:5.220000px;}
.ls20{letter-spacing:11.430000px;}
.ls1b{letter-spacing:12.222000px;}
.ls21{letter-spacing:13.860000px;}
.ls1a{letter-spacing:14.208480px;}
.ls27{letter-spacing:25.308000px;}
.ls26{letter-spacing:52.668000px;}
.ls28{letter-spacing:52.740000px;}
.lsa{letter-spacing:92.988000px;}
.ls25{letter-spacing:93.132000px;}
.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;}
}
.ws12{word-spacing:-40.338000px;}
.ws7{word-spacing:-19.457280px;}
.ws15{word-spacing:-19.440000px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.580000px;}
.wse{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.608000px;}
.ws14{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.248000px;}
.wsa{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.906000px;}
.ws11{word-spacing:-12.672000px;}
.ws3{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._28{margin-left:-2.244000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._e{width:2.086800px;}
._c{width:3.186000px;}
._a{width:5.094000px;}
._6{width:6.102000px;}
._7{width:7.398000px;}
._1b{width:8.616000px;}
._14{width:9.666000px;}
._13{width:10.710000px;}
._17{width:12.006000px;}
._f{width:13.446000px;}
._1c{width:14.904000px;}
._1d{width:15.930000px;}
._1a{width:17.766000px;}
._19{width:18.792000px;}
._18{width:20.196000px;}
._b{width:21.492000px;}
._10{width:22.888080px;}
._20{width:24.864000px;}
._16{width:26.406000px;}
._21{width:27.588000px;}
._22{width:29.430000px;}
._d{width:31.212000px;}
._12{width:32.940000px;}
._11{width:34.074000px;}
._15{width:35.496000px;}
._1e{width:37.476000px;}
._1f{width:38.502000px;}
._25{width:40.122000px;}
._2b{width:41.448000px;}
._8{width:43.632000px;}
._9{width:44.682000px;}
._26{width:47.520000px;}
._29{width:50.436000px;}
._23{width:52.110000px;}
._24{width:53.700000px;}
._2a{width:54.702000px;}
._2e{width:57.042000px;}
._2d{width:58.284000px;}
._3{width:78.192000px;}
._2c{width:82.998000px;}
._27{width:98.010000px;}
._4{width:157.860000px;}
._2f{width:962.928000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc7{color:rgb(74,134,232);}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y117{bottom:7.365000px;}
.y11f{bottom:7.380000px;}
.y112{bottom:7.545000px;}
.y10a{bottom:7.725000px;}
.y10f{bottom:8.085000px;}
.y14f{bottom:8.820000px;}
.yd3{bottom:8.985000px;}
.yd7{bottom:9.000000px;}
.y13b{bottom:9.045000px;}
.ycd{bottom:9.165000px;}
.ydc{bottom:9.180000px;}
.y14b{bottom:9.210000px;}
.ycc{bottom:9.345000px;}
.y12b{bottom:9.360000px;}
.yd4{bottom:9.525000px;}
.ye7{bottom:9.540000px;}
.y13c{bottom:9.585000px;}
.ydd{bottom:9.720000px;}
.y14c{bottom:9.750000px;}
.y4{bottom:15.660000px;}
.y110{bottom:18.525000px;}
.y11d{bottom:18.570000px;}
.y2{bottom:18.900000px;}
.y14d{bottom:22.860000px;}
.ydf{bottom:23.040000px;}
.yd5{bottom:23.070000px;}
.y109{bottom:27.750000px;}
.y149{bottom:28.980000px;}
.yf7{bottom:29.160000px;}
.ye3{bottom:30.600000px;}
.yce{bottom:30.765000px;}
.ye2{bottom:30.780000px;}
.y12c{bottom:30.810000px;}
.ycb{bottom:30.945000px;}
.y12a{bottom:30.990000px;}
.y12e{bottom:34.920000px;}
.y153{bottom:35.100000px;}
.y10d{bottom:38.505000px;}
.y11c{bottom:38.550000px;}
.y5{bottom:39.780000px;}
.y11a{bottom:43.050000px;}
.y130{bottom:44.460000px;}
.yd1{bottom:44.490000px;}
.y139{bottom:44.505000px;}
.yde{bottom:44.640000px;}
.yda{bottom:50.580000px;}
.y137{bottom:50.625000px;}
.y114{bottom:58.485000px;}
.y10c{bottom:58.665000px;}
.y119{bottom:58.710000px;}
.y1{bottom:60.660000px;}
.ye5{bottom:66.060000px;}
.yd0{bottom:66.090000px;}
.y136{bottom:66.105000px;}
.yd9{bottom:66.240000px;}
.y35{bottom:68.790000px;}
.y34{bottom:88.770000px;}
.yd8{bottom:105.480000px;}
.y20c{bottom:106.740000px;}
.y25a{bottom:107.460000px;}
.y2b{bottom:107.640000px;}
.y72{bottom:108.000000px;}
.y33{bottom:108.570000px;}
.y162{bottom:109.800000px;}
.y127{bottom:114.480000px;}
.y123{bottom:114.840000px;}
.y1ea{bottom:115.380000px;}
.y194{bottom:122.220000px;}
.y20b{bottom:124.560000px;}
.y259{bottom:125.280000px;}
.y2a{bottom:125.640000px;}
.y71{bottom:126.000000px;}
.ya0{bottom:127.800000px;}
.y22c{bottom:127.980000px;}
.y32{bottom:128.370000px;}
.y126{bottom:132.480000px;}
.y122{bottom:132.840000px;}
.y1e9{bottom:133.200000px;}
.y1c3{bottom:133.380000px;}
.ye0{bottom:133.740000px;}
.y161{bottom:138.060000px;}
.y193{bottom:140.040000px;}
.y20a{bottom:142.380000px;}
.y258{bottom:143.100000px;}
.y29{bottom:143.460000px;}
.y70{bottom:143.820000px;}
.y9f{bottom:145.620000px;}
.y22b{bottom:145.800000px;}
.y31{bottom:148.170000px;}
.y121{bottom:150.660000px;}
.y1c2{bottom:151.200000px;}
.y192{bottom:157.860000px;}
.y125{bottom:159.660000px;}
.y1e8{bottom:160.200000px;}
.y257{bottom:161.100000px;}
.y28{bottom:161.280000px;}
.ydb{bottom:162.360000px;}
.y9e{bottom:163.440000px;}
.y22a{bottom:163.620000px;}
.y160{bottom:166.500000px;}
.y30{bottom:167.970000px;}
.y120{bottom:168.480000px;}
.y1c1{bottom:169.200000px;}
.y6f{bottom:170.640000px;}
.y124{bottom:177.480000px;}
.y209{bottom:178.200000px;}
.y256{bottom:178.920000px;}
.y27{bottom:179.100000px;}
.y9d{bottom:181.260000px;}
.y229{bottom:181.440000px;}
.y191{bottom:184.680000px;}
.y1c0{bottom:187.020000px;}
.y2f{bottom:187.995000px;}
.y6e{bottom:188.460000px;}
.y118{bottom:190.440000px;}
.ycf{bottom:190.980000px;}
.y15f{bottom:194.760000px;}
.y208{bottom:196.020000px;}
.y255{bottom:196.740000px;}
.y26{bottom:196.920000px;}
.y9c{bottom:199.260000px;}
.y190{bottom:202.680000px;}
.y1bf{bottom:204.840000px;}
.y6d{bottom:206.310000px;}
.y2e{bottom:207.795000px;}
.y254{bottom:214.590000px;}
.y11e{bottom:215.685000px;}
.y25{bottom:216.930000px;}
.y9b{bottom:217.110000px;}
.y228{bottom:217.290000px;}
.yd6{bottom:219.285000px;}
.y18f{bottom:220.530000px;}
.y1be{bottom:222.690000px;}
.y207{bottom:222.870000px;}
.y15e{bottom:223.065000px;}
.y6c{bottom:224.310000px;}
.y1e7{bottom:231.690000px;}
.y253{bottom:232.410000px;}
.y9a{bottom:234.930000px;}
.y227{bottom:235.110000px;}
.y2d{bottom:238.035000px;}
.y18e{bottom:238.350000px;}
.y1bd{bottom:240.510000px;}
.y206{bottom:240.690000px;}
.y11b{bottom:241.425000px;}
.y6b{bottom:242.130000px;}
.yd2{bottom:247.905000px;}
.y1e6{bottom:249.510000px;}
.y252{bottom:250.230000px;}
.y15d{bottom:251.325000px;}
.y99{bottom:252.750000px;}
.y226{bottom:252.930000px;}
.y18d{bottom:256.170000px;}
.y1bc{bottom:258.510000px;}
.y6a{bottom:259.950000px;}
.y113{bottom:266.985000px;}
.y205{bottom:267.510000px;}
.y251{bottom:268.230000px;}
.y98{bottom:270.570000px;}
.y225{bottom:270.750000px;}
.y2c{bottom:271.620000px;}
.y18c{bottom:273.990000px;}
.y1bb{bottom:276.330000px;}
.yca{bottom:276.345000px;}
.y1e5{bottom:276.510000px;}
.y69{bottom:277.770000px;}
.y15c{bottom:279.585000px;}
.y204{bottom:285.510000px;}
.y250{bottom:286.050000px;}
.y97{bottom:288.030000px;}
.y224{bottom:288.570000px;}
.y37{bottom:291.450000px;}
.y18b{bottom:291.810000px;}
.y116{bottom:292.185000px;}
.y1ba{bottom:294.150000px;}
.y1e4{bottom:294.330000px;}
.y68{bottom:295.590000px;}
.y24{bottom:296.670000px;}
.y24f{bottom:303.870000px;}
.y223{bottom:306.390000px;}
.y18a{bottom:309.810000px;}
.y1e3{bottom:312.150000px;}
.y203{bottom:312.330000px;}
.y67{bottom:313.410000px;}
.y15b{bottom:313.590000px;}
.y96{bottom:315.390000px;}
.y115{bottom:317.745000px;}
.y36{bottom:320.610000px;}
.y24e{bottom:321.690000px;}
.y23{bottom:322.410000px;}
.y222{bottom:324.390000px;}
.y189{bottom:327.630000px;}
.y1e2{bottom:329.970000px;}
.y66{bottom:331.410000px;}
.yc9{bottom:331.770000px;}
.y95{bottom:333.210000px;}
.y1b9{bottom:338.430000px;}
.y202{bottom:339.150000px;}
.y24d{bottom:339.510000px;}
.y15a{bottom:340.410000px;}
.y221{bottom:342.210000px;}
.y10b{bottom:343.305000px;}
.y188{bottom:345.450000px;}
.y22{bottom:348.150000px;}
.y65{bottom:349.230000px;}
.y94{bottom:351.030000px;}
.y1e1{bottom:356.790000px;}
.y201{bottom:356.970000px;}
.y24c{bottom:357.510000px;}
.yb8{bottom:358.950000px;}
.y220{bottom:360.030000px;}
.y187{bottom:363.270000px;}
.y1b8{bottom:365.610000px;}
.y64{bottom:367.050000px;}
.y159{bottom:367.770000px;}
.y111{bottom:368.685000px;}
.y93{bottom:368.850000px;}
.y21{bottom:374.070000px;}
.y1e0{bottom:374.610000px;}
.y200{bottom:374.790000px;}
.y24b{bottom:375.330000px;}
.yb7{bottom:376.770000px;}
.y21f{bottom:377.850000px;}
.y186{bottom:381.090000px;}
.y1b7{bottom:383.610000px;}
.y63{bottom:384.870000px;}
.y158{bottom:385.590000px;}
.y92{bottom:386.670000px;}
.y1df{bottom:392.610000px;}
.y24a{bottom:393.150000px;}
.yc8{bottom:394.230000px;}
.y10e{bottom:394.245000px;}
.y21e{bottom:395.670000px;}
.y1b6{bottom:401.430000px;}
.y157{bottom:403.410000px;}
.yb6{bottom:403.590000px;}
.y62{bottom:404.670000px;}
.y1f{bottom:406.830000px;}
.y185{bottom:408.090000px;}
.y1de{bottom:410.430000px;}
.y249{bottom:410.970000px;}
.yc7{bottom:412.230000px;}
.y21d{bottom:413.670000px;}
.y1b5{bottom:419.250000px;}
.y1ff{bottom:419.610000px;}
.y108{bottom:419.805000px;}
.y156{bottom:421.230000px;}
.yb5{bottom:421.590000px;}
.y91{bottom:422.490000px;}
.y184{bottom:425.910000px;}
.y1dd{bottom:428.250000px;}
.y248{bottom:428.790000px;}
.y21c{bottom:431.490000px;}
.y1e{bottom:433.650000px;}
.y1b4{bottom:437.070000px;}
.y1fe{bottom:437.430000px;}
.y61{bottom:437.610000px;}
.yb4{bottom:439.410000px;}
.y90{bottom:440.355000px;}
.y152{bottom:443.235000px;}
.y183{bottom:443.775000px;}
.y1dc{bottom:446.115000px;}
.y247{bottom:446.655000px;}
.y21b{bottom:451.335000px;}
.y1b3{bottom:454.935000px;}
.y1fd{bottom:455.295000px;}
.y60{bottom:455.475000px;}
.yb3{bottom:457.275000px;}
.y8f{bottom:458.175000px;}
.y1d{bottom:460.515000px;}
.y182{bottom:461.595000px;}
.y1db{bottom:463.935000px;}
.y246{bottom:464.655000px;}
.y107{bottom:470.595000px;}
.y155{bottom:471.495000px;}
.y1b2{bottom:472.935000px;}
.y1fc{bottom:473.115000px;}
.y5f{bottom:473.295000px;}
.yb2{bottom:475.095000px;}
.y8e{bottom:475.995000px;}
.y1da{bottom:481.935000px;}
.y245{bottom:482.475000px;}
.y21a{bottom:484.095000px;}
.y1c{bottom:487.335000px;}
.y181{bottom:488.415000px;}
.y1fb{bottom:490.935000px;}
.y5e{bottom:491.115000px;}
.yb1{bottom:492.915000px;}
.y8d{bottom:495.975000px;}
.y106{bottom:497.595000px;}
.y1b1{bottom:499.755000px;}
.y154{bottom:500.115000px;}
.y244{bottom:500.295000px;}
.y219{bottom:501.915000px;}
.y180{bottom:506.235000px;}
.y5d{bottom:508.935000px;}
.yb0{bottom:512.895000px;}
.y1b{bottom:514.335000px;}
.y105{bottom:515.415000px;}
.y102{bottom:515.775000px;}
.y1b0{bottom:517.575000px;}
.y243{bottom:518.115000px;}
.y218{bottom:519.915000px;}
.y17f{bottom:524.235000px;}
.y1fa{bottom:526.755000px;}
.y5c{bottom:526.935000px;}
.y8c{bottom:528.735000px;}
.y101{bottom:533.595000px;}
.y1af{bottom:535.395000px;}
.y242{bottom:535.935000px;}
.y217{bottom:537.735000px;}
.y1a{bottom:540.795000px;}
.y20{bottom:541.155000px;}
.y17e{bottom:542.055000px;}
.y104{bottom:542.595000px;}
.y1f9{bottom:544.575000px;}
.y5b{bottom:544.755000px;}
.yaf{bottom:545.655000px;}
.y8b{bottom:546.555000px;}
.y100{bottom:551.415000px;}
.y1ae{bottom:553.215000px;}
.y241{bottom:553.935000px;}
.y216{bottom:555.555000px;}
.y151{bottom:556.995000px;}
.y17d{bottom:559.875000px;}
.y103{bottom:560.415000px;}
.y1f8{bottom:562.395000px;}
.y5a{bottom:562.575000px;}
.yae{bottom:563.475000px;}
.y8a{bottom:564.375000px;}
.y19{bottom:569.235000px;}
.y1ad{bottom:571.035000px;}
.y240{bottom:571.755000px;}
.yfd{bottom:573.375000px;}
.y17c{bottom:577.695000px;}
.y1f7{bottom:580.215000px;}
.y59{bottom:580.395000px;}
.yad{bottom:581.295000px;}
.y150{bottom:585.615000px;}
.y1ac{bottom:589.035000px;}
.y23f{bottom:589.575000px;}
.y89{bottom:591.195000px;}
.y18{bottom:595.515000px;}
.y1d9{bottom:597.675000px;}
.y1f6{bottom:598.035000px;}
.yac{bottom:599.115000px;}
.yff{bottom:601.635000px;}
.y1ab{bottom:606.855000px;}
.y58{bottom:607.215000px;}
.y23e{bottom:607.395000px;}
.y88{bottom:609.015000px;}
.y17b{bottom:613.335000px;}
.y148{bottom:614.235000px;}
.y1d8{bottom:615.495000px;}
.yab{bottom:617.115000px;}
.y57{bottom:625.035000px;}
.y23d{bottom:625.215000px;}
.y17{bottom:626.295000px;}
.y215{bottom:627.015000px;}
.y87{bottom:628.995000px;}
.yfe{bottom:630.255000px;}
.y17a{bottom:631.335000px;}
.y1aa{bottom:633.675000px;}
.yc6{bottom:634.935000px;}
.y14e{bottom:642.495000px;}
.y1d7{bottom:642.675000px;}
.y1f5{bottom:642.855000px;}
.y56{bottom:643.035000px;}
.yaa{bottom:643.935000px;}
.y214{bottom:644.835000px;}
.y1a9{bottom:651.495000px;}
.yc5{bottom:652.755000px;}
.y179{bottom:658.155000px;}
.yfa{bottom:658.875000px;}
.y1d6{bottom:660.495000px;}
.y1f4{bottom:660.675000px;}
.y55{bottom:660.855000px;}
.y23c{bottom:661.035000px;}
.y86{bottom:661.755000px;}
.y213{bottom:662.655000px;}
.y1a8{bottom:669.315000px;}
.yc4{bottom:670.575000px;}
.y14a{bottom:670.935000px;}
.y178{bottom:675.645000px;}
.y1d5{bottom:678.345000px;}
.y1f3{bottom:678.525000px;}
.y54{bottom:678.705000px;}
.y23b{bottom:678.885000px;}
.y85{bottom:679.605000px;}
.y212{bottom:680.505000px;}
.y16{bottom:682.845000px;}
.yfc{bottom:687.165000px;}
.y1d4{bottom:696.165000px;}
.y1f2{bottom:696.345000px;}
.y53{bottom:696.525000px;}
.y23a{bottom:696.705000px;}
.y84{bottom:697.425000px;}
.y147{bottom:699.585000px;}
.y177{bottom:702.825000px;}
.y1a7{bottom:705.165000px;}
.y211{bottom:709.305000px;}
.y15{bottom:713.625000px;}
.y1d3{bottom:714.165000px;}
.y52{bottom:714.345000px;}
.y239{bottom:714.525000px;}
.y83{bottom:715.245000px;}
.yfb{bottom:715.785000px;}
.y176{bottom:720.645000px;}
.y1f1{bottom:722.805000px;}
.y1a6{bottom:722.985000px;}
.y1d2{bottom:731.985000px;}
.y51{bottom:732.165000px;}
.y238{bottom:732.345000px;}
.y82{bottom:733.245000px;}
.y175{bottom:738.645000px;}
.y1f0{bottom:740.805000px;}
.y210{bottom:742.245000px;}
.yf6{bottom:744.225000px;}
.y1a5{bottom:749.805000px;}
.y14{bottom:749.985000px;}
.y50{bottom:750.165000px;}
.y81{bottom:751.065000px;}
.y146{bottom:755.025000px;}
.y174{bottom:756.465000px;}
.y20f{bottom:760.065000px;}
.y1d1{bottom:767.625000px;}
.y4f{bottom:767.985000px;}
.y237{bottom:768.165000px;}
.y80{bottom:768.885000px;}
.yf9{bottom:772.665000px;}
.y173{bottom:776.265000px;}
.y1a4{bottom:776.625000px;}
.y20e{bottom:777.885000px;}
.y145{bottom:781.845000px;}
.y4e{bottom:785.805000px;}
.y236{bottom:785.985000px;}
.y7f{bottom:786.705000px;}
.y1d0{bottom:794.445000px;}
.ya9{bottom:795.705000px;}
.y144{bottom:799.665000px;}
.y140{bottom:800.025000px;}
.y13{bottom:800.565000px;}
.yf8{bottom:801.105000px;}
.y1a3{bottom:803.445000px;}
.y1ef{bottom:803.625000px;}
.y235{bottom:803.805000px;}
.y7e{bottom:804.525000px;}
.y172{bottom:809.025000px;}
.y1cf{bottom:812.445000px;}
.y4d{bottom:812.625000px;}
.ya8{bottom:813.525000px;}
.y143{bottom:817.485000px;}
.y13f{bottom:817.845000px;}
.y1ee{bottom:821.445000px;}
.y234{bottom:821.625000px;}
.y7d{bottom:822.345000px;}
.y171{bottom:826.845000px;}
.y12{bottom:828.465000px;}
.yf5{bottom:829.725000px;}
.y1ce{bottom:830.265000px;}
.y4c{bottom:830.445000px;}
.ya7{bottom:831.345000px;}
.y13e{bottom:835.665000px;}
.y1ed{bottom:839.445000px;}
.y7c{bottom:840.345000px;}
.y142{bottom:844.665000px;}
.y1cd{bottom:848.085000px;}
.y1a2{bottom:848.265000px;}
.y4b{bottom:848.445000px;}
.ya6{bottom:849.345000px;}
.y13d{bottom:853.665000px;}
.y170{bottom:853.845000px;}
.y1ec{bottom:857.265000px;}
.y233{bottom:857.445000px;}
.y141{bottom:862.665000px;}
.y1cc{bottom:865.905000px;}
.y1a1{bottom:866.085000px;}
.y4a{bottom:866.265000px;}
.y7b{bottom:867.165000px;}
.y16f{bottom:871.665000px;}
.y11{bottom:874.545000px;}
.y1eb{bottom:875.085000px;}
.y232{bottom:875.265000px;}
.y135{bottom:875.625000px;}
.y1cb{bottom:883.725000px;}
.y49{bottom:884.085000px;}
.y7a{bottom:884.985000px;}
.yf4{bottom:885.165000px;}
.y20d{bottom:886.965000px;}
.y16e{bottom:889.485000px;}
.y1a0{bottom:892.905000px;}
.y231{bottom:893.085000px;}
.y10{bottom:899.745000px;}
.y1ca{bottom:901.545000px;}
.y48{bottom:901.905000px;}
.y79{bottom:902.805000px;}
.y13a{bottom:903.885000px;}
.y19f{bottom:910.770000px;}
.y230{bottom:910.950000px;}
.yf3{bottom:912.030000px;}
.yef{bottom:912.390000px;}
.y16d{bottom:915.990000px;}
.yf{bottom:919.590000px;}
.y47{bottom:919.770000px;}
.yc3{bottom:920.670000px;}
.y78{bottom:922.650000px;}
.y19e{bottom:928.590000px;}
.y22f{bottom:928.770000px;}
.yf2{bottom:929.850000px;}
.yee{bottom:930.210000px;}
.y138{bottom:932.550000px;}
.y1c9{bottom:937.410000px;}
.y46{bottom:937.590000px;}
.yc2{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y16c{bottom:942.090000px;}
.y19d{bottom:946.590000px;}
.yed{bottom:948.030000px;}
.y1c8{bottom:955.230000px;}
.y45{bottom:955.590000px;}
.yc1{bottom:956.490000px;}
.yf1{bottom:957.030000px;}
.yd{bottom:959.010000px;}
.y132{bottom:960.990000px;}
.y16b{bottom:961.350000px;}
.y19c{bottom:964.410000px;}
.y22e{bottom:964.590000px;}
.yec{bottom:965.850000px;}
.y1c7{bottom:973.050000px;}
.y44{bottom:973.410000px;}
.yc0{bottom:974.310000px;}
.yf0{bottom:974.850000px;}
.yc{bottom:979.170000px;}
.y19b{bottom:982.230000px;}
.y22d{bottom:982.410000px;}
.y16a{bottom:985.650000px;}
.ye9{bottom:987.810000px;}
.y134{bottom:989.250000px;}
.y77{bottom:991.230000px;}
.y1c6{bottom:999.870000px;}
.y19a{bottom:1000.050000px;}
.y43{bottom:1000.230000px;}
.ybf{bottom:1001.130000px;}
.y76{bottom:1009.050000px;}
.y169{bottom:1015.170000px;}
.yeb{bottom:1016.250000px;}
.y133{bottom:1017.870000px;}
.y42{bottom:1018.050000px;}
.ybe{bottom:1018.950000px;}
.yb{bottom:1019.130000px;}
.y75{bottom:1026.870000px;}
.ya{bottom:1031.190000px;}
.y41{bottom:1035.870000px;}
.ybd{bottom:1036.770000px;}
.y168{bottom:1041.090000px;}
.y9{bottom:1043.250000px;}
.yea{bottom:1044.690000px;}
.y74{bottom:1044.870000px;}
.y12d{bottom:1046.490000px;}
.y199{bottom:1053.690000px;}
.y40{bottom:1053.870000px;}
.ybc{bottom:1054.770000px;}
.y8{bottom:1055.310000px;}
.y1c5{bottom:1062.510000px;}
.y73{bottom:1062.690000px;}
.y7{bottom:1069.890000px;}
.y167{bottom:1070.610000px;}
.y198{bottom:1071.510000px;}
.y3f{bottom:1071.690000px;}
.ybb{bottom:1072.590000px;}
.ye4{bottom:1073.310000px;}
.y131{bottom:1074.750000px;}
.ya5{bottom:1080.510000px;}
.y197{bottom:1089.330000px;}
.y3e{bottom:1089.510000px;}
.yba{bottom:1090.410000px;}
.y6{bottom:1095.450000px;}
.ya4{bottom:1098.330000px;}
.y166{bottom:1098.870000px;}
.ye8{bottom:1101.570000px;}
.y12f{bottom:1103.370000px;}
.y196{bottom:1107.150000px;}
.y3d{bottom:1107.330000px;}
.yb9{bottom:1110.210000px;}
.ya3{bottom:1116.150000px;}
.y3c{bottom:1125.150000px;}
.y165{bottom:1128.930000px;}
.ye6{bottom:1130.190000px;}
.y129{bottom:1131.810000px;}
.y195{bottom:1133.610000px;}
.ya2{bottom:1133.970000px;}
.y3b{bottom:1142.970000px;}
.ya1{bottom:1151.640000px;}
.y1c4{bottom:1152.000000px;}
.y164{bottom:1157.040000px;}
.ye1{bottom:1158.840000px;}
.y3a{bottom:1161.000000px;}
.y39{bottom:1178.820000px;}
.y163{bottom:1187.100000px;}
.y128{bottom:1187.280000px;}
.y38{bottom:1196.640000px;}
.h2e{height:24.465000px;}
.h30{height:24.516000px;}
.h2c{height:24.645000px;}
.h2b{height:24.825000px;}
.h35{height:27.345000px;}
.h3a{height:27.360000px;}
.h28{height:27.525000px;}
.h1d{height:27.535500px;}
.h21{height:27.540000px;}
.h25{height:27.570000px;}
.h19{height:27.576000px;}
.h18{height:27.705000px;}
.h23{height:27.720000px;}
.h20{height:27.742500px;}
.h33{height:27.756000px;}
.h27{height:27.885000px;}
.h1c{height:27.895500px;}
.h1b{height:27.900000px;}
.h34{height:27.930000px;}
.h37{height:28.065000px;}
.h2{height:31.135500px;}
.h14{height:37.705078px;}
.h7{height:40.985156px;}
.h13{height:43.681992px;}
.h29{height:44.841000px;}
.h1e{height:49.320000px;}
.h16{height:49.485000px;}
.h31{height:49.522500px;}
.h3e{height:52.022461px;}
.h3b{height:52.742461px;}
.h38{height:52.971680px;}
.h3{height:52.998047px;}
.h3c{height:53.462461px;}
.h40{height:53.868164px;}
.he{height:54.421875px;}
.h15{height:55.503491px;}
.h39{height:56.896172px;}
.h3d{height:58.038047px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h9{height:60.226875px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.hb{height:72.326250px;}
.h2d{height:75.585000px;}
.h2a{height:75.765000px;}
.h2f{height:75.816000px;}
.hf{height:78.367500px;}
.ha{height:82.676953px;}
.h36{height:84.585000px;}
.h32{height:84.600000px;}
.h1f{height:84.622500px;}
.h24{height:84.630000px;}
.h17{height:84.636000px;}
.h26{height:84.765000px;}
.h1a{height:84.775500px;}
.h22{height:84.780000px;}
.h5{height:84.898125px;}
.h3f{height:88.998047px;}
.h6{height:90.703125px;}
.h10{height:265.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:43.545000px;}
.w12{width:43.581000px;}
.w1c{width:44.085000px;}
.wa{width:44.445000px;}
.w9{width:44.481000px;}
.w27{width:51.501000px;}
.w1a{width:51.645000px;}
.w1b{width:51.681000px;}
.w22{width:51.861000px;}
.w21{width:52.005000px;}
.w18{width:57.276000px;}
.w11{width:58.125000px;}
.w10{width:58.305000px;}
.w19{width:59.025000px;}
.w8{width:59.385000px;}
.w14{width:65.685000px;}
.w28{width:66.585000px;}
.w26{width:66.636000px;}
.w1d{width:66.765000px;}
.wb{width:66.945000px;}
.w20{width:66.996000px;}
.wf{width:73.296000px;}
.w7{width:74.556000px;}
.w3{width:80.310000px;}
.we{width:80.460000px;}
.w17{width:81.900000px;}
.w6{width:82.080000px;}
.w25{width:89.100000px;}
.w1f{width:89.640000px;}
.w29{width:96.510000px;}
.w1e{width:96.690000px;}
.wc{width:97.050000px;}
.w23{width:97.230000px;}
.w15{width:104.610000px;}
.w2d{width:109.296000px;}
.w2c{width:109.440000px;}
.w2e{width:110.505000px;}
.w2f{width:111.450000px;}
.w2b{width:112.356000px;}
.w2a{width:116.662500px;}
.wd{width:249.910500px;}
.w24{width:253.150500px;}
.w5{width:254.590500px;}
.w16{width:270.250500px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.555500px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x27{left:33.480000px;}
.x44{left:35.131500px;}
.x3c{left:36.211500px;}
.x1e{left:37.260000px;}
.x12{left:39.240000px;}
.x37{left:41.040000px;}
.x26{left:42.660000px;}
.x45{left:44.100000px;}
.x1{left:45.364500px;}
.x41{left:47.325000px;}
.x14{left:50.040000px;}
.x1b{left:52.204500px;}
.x5{left:54.000000px;}
.x49{left:66.420000px;}
.x47{left:70.200000px;}
.x46{left:73.800000px;}
.xb{left:80.100000px;}
.x48{left:108.036000px;}
.xe{left:145.116000px;}
.xf{left:149.436000px;}
.x3d{left:171.570000px;}
.x2{left:222.370500px;}
.xd{left:228.450000px;}
.x3b{left:237.450000px;}
.x39{left:255.270000px;}
.xc{left:259.410000px;}
.x36{left:279.435000px;}
.x8{left:281.775000px;}
.x3e{left:284.655000px;}
.x6{left:285.735000px;}
.x9{left:288.975000px;}
.x29{left:305.535000px;}
.x1d{left:307.515000px;}
.x10{left:314.355000px;}
.x28{left:316.515000px;}
.x32{left:324.975000px;}
.x31{left:327.315000px;}
.x1a{left:362.235000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x2a{left:386.715000px;}
.x1f{left:390.315000px;}
.x3f{left:394.815000px;}
.x38{left:397.875000px;}
.x33{left:407.595000px;}
.x2b{left:460.740000px;}
.x20{left:465.600000px;}
.x11{left:473.505000px;}
.x18{left:485.925000px;}
.x17{left:489.705000px;}
.x15{left:493.305000px;}
.x4a{left:500.505000px;}
.x40{left:505.020000px;}
.x19{left:514.545000px;}
.x2c{left:519.780000px;}
.x21{left:525.720000px;}
.x16{left:527.505000px;}
.x3a{left:577.740000px;}
.x2d{left:578.820000px;}
.x22{left:585.840000px;}
.x42{left:616.290000px;}
.x2e{left:623.130000px;}
.x23{left:631.050000px;}
.x2f{left:667.410000px;}
.x34{left:675.150000px;}
.x24{left:676.230000px;}
.x43{left:727.530000px;}
.x30{left:733.830000px;}
.x35{left:742.650000px;}
.x25{left:743.910000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v6{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.vb{vertical-align:4.480000pt;}
.v7{vertical-align:12.800000pt;}
.v8{vertical-align:14.720000pt;}
.v5{vertical-align:17.280000pt;}
.v2{vertical-align:26.880000pt;}
.vc{vertical-align:32.000000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls24{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.176000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.560000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.749760pt;}
.ls15{letter-spacing:1.776000pt;}
.ls13{letter-spacing:2.320000pt;}
.ls1c{letter-spacing:2.368427pt;}
.ls16{letter-spacing:2.389760pt;}
.ls29{letter-spacing:4.640000pt;}
.ls20{letter-spacing:10.160000pt;}
.ls1b{letter-spacing:10.864000pt;}
.ls21{letter-spacing:12.320000pt;}
.ls1a{letter-spacing:12.629760pt;}
.ls27{letter-spacing:22.496000pt;}
.ls26{letter-spacing:46.816000pt;}
.ls28{letter-spacing:46.880000pt;}
.lsa{letter-spacing:82.656000pt;}
.ls25{letter-spacing:82.784000pt;}
.ws12{word-spacing:-35.856000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws15{word-spacing:-17.280000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws13{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws14{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.776000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.472000pt;}
.ws11{word-spacing:-11.264000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._28{margin-left:-1.994667pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._e{width:1.854933pt;}
._c{width:2.832000pt;}
._a{width:4.528000pt;}
._6{width:5.424000pt;}
._7{width:6.576000pt;}
._1b{width:7.658667pt;}
._14{width:8.592000pt;}
._13{width:9.520000pt;}
._17{width:10.672000pt;}
._f{width:11.952000pt;}
._1c{width:13.248000pt;}
._1d{width:14.160000pt;}
._1a{width:15.792000pt;}
._19{width:16.704000pt;}
._18{width:17.952000pt;}
._b{width:19.104000pt;}
._10{width:20.344960pt;}
._20{width:22.101333pt;}
._16{width:23.472000pt;}
._21{width:24.522667pt;}
._22{width:26.160000pt;}
._d{width:27.744000pt;}
._12{width:29.280000pt;}
._11{width:30.288000pt;}
._15{width:31.552000pt;}
._1e{width:33.312000pt;}
._1f{width:34.224000pt;}
._25{width:35.664000pt;}
._2b{width:36.842667pt;}
._8{width:38.784000pt;}
._9{width:39.717333pt;}
._26{width:42.240000pt;}
._29{width:44.832000pt;}
._23{width:46.320000pt;}
._24{width:47.733333pt;}
._2a{width:48.624000pt;}
._2e{width:50.704000pt;}
._2d{width:51.808000pt;}
._3{width:69.504000pt;}
._2c{width:73.776000pt;}
._27{width:87.120000pt;}
._4{width:140.320000pt;}
._2f{width:855.936000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y117{bottom:6.546667pt;}
.y11f{bottom:6.560000pt;}
.y112{bottom:6.706667pt;}
.y10a{bottom:6.866667pt;}
.y10f{bottom:7.186667pt;}
.y14f{bottom:7.840000pt;}
.yd3{bottom:7.986667pt;}
.yd7{bottom:8.000000pt;}
.y13b{bottom:8.040000pt;}
.ycd{bottom:8.146667pt;}
.ydc{bottom:8.160000pt;}
.y14b{bottom:8.186667pt;}
.ycc{bottom:8.306667pt;}
.y12b{bottom:8.320000pt;}
.yd4{bottom:8.466667pt;}
.ye7{bottom:8.480000pt;}
.y13c{bottom:8.520000pt;}
.ydd{bottom:8.640000pt;}
.y14c{bottom:8.666667pt;}
.y4{bottom:13.920000pt;}
.y110{bottom:16.466667pt;}
.y11d{bottom:16.506667pt;}
.y2{bottom:16.800000pt;}
.y14d{bottom:20.320000pt;}
.ydf{bottom:20.480000pt;}
.yd5{bottom:20.506667pt;}
.y109{bottom:24.666667pt;}
.y149{bottom:25.760000pt;}
.yf7{bottom:25.920000pt;}
.ye3{bottom:27.200000pt;}
.yce{bottom:27.346667pt;}
.ye2{bottom:27.360000pt;}
.y12c{bottom:27.386667pt;}
.ycb{bottom:27.506667pt;}
.y12a{bottom:27.546667pt;}
.y12e{bottom:31.040000pt;}
.y153{bottom:31.200000pt;}
.y10d{bottom:34.226667pt;}
.y11c{bottom:34.266667pt;}
.y5{bottom:35.360000pt;}
.y11a{bottom:38.266667pt;}
.y130{bottom:39.520000pt;}
.yd1{bottom:39.546667pt;}
.y139{bottom:39.560000pt;}
.yde{bottom:39.680000pt;}
.yda{bottom:44.960000pt;}
.y137{bottom:45.000000pt;}
.y114{bottom:51.986667pt;}
.y10c{bottom:52.146667pt;}
.y119{bottom:52.186667pt;}
.y1{bottom:53.920000pt;}
.ye5{bottom:58.720000pt;}
.yd0{bottom:58.746667pt;}
.y136{bottom:58.760000pt;}
.yd9{bottom:58.880000pt;}
.y35{bottom:61.146667pt;}
.y34{bottom:78.906667pt;}
.yd8{bottom:93.760000pt;}
.y20c{bottom:94.880000pt;}
.y25a{bottom:95.520000pt;}
.y2b{bottom:95.680000pt;}
.y72{bottom:96.000000pt;}
.y33{bottom:96.506667pt;}
.y162{bottom:97.600000pt;}
.y127{bottom:101.760000pt;}
.y123{bottom:102.080000pt;}
.y1ea{bottom:102.560000pt;}
.y194{bottom:108.640000pt;}
.y20b{bottom:110.720000pt;}
.y259{bottom:111.360000pt;}
.y2a{bottom:111.680000pt;}
.y71{bottom:112.000000pt;}
.ya0{bottom:113.600000pt;}
.y22c{bottom:113.760000pt;}
.y32{bottom:114.106667pt;}
.y126{bottom:117.760000pt;}
.y122{bottom:118.080000pt;}
.y1e9{bottom:118.400000pt;}
.y1c3{bottom:118.560000pt;}
.ye0{bottom:118.880000pt;}
.y161{bottom:122.720000pt;}
.y193{bottom:124.480000pt;}
.y20a{bottom:126.560000pt;}
.y258{bottom:127.200000pt;}
.y29{bottom:127.520000pt;}
.y70{bottom:127.840000pt;}
.y9f{bottom:129.440000pt;}
.y22b{bottom:129.600000pt;}
.y31{bottom:131.706667pt;}
.y121{bottom:133.920000pt;}
.y1c2{bottom:134.400000pt;}
.y192{bottom:140.320000pt;}
.y125{bottom:141.920000pt;}
.y1e8{bottom:142.400000pt;}
.y257{bottom:143.200000pt;}
.y28{bottom:143.360000pt;}
.ydb{bottom:144.320000pt;}
.y9e{bottom:145.280000pt;}
.y22a{bottom:145.440000pt;}
.y160{bottom:148.000000pt;}
.y30{bottom:149.306667pt;}
.y120{bottom:149.760000pt;}
.y1c1{bottom:150.400000pt;}
.y6f{bottom:151.680000pt;}
.y124{bottom:157.760000pt;}
.y209{bottom:158.400000pt;}
.y256{bottom:159.040000pt;}
.y27{bottom:159.200000pt;}
.y9d{bottom:161.120000pt;}
.y229{bottom:161.280000pt;}
.y191{bottom:164.160000pt;}
.y1c0{bottom:166.240000pt;}
.y2f{bottom:167.106667pt;}
.y6e{bottom:167.520000pt;}
.y118{bottom:169.280000pt;}
.ycf{bottom:169.760000pt;}
.y15f{bottom:173.120000pt;}
.y208{bottom:174.240000pt;}
.y255{bottom:174.880000pt;}
.y26{bottom:175.040000pt;}
.y9c{bottom:177.120000pt;}
.y190{bottom:180.160000pt;}
.y1bf{bottom:182.080000pt;}
.y6d{bottom:183.386667pt;}
.y2e{bottom:184.706667pt;}
.y254{bottom:190.746667pt;}
.y11e{bottom:191.720000pt;}
.y25{bottom:192.826667pt;}
.y9b{bottom:192.986667pt;}
.y228{bottom:193.146667pt;}
.yd6{bottom:194.920000pt;}
.y18f{bottom:196.026667pt;}
.y1be{bottom:197.946667pt;}
.y207{bottom:198.106667pt;}
.y15e{bottom:198.280000pt;}
.y6c{bottom:199.386667pt;}
.y1e7{bottom:205.946667pt;}
.y253{bottom:206.586667pt;}
.y9a{bottom:208.826667pt;}
.y227{bottom:208.986667pt;}
.y2d{bottom:211.586667pt;}
.y18e{bottom:211.866667pt;}
.y1bd{bottom:213.786667pt;}
.y206{bottom:213.946667pt;}
.y11b{bottom:214.600000pt;}
.y6b{bottom:215.226667pt;}
.yd2{bottom:220.360000pt;}
.y1e6{bottom:221.786667pt;}
.y252{bottom:222.426667pt;}
.y15d{bottom:223.400000pt;}
.y99{bottom:224.666667pt;}
.y226{bottom:224.826667pt;}
.y18d{bottom:227.706667pt;}
.y1bc{bottom:229.786667pt;}
.y6a{bottom:231.066667pt;}
.y113{bottom:237.320000pt;}
.y205{bottom:237.786667pt;}
.y251{bottom:238.426667pt;}
.y98{bottom:240.506667pt;}
.y225{bottom:240.666667pt;}
.y2c{bottom:241.440000pt;}
.y18c{bottom:243.546667pt;}
.y1bb{bottom:245.626667pt;}
.yca{bottom:245.640000pt;}
.y1e5{bottom:245.786667pt;}
.y69{bottom:246.906667pt;}
.y15c{bottom:248.520000pt;}
.y204{bottom:253.786667pt;}
.y250{bottom:254.266667pt;}
.y97{bottom:256.026667pt;}
.y224{bottom:256.506667pt;}
.y37{bottom:259.066667pt;}
.y18b{bottom:259.386667pt;}
.y116{bottom:259.720000pt;}
.y1ba{bottom:261.466667pt;}
.y1e4{bottom:261.626667pt;}
.y68{bottom:262.746667pt;}
.y24{bottom:263.706667pt;}
.y24f{bottom:270.106667pt;}
.y223{bottom:272.346667pt;}
.y18a{bottom:275.386667pt;}
.y1e3{bottom:277.466667pt;}
.y203{bottom:277.626667pt;}
.y67{bottom:278.586667pt;}
.y15b{bottom:278.746667pt;}
.y96{bottom:280.346667pt;}
.y115{bottom:282.440000pt;}
.y36{bottom:284.986667pt;}
.y24e{bottom:285.946667pt;}
.y23{bottom:286.586667pt;}
.y222{bottom:288.346667pt;}
.y189{bottom:291.226667pt;}
.y1e2{bottom:293.306667pt;}
.y66{bottom:294.586667pt;}
.yc9{bottom:294.906667pt;}
.y95{bottom:296.186667pt;}
.y1b9{bottom:300.826667pt;}
.y202{bottom:301.466667pt;}
.y24d{bottom:301.786667pt;}
.y15a{bottom:302.586667pt;}
.y221{bottom:304.186667pt;}
.y10b{bottom:305.160000pt;}
.y188{bottom:307.066667pt;}
.y22{bottom:309.466667pt;}
.y65{bottom:310.426667pt;}
.y94{bottom:312.026667pt;}
.y1e1{bottom:317.146667pt;}
.y201{bottom:317.306667pt;}
.y24c{bottom:317.786667pt;}
.yb8{bottom:319.066667pt;}
.y220{bottom:320.026667pt;}
.y187{bottom:322.906667pt;}
.y1b8{bottom:324.986667pt;}
.y64{bottom:326.266667pt;}
.y159{bottom:326.906667pt;}
.y111{bottom:327.720000pt;}
.y93{bottom:327.866667pt;}
.y21{bottom:332.506667pt;}
.y1e0{bottom:332.986667pt;}
.y200{bottom:333.146667pt;}
.y24b{bottom:333.626667pt;}
.yb7{bottom:334.906667pt;}
.y21f{bottom:335.866667pt;}
.y186{bottom:338.746667pt;}
.y1b7{bottom:340.986667pt;}
.y63{bottom:342.106667pt;}
.y158{bottom:342.746667pt;}
.y92{bottom:343.706667pt;}
.y1df{bottom:348.986667pt;}
.y24a{bottom:349.466667pt;}
.yc8{bottom:350.426667pt;}
.y10e{bottom:350.440000pt;}
.y21e{bottom:351.706667pt;}
.y1b6{bottom:356.826667pt;}
.y157{bottom:358.586667pt;}
.yb6{bottom:358.746667pt;}
.y62{bottom:359.706667pt;}
.y1f{bottom:361.626667pt;}
.y185{bottom:362.746667pt;}
.y1de{bottom:364.826667pt;}
.y249{bottom:365.306667pt;}
.yc7{bottom:366.426667pt;}
.y21d{bottom:367.706667pt;}
.y1b5{bottom:372.666667pt;}
.y1ff{bottom:372.986667pt;}
.y108{bottom:373.160000pt;}
.y156{bottom:374.426667pt;}
.yb5{bottom:374.746667pt;}
.y91{bottom:375.546667pt;}
.y184{bottom:378.586667pt;}
.y1dd{bottom:380.666667pt;}
.y248{bottom:381.146667pt;}
.y21c{bottom:383.546667pt;}
.y1e{bottom:385.466667pt;}
.y1b4{bottom:388.506667pt;}
.y1fe{bottom:388.826667pt;}
.y61{bottom:388.986667pt;}
.yb4{bottom:390.586667pt;}
.y90{bottom:391.426667pt;}
.y152{bottom:393.986667pt;}
.y183{bottom:394.466667pt;}
.y1dc{bottom:396.546667pt;}
.y247{bottom:397.026667pt;}
.y21b{bottom:401.186667pt;}
.y1b3{bottom:404.386667pt;}
.y1fd{bottom:404.706667pt;}
.y60{bottom:404.866667pt;}
.yb3{bottom:406.466667pt;}
.y8f{bottom:407.266667pt;}
.y1d{bottom:409.346667pt;}
.y182{bottom:410.306667pt;}
.y1db{bottom:412.386667pt;}
.y246{bottom:413.026667pt;}
.y107{bottom:418.306667pt;}
.y155{bottom:419.106667pt;}
.y1b2{bottom:420.386667pt;}
.y1fc{bottom:420.546667pt;}
.y5f{bottom:420.706667pt;}
.yb2{bottom:422.306667pt;}
.y8e{bottom:423.106667pt;}
.y1da{bottom:428.386667pt;}
.y245{bottom:428.866667pt;}
.y21a{bottom:430.306667pt;}
.y1c{bottom:433.186667pt;}
.y181{bottom:434.146667pt;}
.y1fb{bottom:436.386667pt;}
.y5e{bottom:436.546667pt;}
.yb1{bottom:438.146667pt;}
.y8d{bottom:440.866667pt;}
.y106{bottom:442.306667pt;}
.y1b1{bottom:444.226667pt;}
.y154{bottom:444.546667pt;}
.y244{bottom:444.706667pt;}
.y219{bottom:446.146667pt;}
.y180{bottom:449.986667pt;}
.y5d{bottom:452.386667pt;}
.yb0{bottom:455.906667pt;}
.y1b{bottom:457.186667pt;}
.y105{bottom:458.146667pt;}
.y102{bottom:458.466667pt;}
.y1b0{bottom:460.066667pt;}
.y243{bottom:460.546667pt;}
.y218{bottom:462.146667pt;}
.y17f{bottom:465.986667pt;}
.y1fa{bottom:468.226667pt;}
.y5c{bottom:468.386667pt;}
.y8c{bottom:469.986667pt;}
.y101{bottom:474.306667pt;}
.y1af{bottom:475.906667pt;}
.y242{bottom:476.386667pt;}
.y217{bottom:477.986667pt;}
.y1a{bottom:480.706667pt;}
.y20{bottom:481.026667pt;}
.y17e{bottom:481.826667pt;}
.y104{bottom:482.306667pt;}
.y1f9{bottom:484.066667pt;}
.y5b{bottom:484.226667pt;}
.yaf{bottom:485.026667pt;}
.y8b{bottom:485.826667pt;}
.y100{bottom:490.146667pt;}
.y1ae{bottom:491.746667pt;}
.y241{bottom:492.386667pt;}
.y216{bottom:493.826667pt;}
.y151{bottom:495.106667pt;}
.y17d{bottom:497.666667pt;}
.y103{bottom:498.146667pt;}
.y1f8{bottom:499.906667pt;}
.y5a{bottom:500.066667pt;}
.yae{bottom:500.866667pt;}
.y8a{bottom:501.666667pt;}
.y19{bottom:505.986667pt;}
.y1ad{bottom:507.586667pt;}
.y240{bottom:508.226667pt;}
.yfd{bottom:509.666667pt;}
.y17c{bottom:513.506667pt;}
.y1f7{bottom:515.746667pt;}
.y59{bottom:515.906667pt;}
.yad{bottom:516.706667pt;}
.y150{bottom:520.546667pt;}
.y1ac{bottom:523.586667pt;}
.y23f{bottom:524.066667pt;}
.y89{bottom:525.506667pt;}
.y18{bottom:529.346667pt;}
.y1d9{bottom:531.266667pt;}
.y1f6{bottom:531.586667pt;}
.yac{bottom:532.546667pt;}
.yff{bottom:534.786667pt;}
.y1ab{bottom:539.426667pt;}
.y58{bottom:539.746667pt;}
.y23e{bottom:539.906667pt;}
.y88{bottom:541.346667pt;}
.y17b{bottom:545.186667pt;}
.y148{bottom:545.986667pt;}
.y1d8{bottom:547.106667pt;}
.yab{bottom:548.546667pt;}
.y57{bottom:555.586667pt;}
.y23d{bottom:555.746667pt;}
.y17{bottom:556.706667pt;}
.y215{bottom:557.346667pt;}
.y87{bottom:559.106667pt;}
.yfe{bottom:560.226667pt;}
.y17a{bottom:561.186667pt;}
.y1aa{bottom:563.266667pt;}
.yc6{bottom:564.386667pt;}
.y14e{bottom:571.106667pt;}
.y1d7{bottom:571.266667pt;}
.y1f5{bottom:571.426667pt;}
.y56{bottom:571.586667pt;}
.yaa{bottom:572.386667pt;}
.y214{bottom:573.186667pt;}
.y1a9{bottom:579.106667pt;}
.yc5{bottom:580.226667pt;}
.y179{bottom:585.026667pt;}
.yfa{bottom:585.666667pt;}
.y1d6{bottom:587.106667pt;}
.y1f4{bottom:587.266667pt;}
.y55{bottom:587.426667pt;}
.y23c{bottom:587.586667pt;}
.y86{bottom:588.226667pt;}
.y213{bottom:589.026667pt;}
.y1a8{bottom:594.946667pt;}
.yc4{bottom:596.066667pt;}
.y14a{bottom:596.386667pt;}
.y178{bottom:600.573333pt;}
.y1d5{bottom:602.973333pt;}
.y1f3{bottom:603.133333pt;}
.y54{bottom:603.293333pt;}
.y23b{bottom:603.453333pt;}
.y85{bottom:604.093333pt;}
.y212{bottom:604.893333pt;}
.y16{bottom:606.973333pt;}
.yfc{bottom:610.813333pt;}
.y1d4{bottom:618.813333pt;}
.y1f2{bottom:618.973333pt;}
.y53{bottom:619.133333pt;}
.y23a{bottom:619.293333pt;}
.y84{bottom:619.933333pt;}
.y147{bottom:621.853333pt;}
.y177{bottom:624.733333pt;}
.y1a7{bottom:626.813333pt;}
.y211{bottom:630.493333pt;}
.y15{bottom:634.333333pt;}
.y1d3{bottom:634.813333pt;}
.y52{bottom:634.973333pt;}
.y239{bottom:635.133333pt;}
.y83{bottom:635.773333pt;}
.yfb{bottom:636.253333pt;}
.y176{bottom:640.573333pt;}
.y1f1{bottom:642.493333pt;}
.y1a6{bottom:642.653333pt;}
.y1d2{bottom:650.653333pt;}
.y51{bottom:650.813333pt;}
.y238{bottom:650.973333pt;}
.y82{bottom:651.773333pt;}
.y175{bottom:656.573333pt;}
.y1f0{bottom:658.493333pt;}
.y210{bottom:659.773333pt;}
.yf6{bottom:661.533333pt;}
.y1a5{bottom:666.493333pt;}
.y14{bottom:666.653333pt;}
.y50{bottom:666.813333pt;}
.y81{bottom:667.613333pt;}
.y146{bottom:671.133333pt;}
.y174{bottom:672.413333pt;}
.y20f{bottom:675.613333pt;}
.y1d1{bottom:682.333333pt;}
.y4f{bottom:682.653333pt;}
.y237{bottom:682.813333pt;}
.y80{bottom:683.453333pt;}
.yf9{bottom:686.813333pt;}
.y173{bottom:690.013333pt;}
.y1a4{bottom:690.333333pt;}
.y20e{bottom:691.453333pt;}
.y145{bottom:694.973333pt;}
.y4e{bottom:698.493333pt;}
.y236{bottom:698.653333pt;}
.y7f{bottom:699.293333pt;}
.y1d0{bottom:706.173333pt;}
.ya9{bottom:707.293333pt;}
.y144{bottom:710.813333pt;}
.y140{bottom:711.133333pt;}
.y13{bottom:711.613333pt;}
.yf8{bottom:712.093333pt;}
.y1a3{bottom:714.173333pt;}
.y1ef{bottom:714.333333pt;}
.y235{bottom:714.493333pt;}
.y7e{bottom:715.133333pt;}
.y172{bottom:719.133333pt;}
.y1cf{bottom:722.173333pt;}
.y4d{bottom:722.333333pt;}
.ya8{bottom:723.133333pt;}
.y143{bottom:726.653333pt;}
.y13f{bottom:726.973333pt;}
.y1ee{bottom:730.173333pt;}
.y234{bottom:730.333333pt;}
.y7d{bottom:730.973333pt;}
.y171{bottom:734.973333pt;}
.y12{bottom:736.413333pt;}
.yf5{bottom:737.533333pt;}
.y1ce{bottom:738.013333pt;}
.y4c{bottom:738.173333pt;}
.ya7{bottom:738.973333pt;}
.y13e{bottom:742.813333pt;}
.y1ed{bottom:746.173333pt;}
.y7c{bottom:746.973333pt;}
.y142{bottom:750.813333pt;}
.y1cd{bottom:753.853333pt;}
.y1a2{bottom:754.013333pt;}
.y4b{bottom:754.173333pt;}
.ya6{bottom:754.973333pt;}
.y13d{bottom:758.813333pt;}
.y170{bottom:758.973333pt;}
.y1ec{bottom:762.013333pt;}
.y233{bottom:762.173333pt;}
.y141{bottom:766.813333pt;}
.y1cc{bottom:769.693333pt;}
.y1a1{bottom:769.853333pt;}
.y4a{bottom:770.013333pt;}
.y7b{bottom:770.813333pt;}
.y16f{bottom:774.813333pt;}
.y11{bottom:777.373333pt;}
.y1eb{bottom:777.853333pt;}
.y232{bottom:778.013333pt;}
.y135{bottom:778.333333pt;}
.y1cb{bottom:785.533333pt;}
.y49{bottom:785.853333pt;}
.y7a{bottom:786.653333pt;}
.yf4{bottom:786.813333pt;}
.y20d{bottom:788.413333pt;}
.y16e{bottom:790.653333pt;}
.y1a0{bottom:793.693333pt;}
.y231{bottom:793.853333pt;}
.y10{bottom:799.773333pt;}
.y1ca{bottom:801.373333pt;}
.y48{bottom:801.693333pt;}
.y79{bottom:802.493333pt;}
.y13a{bottom:803.453333pt;}
.y19f{bottom:809.573333pt;}
.y230{bottom:809.733333pt;}
.yf3{bottom:810.693333pt;}
.yef{bottom:811.013333pt;}
.y16d{bottom:814.213333pt;}
.yf{bottom:817.413333pt;}
.y47{bottom:817.573333pt;}
.yc3{bottom:818.373333pt;}
.y78{bottom:820.133333pt;}
.y19e{bottom:825.413333pt;}
.y22f{bottom:825.573333pt;}
.yf2{bottom:826.533333pt;}
.yee{bottom:826.853333pt;}
.y138{bottom:828.933333pt;}
.y1c9{bottom:833.253333pt;}
.y46{bottom:833.413333pt;}
.yc2{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y16c{bottom:837.413333pt;}
.y19d{bottom:841.413333pt;}
.yed{bottom:842.693333pt;}
.y1c8{bottom:849.093333pt;}
.y45{bottom:849.413333pt;}
.yc1{bottom:850.213333pt;}
.yf1{bottom:850.693333pt;}
.yd{bottom:852.453333pt;}
.y132{bottom:854.213333pt;}
.y16b{bottom:854.533333pt;}
.y19c{bottom:857.253333pt;}
.y22e{bottom:857.413333pt;}
.yec{bottom:858.533333pt;}
.y1c7{bottom:864.933333pt;}
.y44{bottom:865.253333pt;}
.yc0{bottom:866.053333pt;}
.yf0{bottom:866.533333pt;}
.yc{bottom:870.373333pt;}
.y19b{bottom:873.093333pt;}
.y22d{bottom:873.253333pt;}
.y16a{bottom:876.133333pt;}
.ye9{bottom:878.053333pt;}
.y134{bottom:879.333333pt;}
.y77{bottom:881.093333pt;}
.y1c6{bottom:888.773333pt;}
.y19a{bottom:888.933333pt;}
.y43{bottom:889.093333pt;}
.ybf{bottom:889.893333pt;}
.y76{bottom:896.933333pt;}
.y169{bottom:902.373333pt;}
.yeb{bottom:903.333333pt;}
.y133{bottom:904.773333pt;}
.y42{bottom:904.933333pt;}
.ybe{bottom:905.733333pt;}
.yb{bottom:905.893333pt;}
.y75{bottom:912.773333pt;}
.ya{bottom:916.613333pt;}
.y41{bottom:920.773333pt;}
.ybd{bottom:921.573333pt;}
.y168{bottom:925.413333pt;}
.y9{bottom:927.333333pt;}
.yea{bottom:928.613333pt;}
.y74{bottom:928.773333pt;}
.y12d{bottom:930.213333pt;}
.y199{bottom:936.613333pt;}
.y40{bottom:936.773333pt;}
.ybc{bottom:937.573333pt;}
.y8{bottom:938.053333pt;}
.y1c5{bottom:944.453333pt;}
.y73{bottom:944.613333pt;}
.y7{bottom:951.013333pt;}
.y167{bottom:951.653333pt;}
.y198{bottom:952.453333pt;}
.y3f{bottom:952.613333pt;}
.ybb{bottom:953.413333pt;}
.ye4{bottom:954.053333pt;}
.y131{bottom:955.333333pt;}
.ya5{bottom:960.453333pt;}
.y197{bottom:968.293333pt;}
.y3e{bottom:968.453333pt;}
.yba{bottom:969.253333pt;}
.y6{bottom:973.733333pt;}
.ya4{bottom:976.293333pt;}
.y166{bottom:976.773333pt;}
.ye8{bottom:979.173333pt;}
.y12f{bottom:980.773333pt;}
.y196{bottom:984.133333pt;}
.y3d{bottom:984.293333pt;}
.yb9{bottom:986.853333pt;}
.ya3{bottom:992.133333pt;}
.y3c{bottom:1000.133333pt;}
.y165{bottom:1003.493333pt;}
.ye6{bottom:1004.613333pt;}
.y129{bottom:1006.053333pt;}
.y195{bottom:1007.653333pt;}
.ya2{bottom:1007.973333pt;}
.y3b{bottom:1015.973333pt;}
.ya1{bottom:1023.680000pt;}
.y1c4{bottom:1024.000000pt;}
.y164{bottom:1028.480000pt;}
.ye1{bottom:1030.080000pt;}
.y3a{bottom:1032.000000pt;}
.y39{bottom:1047.840000pt;}
.y163{bottom:1055.200000pt;}
.y128{bottom:1055.360000pt;}
.y38{bottom:1063.680000pt;}
.h2e{height:21.746667pt;}
.h30{height:21.792000pt;}
.h2c{height:21.906667pt;}
.h2b{height:22.066667pt;}
.h35{height:24.306667pt;}
.h3a{height:24.320000pt;}
.h28{height:24.466667pt;}
.h1d{height:24.476000pt;}
.h21{height:24.480000pt;}
.h25{height:24.506667pt;}
.h19{height:24.512000pt;}
.h18{height:24.626667pt;}
.h23{height:24.640000pt;}
.h20{height:24.660000pt;}
.h33{height:24.672000pt;}
.h27{height:24.786667pt;}
.h1c{height:24.796000pt;}
.h1b{height:24.800000pt;}
.h34{height:24.826667pt;}
.h37{height:24.946667pt;}
.h2{height:27.676000pt;}
.h14{height:33.515625pt;}
.h7{height:36.431250pt;}
.h13{height:38.828437pt;}
.h29{height:39.858667pt;}
.h1e{height:43.840000pt;}
.h16{height:43.986667pt;}
.h31{height:44.020000pt;}
.h3e{height:46.242188pt;}
.h3b{height:46.882188pt;}
.h38{height:47.085938pt;}
.h3{height:47.109375pt;}
.h3c{height:47.522187pt;}
.h40{height:47.882812pt;}
.he{height:48.375000pt;}
.h15{height:49.336436pt;}
.h39{height:50.574375pt;}
.h3d{height:51.589375pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h9{height:53.535000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.hb{height:64.290000pt;}
.h2d{height:67.186667pt;}
.h2a{height:67.346667pt;}
.h2f{height:67.392000pt;}
.hf{height:69.660000pt;}
.ha{height:73.490625pt;}
.h36{height:75.186667pt;}
.h32{height:75.200000pt;}
.h1f{height:75.220000pt;}
.h24{height:75.226667pt;}
.h17{height:75.232000pt;}
.h26{height:75.346667pt;}
.h1a{height:75.356000pt;}
.h22{height:75.360000pt;}
.h5{height:75.465000pt;}
.h3f{height:79.109375pt;}
.h6{height:80.625000pt;}
.h10{height:235.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:38.706667pt;}
.w12{width:38.738667pt;}
.w1c{width:39.186667pt;}
.wa{width:39.506667pt;}
.w9{width:39.538667pt;}
.w27{width:45.778667pt;}
.w1a{width:45.906667pt;}
.w1b{width:45.938667pt;}
.w22{width:46.098667pt;}
.w21{width:46.226667pt;}
.w18{width:50.912000pt;}
.w11{width:51.666667pt;}
.w10{width:51.826667pt;}
.w19{width:52.466667pt;}
.w8{width:52.786667pt;}
.w14{width:58.386667pt;}
.w28{width:59.186667pt;}
.w26{width:59.232000pt;}
.w1d{width:59.346667pt;}
.wb{width:59.506667pt;}
.w20{width:59.552000pt;}
.wf{width:65.152000pt;}
.w7{width:66.272000pt;}
.w3{width:71.386667pt;}
.we{width:71.520000pt;}
.w17{width:72.800000pt;}
.w6{width:72.960000pt;}
.w25{width:79.200000pt;}
.w1f{width:79.680000pt;}
.w29{width:85.786667pt;}
.w1e{width:85.946667pt;}
.wc{width:86.266667pt;}
.w23{width:86.426667pt;}
.w15{width:92.986667pt;}
.w2d{width:97.152000pt;}
.w2c{width:97.280000pt;}
.w2e{width:98.226667pt;}
.w2f{width:99.066667pt;}
.w2b{width:99.872000pt;}
.w2a{width:103.700000pt;}
.wd{width:222.142667pt;}
.w24{width:225.022667pt;}
.w5{width:226.302667pt;}
.w16{width:240.222667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.716000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x27{left:29.760000pt;}
.x44{left:31.228000pt;}
.x3c{left:32.188000pt;}
.x1e{left:33.120000pt;}
.x12{left:34.880000pt;}
.x37{left:36.480000pt;}
.x26{left:37.920000pt;}
.x45{left:39.200000pt;}
.x1{left:40.324000pt;}
.x41{left:42.066667pt;}
.x14{left:44.480000pt;}
.x1b{left:46.404000pt;}
.x5{left:48.000000pt;}
.x49{left:59.040000pt;}
.x47{left:62.400000pt;}
.x46{left:65.600000pt;}
.xb{left:71.200000pt;}
.x48{left:96.032000pt;}
.xe{left:128.992000pt;}
.xf{left:132.832000pt;}
.x3d{left:152.506667pt;}
.x2{left:197.662667pt;}
.xd{left:203.066667pt;}
.x3b{left:211.066667pt;}
.x39{left:226.906667pt;}
.xc{left:230.586667pt;}
.x36{left:248.386667pt;}
.x8{left:250.466667pt;}
.x3e{left:253.026667pt;}
.x6{left:253.986667pt;}
.x9{left:256.866667pt;}
.x29{left:271.586667pt;}
.x1d{left:273.346667pt;}
.x10{left:279.426667pt;}
.x28{left:281.346667pt;}
.x32{left:288.866667pt;}
.x31{left:290.946667pt;}
.x1a{left:321.986667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x2a{left:343.746667pt;}
.x1f{left:346.946667pt;}
.x3f{left:350.946667pt;}
.x38{left:353.666667pt;}
.x33{left:362.306667pt;}
.x2b{left:409.546667pt;}
.x20{left:413.866667pt;}
.x11{left:420.893333pt;}
.x18{left:431.933333pt;}
.x17{left:435.293333pt;}
.x15{left:438.493333pt;}
.x4a{left:444.893333pt;}
.x40{left:448.906667pt;}
.x19{left:457.373333pt;}
.x2c{left:462.026667pt;}
.x21{left:467.306667pt;}
.x16{left:468.893333pt;}
.x3a{left:513.546667pt;}
.x2d{left:514.506667pt;}
.x22{left:520.746667pt;}
.x42{left:547.813333pt;}
.x2e{left:553.893333pt;}
.x23{left:560.933333pt;}
.x2f{left:593.253333pt;}
.x34{left:600.133333pt;}
.x24{left:601.093333pt;}
.x43{left:646.693333pt;}
.x30{left:652.293333pt;}
.x35{left:660.133333pt;}
.x25{left:661.253333pt;}
.x4{left:682.213333pt;}
}




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