
    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_7dd5ab3231c5a6e8e491af24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_160a34d0a77e366967afbd54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_4e14c42c5134511e9a13f7fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14ae81b30fd2c86cdedae5d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_5bb9a6d019a00821231bc500.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001953;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_980de5b50da7c0232f4443c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_f613d13fe9027d616379ecf1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4695578269a078084e0b9e8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_2596c52d9ad8a4e9ece2965c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_989b579041ffa91d4ea664d0.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.272400px;}
.ls22{letter-spacing:-0.240600px;}
.ls1d{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.187200px;}
.ls25{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.107400px;}
.ls5{letter-spacing:-0.097800px;}
.ls26{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.022320px;}
.ls8{letter-spacing:0.031680px;}
.ls3{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.256200px;}
.ls2d{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.271200px;}
.lsc{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.479520px;}
.ls30{letter-spacing:0.576000px;}
.ls1{letter-spacing:1.039680px;}
.ls2c{letter-spacing:1.728000px;}
.ls29{letter-spacing:3.888000px;}
.ls1a{letter-spacing:6.654240px;}
.ls2a{letter-spacing:6.768000px;}
.lsd{letter-spacing:8.100000px;}
.ls2e{letter-spacing:8.208000px;}
.ls24{letter-spacing:9.534240px;}
.ls27{letter-spacing:9.648000px;}
.ls28{letter-spacing:11.088000px;}
.ls1b{letter-spacing:12.414240px;}
.ls20{letter-spacing:13.860000px;}
.ls2b{letter-spacing:13.968000px;}
.ls1f{letter-spacing:15.300000px;}
.ls12{letter-spacing:16.128000px;}
.ls23{letter-spacing:24.768000px;}
.ls18{letter-spacing:28.224000px;}
.ls17{letter-spacing:31.824000px;}
.lse{letter-spacing:32.544000px;}
.ls19{letter-spacing:35.424000px;}
.ls1e{letter-spacing:48.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.632000px;}
.wsb{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.wse{word-spacing:-16.056000px;}
.ws10{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.226440px;}
.ws3{word-spacing:-15.001920px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.398360px;}
.wsf{word-spacing:-13.265160px;}
.ws1{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.049400px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-1.008000px;}
._0{width:1.075680px;}
._1{width:2.348400px;}
._3{width:3.816000px;}
._4{width:5.651040px;}
._f{width:6.677760px;}
._c{width:8.092800px;}
._9{width:9.096000px;}
._7{width:10.272000px;}
._6{width:11.304000px;}
._8{width:13.248000px;}
._1b{width:14.688000px;}
._a{width:16.014240px;}
._b{width:17.128560px;}
._e{width:18.216000px;}
._10{width:19.262400px;}
._15{width:20.634720px;}
._24{width:21.662880px;}
._18{width:22.680000px;}
._17{width:23.832000px;}
._1a{width:25.000320px;}
._19{width:26.784000px;}
._23{width:28.440000px;}
._1c{width:29.808000px;}
._16{width:31.176000px;}
._14{width:32.544000px;}
._13{width:33.696000px;}
._5{width:35.640000px;}
._1f{width:36.696960px;}
._1d{width:37.992000px;}
._12{width:39.904320px;}
._11{width:40.968000px;}
._1e{width:42.408000px;}
._21{width:49.752000px;}
._20{width:50.904000px;}
._2c{width:52.776000px;}
._28{width:53.784000px;}
._27{width:54.936000px;}
._29{width:56.152320px;}
._2b{width:65.520000px;}
._2a{width:66.888000px;}
._26{width:72.576000px;}
._25{width:92.664000px;}
._22{width:128.664000px;}
._d{width:708.708000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y17a{bottom:4.845000px;}
.y2{bottom:7.380000px;}
.y192{bottom:15.825000px;}
.y1ae{bottom:15.826500px;}
.y1c9{bottom:15.832500px;}
.y139{bottom:15.840000px;}
.y13e{bottom:15.885000px;}
.y13b{bottom:16.020000px;}
.y147{bottom:32.220000px;}
.y143{bottom:32.400000px;}
.y193{bottom:32.430000px;}
.y13f{bottom:32.445000px;}
.y18d{bottom:32.580000px;}
.y175{bottom:32.760000px;}
.y161{bottom:37.620000px;}
.y1c8{bottom:48.766500px;}
.y146{bottom:48.780000px;}
.y191{bottom:48.810000px;}
.y13d{bottom:48.825000px;}
.y1ad{bottom:48.946500px;}
.y142{bottom:48.960000px;}
.y182{bottom:49.140000px;}
.y5{bottom:56.196000px;}
.y33{bottom:57.456000px;}
.y4{bottom:73.836000px;}
.y32{bottom:76.896000px;}
.y160{bottom:79.590000px;}
.y1c7{bottom:81.706500px;}
.y1d3{bottom:81.720000px;}
.y1b8{bottom:81.765000px;}
.y1ac{bottom:81.886500px;}
.y1ce{bottom:81.900000px;}
.ye0{bottom:109.836000px;}
.y31{bottom:110.196000px;}
.ybb{bottom:110.376000px;}
.y5d{bottom:110.736000px;}
.y1c6{bottom:114.646500px;}
.y1d2{bottom:114.660000px;}
.y1d9{bottom:114.690000px;}
.y1b7{bottom:114.705000px;}
.y1ab{bottom:114.826500px;}
.y1cd{bottom:114.840000px;}
.y1ec{bottom:117.036000px;}
.y197{bottom:118.116000px;}
.yca{bottom:119.196000px;}
.y108{bottom:122.076000px;}
.ydf{bottom:127.476000px;}
.y180{bottom:128.196000px;}
.y1da{bottom:128.383500px;}
.y30{bottom:128.556000px;}
.yba{bottom:128.736000px;}
.y1f5{bottom:128.916000px;}
.y5c{bottom:129.096000px;}
.y1b9{bottom:130.003500px;}
.y20c{bottom:132.156000px;}
.y1a2{bottom:135.763500px;}
.y2f{bottom:136.116000px;}
.yc9{bottom:137.556000px;}
.y107{bottom:143.136000px;}
.y1fe{bottom:144.216000px;}
.yc8{bottom:145.116000px;}
.yde{bottom:145.836000px;}
.y2e{bottom:146.916000px;}
.yb9{bottom:147.096000px;}
.y5b{bottom:147.456000px;}
.y1d8{bottom:147.630000px;}
.y1c5{bottom:147.631500px;}
.y1b6{bottom:147.645000px;}
.y1cc{bottom:147.780000px;}
.y1aa{bottom:147.811500px;}
.ye2{bottom:149.256000px;}
.y17f{bottom:149.436000px;}
.y196{bottom:149.976000px;}
.y1f4{bottom:153.210000px;}
.y7d{bottom:154.470000px;}
.yc7{bottom:156.270000px;}
.y225{bottom:159.150000px;}
.ydd{bottom:164.190000px;}
.y2d{bottom:165.090000px;}
.yb8{bottom:165.270000px;}
.y7c{bottom:165.630000px;}
.y5a{bottom:165.810000px;}
.y137{bottom:167.070000px;}
.y116{bottom:167.250000px;}
.y17e{bottom:167.790000px;}
.y106{bottom:171.750000px;}
.y2c{bottom:172.650000px;}
.y1fd{bottom:177.150000px;}
.y247{bottom:179.490000px;}
.y21b{bottom:179.850000px;}
.y231{bottom:180.030000px;}
.y1d7{bottom:180.570000px;}
.y1c4{bottom:180.571500px;}
.y1d1{bottom:180.585000px;}
.y1dd{bottom:180.720000px;}
.y1cb{bottom:180.750000px;}
.y1a9{bottom:180.751500px;}
.y1b5{bottom:180.765000px;}
.ydc{bottom:182.370000px;}
.y1eb{bottom:182.910000px;}
.y97{bottom:183.450000px;}
.yb7{bottom:183.630000px;}
.y2b{bottom:183.810000px;}
.y59{bottom:184.170000px;}
.y195{bottom:184.365000px;}
.yc6{bottom:186.150000px;}
.y17d{bottom:186.510000px;}
.y136{bottom:189.210000px;}
.y96{bottom:190.290000px;}
.yb6{bottom:191.190000px;}
.y105{bottom:191.370000px;}
.y228{bottom:192.090000px;}
.ye1{bottom:195.510000px;}
.y152{bottom:197.310000px;}
.y115{bottom:200.190000px;}
.ydb{bottom:200.730000px;}
.y58{bottom:202.350000px;}
.y224{bottom:207.030000px;}
.y246{bottom:207.570000px;}
.yda{bottom:208.290000px;}
.y95{bottom:209.010000px;}
.y104{bottom:209.730000px;}
.yb5{bottom:210.990000px;}
.y135{bottom:211.170000px;}
.y21a{bottom:212.790000px;}
.y20b{bottom:212.970000px;}
.y1d6{bottom:213.510000px;}
.y1c3{bottom:213.511500px;}
.y1d0{bottom:213.525000px;}
.y1a8{bottom:213.691500px;}
.y1b4{bottom:213.705000px;}
.y1ea{bottom:215.850000px;}
.y17c{bottom:216.390000px;}
.y103{bottom:217.290000px;}
.y194{bottom:218.025000px;}
.yc5{bottom:219.090000px;}
.y7b{bottom:220.710000px;}
.y57{bottom:221.070000px;}
.y1fc{bottom:225.030000px;}
.y16a{bottom:225.210000px;}
.y94{bottom:227.370000px;}
.y56{bottom:229.350000px;}
.yd9{bottom:230.790000px;}
.y151{bottom:230.970000px;}
.y134{bottom:233.130000px;}
.y114{bottom:233.310000px;}
.y16b{bottom:233.490000px;}
.y245{bottom:235.650000px;}
.y2a{bottom:237.450000px;}
.y17b{bottom:238.170000px;}
.y7a{bottom:239.070000px;}
.y102{bottom:239.790000px;}
.y223{bottom:239.970000px;}
.y55{bottom:241.950000px;}
.y93{bottom:245.550000px;}
.y219{bottom:245.730000px;}
.y20a{bottom:245.910000px;}
.y1d5{bottom:246.450000px;}
.y1a7{bottom:246.631500px;}
.y1b3{bottom:246.645000px;}
.yb4{bottom:247.530000px;}
.y1e9{bottom:248.790000px;}
.y190{bottom:251.685000px;}
.yd8{bottom:251.850000px;}
.y1f3{bottom:252.030000px;}
.y179{bottom:254.385000px;}
.y133{bottom:255.090000px;}
.y79{bottom:257.790000px;}
.y169{bottom:258.330000px;}
.yd7{bottom:258.690000px;}
.y29{bottom:259.410000px;}
.y101{bottom:260.850000px;}
.y230{bottom:261.030000px;}
.y244{bottom:262.830000px;}
.y92{bottom:263.910000px;}
.y150{bottom:264.630000px;}
.y113{bottom:264.990000px;}
.yb3{bottom:265.890000px;}
.yc4{bottom:267.150000px;}
.y1fb{bottom:273.135000px;}
.y54{bottom:274.935000px;}
.y132{bottom:277.095000px;}
.yd6{bottom:279.255000px;}
.y1a6{bottom:279.571500px;}
.y1b2{bottom:279.585000px;}
.y100{bottom:281.955000px;}
.y91{bottom:282.315000px;}
.y243{bottom:284.115000px;}
.yb2{bottom:284.295000px;}
.y1f2{bottom:285.015000px;}
.y222{bottom:288.075000px;}
.yff{bottom:288.795000px;}
.y168{bottom:291.315000px;}
.y112{bottom:291.495000px;}
.yb1{bottom:291.855000px;}
.y218{bottom:293.835000px;}
.y209{bottom:294.015000px;}
.y77{bottom:297.075000px;}
.yd5{bottom:297.435000px;}
.y131{bottom:299.055000px;}
.y28{bottom:299.415000px;}
.yfe{bottom:299.955000px;}
.yc3{bottom:300.135000px;}
.y90{bottom:301.035000px;}
.y78{bottom:305.355000px;}
.y1fa{bottom:306.075000px;}
.y52{bottom:307.875000px;}
.y178{bottom:310.935000px;}
.yb0{bottom:311.475000px;}
.y1a5{bottom:312.511500px;}
.y1b1{bottom:312.525000px;}
.y1e8{bottom:314.895000px;}
.yd4{bottom:315.795000px;}
.y53{bottom:316.155000px;}
.yfd{bottom:317.415000px;}
.y1f1{bottom:318.135000px;}
.y18f{bottom:318.315000px;}
.y130{bottom:321.015000px;}
.y27{bottom:321.375000px;}
.y167{bottom:322.995000px;}
.y217{bottom:326.775000px;}
.y208{bottom:326.955000px;}
.y242{bottom:328.035000px;}
.yaf{bottom:329.835000px;}
.y76{bottom:330.015000px;}
.y14f{bottom:331.275000px;}
.yd3{bottom:334.155000px;}
.yfc{bottom:335.775000px;}
.y227{bottom:339.015000px;}
.yd2{bottom:341.715000px;}
.y22f{bottom:341.895000px;}
.y12f{bottom:342.975000px;}
.y26{bottom:343.515000px;}
.y1a4{bottom:345.451500px;}
.y1b0{bottom:345.495000px;}
.yc2{bottom:348.015000px;}
.yae{bottom:348.195000px;}
.y241{bottom:349.995000px;}
.y8f{bottom:351.075000px;}
.y18c{bottom:352.155000px;}
.yd1{bottom:352.875000px;}
.y1f9{bottom:353.955000px;}
.yfb{bottom:354.135000px;}
.yad{bottom:355.755000px;}
.y51{bottom:355.935000px;}
.y166{bottom:357.375000px;}
.yfa{bottom:360.975000px;}
.y1e7{bottom:362.775000px;}
.y75{bottom:363.135000px;}
.y12e{bottom:364.935000px;}
.y14e{bottom:365.115000px;}
.y25{bottom:365.475000px;}
.y1f0{bottom:366.015000px;}
.y240{bottom:371.955000px;}
.yf9{bottom:372.855000px;}
.y216{bottom:374.655000px;}
.y207{bottom:374.835000px;}
.yac{bottom:375.555000px;}
.y177{bottom:377.535000px;}
.y1c2{bottom:378.391500px;}
.y1a3{bottom:378.571500px;}
.yc1{bottom:380.955000px;}
.y8e{bottom:384.015000px;}
.y18e{bottom:385.815000px;}
.y12d{bottom:386.895000px;}
.y24{bottom:387.435000px;}
.y50{bottom:388.875000px;}
.yab{bottom:393.735000px;}
.y23f{bottom:393.915000px;}
.y1e6{bottom:395.715000px;}
.y74{bottom:396.075000px;}
.y14d{bottom:398.775000px;}
.y1ef{bottom:398.955000px;}
.y165{bottom:400.035000px;}
.y215{bottom:407.595000px;}
.y206{bottom:407.775000px;}
.y12c{bottom:408.855000px;}
.y23{bottom:409.395000px;}
.y1c1{bottom:411.331500px;}
.yaa{bottom:412.095000px;}
.yc0{bottom:413.895000px;}
.y23e{bottom:415.875000px;}
.y8d{bottom:416.955000px;}
.y226{bottom:419.835000px;}
.y22e{bottom:422.895000px;}
.yd0{bottom:425.235000px;}
.y1e5{bottom:428.655000px;}
.y4f{bottom:428.835000px;}
.y73{bottom:429.015000px;}
.ya9{bottom:430.455000px;}
.y12b{bottom:430.815000px;}
.y22{bottom:431.355000px;}
.y1ee{bottom:431.895000px;}
.y14c{bottom:432.435000px;}
.y1f8{bottom:434.955000px;}
.y23d{bottom:437.835000px;}
.y214{bottom:440.535000px;}
.y164{bottom:442.695000px;}
.y174{bottom:444.135000px;}
.y1c0{bottom:444.301500px;}
.ybf{bottom:446.835000px;}
.ya8{bottom:448.815000px;}
.ycf{bottom:449.895000px;}
.y4e{bottom:450.795000px;}
.y12a{bottom:452.775000px;}
.y21{bottom:453.315000px;}
.y205{bottom:455.835000px;}
.ya7{bottom:456.375000px;}
.y1d4{bottom:458.895000px;}
.y23c{bottom:459.795000px;}
.y1e4{bottom:461.595000px;}
.y72{bottom:461.955000px;}
.y8c{bottom:464.835000px;}
.y14b{bottom:466.275000px;}
.ya6{bottom:467.535000px;}
.y221{bottom:467.895000px;}
.y4d{bottom:472.755000px;}
.y129{bottom:474.735000px;}
.y20{bottom:475.275000px;}
.y1bf{bottom:477.241500px;}
.y176{bottom:477.975000px;}
.ybe{bottom:479.955000px;}
.y23b{bottom:481.755000px;}
.y1f7{bottom:482.835000px;}
.y15f{bottom:485.355000px;}
.y213{bottom:488.595000px;}
.y204{bottom:488.775000px;}
.y4c{bottom:494.715000px;}
.y71{bottom:494.895000px;}
.y128{bottom:496.875000px;}
.y1f{bottom:497.235000px;}
.y8b{bottom:497.775000px;}
.y14a{bottom:499.935000px;}
.y220{bottom:500.835000px;}
.y22d{bottom:503.715000px;}
.y18b{bottom:504.255000px;}
.y1be{bottom:510.181500px;}
.ya4{bottom:512.895000px;}
.y1f6{bottom:515.775000px;}
.y4b{bottom:516.675000px;}
.y127{bottom:518.835000px;}
.y1e{bottom:519.195000px;}
.ya5{bottom:521.175000px;}
.y212{bottom:521.535000px;}
.y23a{bottom:525.675000px;}
.y173{bottom:527.475000px;}
.y1e3{bottom:527.655000px;}
.y70{bottom:527.835000px;}
.y163{bottom:528.195000px;}
.y8a{bottom:530.715000px;}
.y1a1{bottom:532.155000px;}
.y21f{bottom:533.775000px;}
.y203{bottom:536.655000px;}
.y18a{bottom:537.375000px;}
.y4a{bottom:538.635000px;}
.yce{bottom:538.995000px;}
.y126{bottom:540.795000px;}
.y1bd{bottom:543.121500px;}
.ya3{bottom:545.835000px;}
.y239{bottom:547.635000px;}
.y22c{bottom:551.775000px;}
.y1d{bottom:559.185000px;}
.y1e2{bottom:560.625000px;}
.y6f{bottom:560.805000px;}
.y125{bottom:562.785000px;}
.y89{bottom:563.865000px;}
.y149{bottom:566.565000px;}
.y211{bottom:568.185000px;}
.y202{bottom:569.625000px;}
.y189{bottom:570.345000px;}
.y162{bottom:570.885000px;}
.y111{bottom:576.105000px;}
.y1bc{bottom:576.241500px;}
.y172{bottom:578.445000px;}
.y49{bottom:578.625000px;}
.ya1{bottom:578.805000px;}
.y21e{bottom:581.685000px;}
.y124{bottom:584.745000px;}
.ya2{bottom:587.085000px;}
.y238{bottom:591.765000px;}
.y6e{bottom:593.745000px;}
.y88{bottom:596.805000px;}
.y1c{bottom:599.145000px;}
.y1a0{bottom:599.685000px;}
.y148{bottom:600.225000px;}
.y188{bottom:602.205000px;}
.yf8{bottom:604.185000px;}
.y123{bottom:606.705000px;}
.y1e1{bottom:608.505000px;}
.y110{bottom:609.045000px;}
.y1bb{bottom:609.181500px;}
.y171{bottom:611.385000px;}
.ya0{bottom:611.745000px;}
.y237{bottom:613.725000px;}
.y21d{bottom:614.625000px;}
.y201{bottom:617.685000px;}
.y48{bottom:618.765000px;}
.y1b{bottom:620.925000px;}
.yf7{bottom:626.145000px;}
.y6d{bottom:626.685000px;}
.y122{bottom:628.665000px;}
.ycd{bottom:629.745000px;}
.y210{bottom:632.625000px;}
.y145{bottom:634.065000px;}
.y236{bottom:635.685000px;}
.y187{bottom:636.405000px;}
.y47{bottom:640.725000px;}
.y1a{bottom:641.085000px;}
.y1e0{bottom:641.445000px;}
.y10f{bottom:641.985000px;}
.y1ba{bottom:642.121500px;}
.y170{bottom:644.325000px;}
.y87{bottom:644.685000px;}
.y15e{bottom:647.385000px;}
.y19f{bottom:647.745000px;}
.yf6{bottom:648.105000px;}
.y121{bottom:650.625000px;}
.y1ed{bottom:652.965000px;}
.y19{bottom:661.245000px;}
.y46{bottom:662.685000px;}
.y20f{bottom:665.565000px;}
.y186{bottom:670.065000px;}
.y120{bottom:672.585000px;}
.y1df{bottom:673.305000px;}
.y6c{bottom:674.745000px;}
.y10e{bottom:674.925000px;}
.y16f{bottom:677.265000px;}
.y86{bottom:677.625000px;}
.y15d{bottom:680.325000px;}
.y19e{bottom:680.685000px;}
.y18{bottom:681.585000px;}
.y235{bottom:683.565000px;}
.yf5{bottom:684.105000px;}
.y45{bottom:684.645000px;}
.y1de{bottom:689.505000px;}
.y11f{bottom:694.545000px;}
.y21c{bottom:695.625000px;}
.y200{bottom:698.505000px;}
.y144{bottom:700.665000px;}
.y17{bottom:703.545000px;}
.y185{bottom:703.725000px;}
.y44{bottom:706.605000px;}
.y6b{bottom:707.685000px;}
.y10d{bottom:707.865000px;}
.y16e{bottom:710.385000px;}
.y85{bottom:710.565000px;}
.y15c{bottom:713.445000px;}
.y19d{bottom:713.625000px;}
.y11e{bottom:716.505000px;}
.yf4{bottom:720.825000px;}
.y1cf{bottom:723.345000px;}
.y16{bottom:725.505000px;}
.y9f{bottom:725.685000px;}
.y43{bottom:728.565000px;}
.y234{bottom:731.625000px;}
.y141{bottom:734.325000px;}
.y184{bottom:737.385000px;}
.y11d{bottom:738.465000px;}
.y6a{bottom:740.625000px;}
.y10c{bottom:740.805000px;}
.y16d{bottom:743.325000px;}
.y84{bottom:743.505000px;}
.y15b{bottom:746.385000px;}
.y1ff{bottom:746.565000px;}
.y15{bottom:747.465000px;}
.yf3{bottom:757.725000px;}
.y9e{bottom:758.625000px;}
.y11c{bottom:760.425000px;}
.y19c{bottom:761.505000px;}
.y233{bottom:764.565000px;}
.y42{bottom:768.525000px;}
.y14{bottom:769.425000px;}
.y181{bottom:771.225000px;}
.y69{bottom:773.565000px;}
.y10b{bottom:773.745000px;}
.y16c{bottom:775.185000px;}
.y83{bottom:776.625000px;}
.y15a{bottom:779.325000px;}
.y22b{bottom:779.505000px;}
.yf2{bottom:779.685000px;}
.y11b{bottom:782.385000px;}
.y1af{bottom:789.945000px;}
.y12{bottom:791.385000px;}
.y9d{bottom:791.565000px;}
.y19b{bottom:794.445000px;}
.y13{bottom:799.665000px;}
.y140{bottom:801.105000px;}
.yf1{bottom:801.645000px;}
.y183{bottom:804.885000px;}
.y10a{bottom:805.605000px;}
.y68{bottom:806.505000px;}
.y41{bottom:808.485000px;}
.y82{bottom:809.565000px;}
.y159{bottom:812.265000px;}
.y22a{bottom:812.445000px;}
.y11{bottom:813.345000px;}
.yf0{bottom:823.605000px;}
.y9c{bottom:824.505000px;}
.y19a{bottom:827.385000px;}
.y40{bottom:830.445000px;}
.y109{bottom:832.065000px;}
.y11a{bottom:833.505000px;}
.y13c{bottom:834.765000px;}
.y10{bottom:835.305000px;}
.y67{bottom:839.490000px;}
.y81{bottom:842.550000px;}
.y158{bottom:845.250000px;}
.y232{bottom:845.430000px;}
.ye{bottom:857.490000px;}
.y20e{bottom:860.550000px;}
.yee{bottom:860.730000px;}
.yf{bottom:865.770000px;}
.yef{bottom:869.010000px;}
.y66{bottom:872.430000px;}
.y3f{bottom:873.690000px;}
.y80{bottom:875.490000px;}
.y157{bottom:878.190000px;}
.yd{bottom:879.450000px;}
.yed{bottom:883.590000px;}
.y119{bottom:884.490000px;}
.y1dc{bottom:888.090000px;}
.y9b{bottom:890.430000px;}
.y229{bottom:893.490000px;}
.y3e{bottom:895.470000px;}
.yc{bottom:901.410000px;}
.y65{bottom:905.550000px;}
.y199{bottom:908.430000px;}
.y156{bottom:911.130000px;}
.yec{bottom:913.830000px;}
.y3d{bottom:917.430000px;}
.y7f{bottom:923.370000px;}
.yeb{bottom:928.410000px;}
.y9a{bottom:931.650000px;}
.yb{bottom:932.910000px;}
.y13a{bottom:935.250000px;}
.y118{bottom:935.430000px;}
.y64{bottom:938.490000px;}
.y3c{bottom:939.390000px;}
.y198{bottom:941.370000px;}
.y155{bottom:944.070000px;}
.yea{bottom:950.370000px;}
.y1ca{bottom:954.690000px;}
.y99{bottom:956.310000px;}
.ya{bottom:961.170000px;}
.y3b{bottom:961.350000px;}
.ybd{bottom:964.590000px;}
.y117{bottom:968.370000px;}
.y138{bottom:968.910000px;}
.y63{bottom:971.430000px;}
.ye8{bottom:972.510000px;}
.y20d{bottom:974.310000px;}
.y154{bottom:975.930000px;}
.ye9{bottom:980.790000px;}
.y3a{bottom:983.310000px;}
.y98{bottom:989.430000px;}
.ye7{bottom:994.470000px;}
.y62{bottom:1004.370000px;}
.y39{bottom:1005.270000px;}
.y9{bottom:1010.130000px;}
.ye5{bottom:1017.330000px;}
.ybc{bottom:1022.370000px;}
.ye6{bottom:1025.610000px;}
.y38{bottom:1027.230000px;}
.y61{bottom:1037.310000px;}
.y8{bottom:1038.390000px;}
.y37{bottom:1049.190000px;}
.ycc{bottom:1055.310000px;}
.y7{bottom:1066.470000px;}
.y60{bottom:1070.250000px;}
.y36{bottom:1071.150000px;}
.ye4{bottom:1077.270000px;}
.y7e{bottom:1078.530000px;}
.y1db{bottom:1086.630000px;}
.y153{bottom:1088.250000px;}
.y35{bottom:1093.290000px;}
.y5f{bottom:1103.190000px;}
.ycb{bottom:1111.470000px;}
.y6{bottom:1112.550000px;}
.ye3{bottom:1114.170000px;}
.y5e{bottom:1136.160000px;}
.y34{bottom:1136.340000px;}
.y3{bottom:1157.760000px;}
.y1{bottom:1182.780000px;}
.h2{height:21.600000px;}
.h21{height:21.981000px;}
.hc{height:32.064609px;}
.h1f{height:32.925000px;}
.h14{height:32.940000px;}
.h27{height:32.970000px;}
.h25{height:33.105000px;}
.h15{height:33.120000px;}
.h11{height:38.158594px;}
.ha{height:39.783867px;}
.h1d{height:41.925000px;}
.h1a{height:41.940000px;}
.h1b{height:41.970000px;}
.h1c{height:42.105000px;}
.hf{height:47.344922px;}
.hd{height:49.284492px;}
.h3{height:51.998203px;}
.h4{height:52.465078px;}
.hb{height:54.628594px;}
.h10{height:58.651172px;}
.h8{height:59.378906px;}
.h20{height:65.865000px;}
.h18{height:65.880000px;}
.h26{height:65.901000px;}
.h23{height:65.902500px;}
.h2f{height:65.910000px;}
.h16{height:65.916000px;}
.h17{height:66.060000px;}
.h24{height:66.585000px;}
.h1e{height:66.765000px;}
.h5{height:70.664062px;}
.h13{height:72.562500px;}
.h12{height:74.004654px;}
.he{height:74.953125px;}
.h7{height:83.322422px;}
.h6{height:84.070547px;}
.h22{height:99.562500px;}
.h19{height:127.470000px;}
.h30{height:197.805000px;}
.h2b{height:197.850000px;}
.h2c{height:230.610000px;}
.h2d{height:263.550000px;}
.h2e{height:329.595000px;}
.h29{height:362.595000px;}
.h28{height:395.662500px;}
.h2a{height:659.227500px;}
.h9{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:16.905000px;}
.w31{width:17.805000px;}
.w20{width:41.760000px;}
.w35{width:52.005000px;}
.w27{width:52.185000px;}
.w1d{width:52.365000px;}
.w1b{width:52.380000px;}
.w1f{width:52.581000px;}
.w26{width:55.980000px;}
.w2f{width:63.000000px;}
.w19{width:63.021000px;}
.w1c{width:63.036000px;}
.w2e{width:70.905000px;}
.w1e{width:73.605000px;}
.w1a{width:73.620000px;}
.w21{width:73.656000px;}
.w29{width:81.921000px;}
.w30{width:84.441000px;}
.w3{width:85.125000px;}
.w13{width:87.105000px;}
.wd{width:94.845000px;}
.w10{width:95.025000px;}
.w6{width:95.040000px;}
.we{width:95.061000px;}
.w7{width:95.076000px;}
.w25{width:99.561000px;}
.w11{width:102.801000px;}
.w8{width:102.814500px;}
.wf{width:105.516000px;}
.w34{width:108.201000px;}
.w12{width:113.436000px;}
.w16{width:116.136000px;}
.w32{width:124.414500px;}
.w17{width:126.705000px;}
.w18{width:126.921000px;}
.w28{width:128.865000px;}
.w14{width:137.509500px;}
.w2c{width:137.520000px;}
.w15{width:137.541000px;}
.w2d{width:137.556000px;}
.w23{width:151.770000px;}
.w24{width:181.965000px;}
.wa{width:190.635000px;}
.wc{width:198.555000px;}
.w2b{width:201.259500px;}
.wb{width:201.270000px;}
.w22{width:232.219500px;}
.w5{width:407.955000px;}
.w33{width:409.560000px;}
.w9{width:591.930000px;}
.w2{width:609.030000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x5f{left:8.280000px;}
.x69{left:10.080000px;}
.x74{left:12.240000px;}
.x48{left:13.305000px;}
.x64{left:14.400000px;}
.x63{left:16.200000px;}
.x5c{left:18.900000px;}
.x52{left:21.045000px;}
.x4a{left:22.500000px;}
.x5e{left:23.925000px;}
.x43{left:25.020000px;}
.x62{left:27.030000px;}
.x44{left:29.700000px;}
.x68{left:31.170000px;}
.x78{left:32.565000px;}
.x4c{left:34.005000px;}
.x2{left:37.249500px;}
.x53{left:38.325000px;}
.x6f{left:41.400000px;}
.x42{left:42.840000px;}
.x6c{left:45.885000px;}
.x50{left:47.520000px;}
.x65{left:49.320000px;}
.x54{left:52.020000px;}
.x76{left:77.790000px;}
.x1{left:97.786500px;}
.x45{left:98.821500px;}
.x5{left:106.416000px;}
.x6{left:108.396000px;}
.x1a{left:111.276000px;}
.x1d{left:112.536000px;}
.x2a{left:116.136000px;}
.x9{left:125.496000px;}
.x17{left:126.936000px;}
.xb{left:134.136000px;}
.x3f{left:146.916000px;}
.x59{left:149.266500px;}
.x8{left:151.590000px;}
.x36{left:160.410000px;}
.x21{left:168.508125px;}
.xc{left:174.990000px;}
.x3e{left:182.910000px;}
.x2c{left:187.410000px;}
.x46{left:202.545000px;}
.x47{left:205.230000px;}
.x2d{left:214.410000px;}
.x75{left:223.605000px;}
.x28{left:226.108125px;}
.x2b{left:235.648125px;}
.x29{left:238.350000px;}
.x24{left:247.708125px;}
.x31{left:249.150000px;}
.x3a{left:250.408125px;}
.x25{left:253.830000px;}
.x58{left:260.850000px;}
.x3b{left:262.650000px;}
.x18{left:270.030000px;}
.x34{left:278.668125px;}
.x5a{left:287.505000px;}
.x35{left:290.910000px;}
.x2e{left:294.868125px;}
.x4d{left:298.125000px;}
.xa{left:306.255000px;}
.x6e{left:308.775000px;}
.x19{left:322.455000px;}
.x15{left:328.575000px;}
.x38{left:331.993125px;}
.x37{left:341.715000px;}
.x39{left:344.235000px;}
.x10{left:346.215000px;}
.x33{left:352.155000px;}
.xd{left:360.075000px;}
.x12{left:362.775000px;}
.x16{left:370.515000px;}
.x71{left:372.675000px;}
.x7d{left:382.935000px;}
.x11{left:390.495000px;}
.x49{left:393.915000px;}
.x7c{left:398.955000px;}
.x6a{left:402.375000px;}
.x5b{left:425.775000px;}
.x7{left:446.655000px;}
.x2f{left:456.733125px;}
.x30{left:468.975000px;}
.x60{left:478.875000px;}
.x66{left:498.180000px;}
.x4e{left:500.160000px;}
.x51{left:508.080000px;}
.x72{left:510.960000px;}
.x13{left:524.443125px;}
.xe{left:527.143125px;}
.x22{left:529.303125px;}
.x14{left:530.565000px;}
.xf{left:533.265000px;}
.x23{left:535.425000px;}
.x5d{left:542.820000px;}
.x6b{left:551.280000px;}
.x40{left:555.585000px;}
.x70{left:585.300000px;}
.x4b{left:595.920000px;}
.x77{left:633.900000px;}
.x73{left:638.400000px;}
.x7a{left:641.803125px;}
.x41{left:651.345000px;}
.x7b{left:654.045000px;}
.x3d{left:660.345000px;}
.x1b{left:669.703125px;}
.x26{left:672.763125px;}
.x1c{left:675.825000px;}
.x3c{left:677.265000px;}
.x27{left:678.885000px;}
.x67{left:680.880000px;}
.x57{left:686.265000px;}
.x4f{left:691.680000px;}
.x3{left:710.250000px;}
.x61{left:723.570000px;}
.x32{left:726.810000px;}
.x79{left:742.830000px;}
.x55{left:754.168125px;}
.x6d{left:763.530000px;}
.x56{left:766.410000px;}
.x1f{left:775.948125px;}
.x20{left:782.070000px;}
.x1e{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.242133pt;}
.ls22{letter-spacing:-0.213867pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.166400pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.095467pt;}
.ls5{letter-spacing:-0.086933pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.019840pt;}
.ls8{letter-spacing:0.028160pt;}
.ls3{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls2d{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.241067pt;}
.lsc{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426240pt;}
.ls30{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.924160pt;}
.ls2c{letter-spacing:1.536000pt;}
.ls29{letter-spacing:3.456000pt;}
.ls1a{letter-spacing:5.914880pt;}
.ls2a{letter-spacing:6.016000pt;}
.lsd{letter-spacing:7.200000pt;}
.ls2e{letter-spacing:7.296000pt;}
.ls24{letter-spacing:8.474880pt;}
.ls27{letter-spacing:8.576000pt;}
.ls28{letter-spacing:9.856000pt;}
.ls1b{letter-spacing:11.034880pt;}
.ls20{letter-spacing:12.320000pt;}
.ls2b{letter-spacing:12.416000pt;}
.ls1f{letter-spacing:13.600000pt;}
.ls12{letter-spacing:14.336000pt;}
.ls23{letter-spacing:22.016000pt;}
.ls18{letter-spacing:25.088000pt;}
.ls17{letter-spacing:28.288000pt;}
.lse{letter-spacing:28.928000pt;}
.ls19{letter-spacing:31.488000pt;}
.ls1e{letter-spacing:42.986667pt;}
.ws8{word-spacing:-14.784000pt;}
.wsb{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.272000pt;}
.ws10{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.335040pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.909653pt;}
.wsf{word-spacing:-11.791253pt;}
.ws1{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.599467pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.956160pt;}
._1{width:2.087467pt;}
._3{width:3.392000pt;}
._4{width:5.023147pt;}
._f{width:5.935787pt;}
._c{width:7.193600pt;}
._9{width:8.085333pt;}
._7{width:9.130667pt;}
._6{width:10.048000pt;}
._8{width:11.776000pt;}
._1b{width:13.056000pt;}
._a{width:14.234880pt;}
._b{width:15.225387pt;}
._e{width:16.192000pt;}
._10{width:17.122133pt;}
._15{width:18.341973pt;}
._24{width:19.255893pt;}
._18{width:20.160000pt;}
._17{width:21.184000pt;}
._1a{width:22.222507pt;}
._19{width:23.808000pt;}
._23{width:25.280000pt;}
._1c{width:26.496000pt;}
._16{width:27.712000pt;}
._14{width:28.928000pt;}
._13{width:29.952000pt;}
._5{width:31.680000pt;}
._1f{width:32.619520pt;}
._1d{width:33.770667pt;}
._12{width:35.470507pt;}
._11{width:36.416000pt;}
._1e{width:37.696000pt;}
._21{width:44.224000pt;}
._20{width:45.248000pt;}
._2c{width:46.912000pt;}
._28{width:47.808000pt;}
._27{width:48.832000pt;}
._29{width:49.913173pt;}
._2b{width:58.240000pt;}
._2a{width:59.456000pt;}
._26{width:64.512000pt;}
._25{width:82.368000pt;}
._22{width:114.368000pt;}
._d{width:629.962667pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y17a{bottom:4.306667pt;}
.y2{bottom:6.560000pt;}
.y192{bottom:14.066667pt;}
.y1ae{bottom:14.068000pt;}
.y1c9{bottom:14.073333pt;}
.y139{bottom:14.080000pt;}
.y13e{bottom:14.120000pt;}
.y13b{bottom:14.240000pt;}
.y147{bottom:28.640000pt;}
.y143{bottom:28.800000pt;}
.y193{bottom:28.826667pt;}
.y13f{bottom:28.840000pt;}
.y18d{bottom:28.960000pt;}
.y175{bottom:29.120000pt;}
.y161{bottom:33.440000pt;}
.y1c8{bottom:43.348000pt;}
.y146{bottom:43.360000pt;}
.y191{bottom:43.386667pt;}
.y13d{bottom:43.400000pt;}
.y1ad{bottom:43.508000pt;}
.y142{bottom:43.520000pt;}
.y182{bottom:43.680000pt;}
.y5{bottom:49.952000pt;}
.y33{bottom:51.072000pt;}
.y4{bottom:65.632000pt;}
.y32{bottom:68.352000pt;}
.y160{bottom:70.746667pt;}
.y1c7{bottom:72.628000pt;}
.y1d3{bottom:72.640000pt;}
.y1b8{bottom:72.680000pt;}
.y1ac{bottom:72.788000pt;}
.y1ce{bottom:72.800000pt;}
.ye0{bottom:97.632000pt;}
.y31{bottom:97.952000pt;}
.ybb{bottom:98.112000pt;}
.y5d{bottom:98.432000pt;}
.y1c6{bottom:101.908000pt;}
.y1d2{bottom:101.920000pt;}
.y1d9{bottom:101.946667pt;}
.y1b7{bottom:101.960000pt;}
.y1ab{bottom:102.068000pt;}
.y1cd{bottom:102.080000pt;}
.y1ec{bottom:104.032000pt;}
.y197{bottom:104.992000pt;}
.yca{bottom:105.952000pt;}
.y108{bottom:108.512000pt;}
.ydf{bottom:113.312000pt;}
.y180{bottom:113.952000pt;}
.y1da{bottom:114.118667pt;}
.y30{bottom:114.272000pt;}
.yba{bottom:114.432000pt;}
.y1f5{bottom:114.592000pt;}
.y5c{bottom:114.752000pt;}
.y1b9{bottom:115.558667pt;}
.y20c{bottom:117.472000pt;}
.y1a2{bottom:120.678667pt;}
.y2f{bottom:120.992000pt;}
.yc9{bottom:122.272000pt;}
.y107{bottom:127.232000pt;}
.y1fe{bottom:128.192000pt;}
.yc8{bottom:128.992000pt;}
.yde{bottom:129.632000pt;}
.y2e{bottom:130.592000pt;}
.yb9{bottom:130.752000pt;}
.y5b{bottom:131.072000pt;}
.y1d8{bottom:131.226667pt;}
.y1c5{bottom:131.228000pt;}
.y1b6{bottom:131.240000pt;}
.y1cc{bottom:131.360000pt;}
.y1aa{bottom:131.388000pt;}
.ye2{bottom:132.672000pt;}
.y17f{bottom:132.832000pt;}
.y196{bottom:133.312000pt;}
.y1f4{bottom:136.186667pt;}
.y7d{bottom:137.306667pt;}
.yc7{bottom:138.906667pt;}
.y225{bottom:141.466667pt;}
.ydd{bottom:145.946667pt;}
.y2d{bottom:146.746667pt;}
.yb8{bottom:146.906667pt;}
.y7c{bottom:147.226667pt;}
.y5a{bottom:147.386667pt;}
.y137{bottom:148.506667pt;}
.y116{bottom:148.666667pt;}
.y17e{bottom:149.146667pt;}
.y106{bottom:152.666667pt;}
.y2c{bottom:153.466667pt;}
.y1fd{bottom:157.466667pt;}
.y247{bottom:159.546667pt;}
.y21b{bottom:159.866667pt;}
.y231{bottom:160.026667pt;}
.y1d7{bottom:160.506667pt;}
.y1c4{bottom:160.508000pt;}
.y1d1{bottom:160.520000pt;}
.y1dd{bottom:160.640000pt;}
.y1cb{bottom:160.666667pt;}
.y1a9{bottom:160.668000pt;}
.y1b5{bottom:160.680000pt;}
.ydc{bottom:162.106667pt;}
.y1eb{bottom:162.586667pt;}
.y97{bottom:163.066667pt;}
.yb7{bottom:163.226667pt;}
.y2b{bottom:163.386667pt;}
.y59{bottom:163.706667pt;}
.y195{bottom:163.880000pt;}
.yc6{bottom:165.466667pt;}
.y17d{bottom:165.786667pt;}
.y136{bottom:168.186667pt;}
.y96{bottom:169.146667pt;}
.yb6{bottom:169.946667pt;}
.y105{bottom:170.106667pt;}
.y228{bottom:170.746667pt;}
.ye1{bottom:173.786667pt;}
.y152{bottom:175.386667pt;}
.y115{bottom:177.946667pt;}
.ydb{bottom:178.426667pt;}
.y58{bottom:179.866667pt;}
.y224{bottom:184.026667pt;}
.y246{bottom:184.506667pt;}
.yda{bottom:185.146667pt;}
.y95{bottom:185.786667pt;}
.y104{bottom:186.426667pt;}
.yb5{bottom:187.546667pt;}
.y135{bottom:187.706667pt;}
.y21a{bottom:189.146667pt;}
.y20b{bottom:189.306667pt;}
.y1d6{bottom:189.786667pt;}
.y1c3{bottom:189.788000pt;}
.y1d0{bottom:189.800000pt;}
.y1a8{bottom:189.948000pt;}
.y1b4{bottom:189.960000pt;}
.y1ea{bottom:191.866667pt;}
.y17c{bottom:192.346667pt;}
.y103{bottom:193.146667pt;}
.y194{bottom:193.800000pt;}
.yc5{bottom:194.746667pt;}
.y7b{bottom:196.186667pt;}
.y57{bottom:196.506667pt;}
.y1fc{bottom:200.026667pt;}
.y16a{bottom:200.186667pt;}
.y94{bottom:202.106667pt;}
.y56{bottom:203.866667pt;}
.yd9{bottom:205.146667pt;}
.y151{bottom:205.306667pt;}
.y134{bottom:207.226667pt;}
.y114{bottom:207.386667pt;}
.y16b{bottom:207.546667pt;}
.y245{bottom:209.466667pt;}
.y2a{bottom:211.066667pt;}
.y17b{bottom:211.706667pt;}
.y7a{bottom:212.506667pt;}
.y102{bottom:213.146667pt;}
.y223{bottom:213.306667pt;}
.y55{bottom:215.066667pt;}
.y93{bottom:218.266667pt;}
.y219{bottom:218.426667pt;}
.y20a{bottom:218.586667pt;}
.y1d5{bottom:219.066667pt;}
.y1a7{bottom:219.228000pt;}
.y1b3{bottom:219.240000pt;}
.yb4{bottom:220.026667pt;}
.y1e9{bottom:221.146667pt;}
.y190{bottom:223.720000pt;}
.yd8{bottom:223.866667pt;}
.y1f3{bottom:224.026667pt;}
.y179{bottom:226.120000pt;}
.y133{bottom:226.746667pt;}
.y79{bottom:229.146667pt;}
.y169{bottom:229.626667pt;}
.yd7{bottom:229.946667pt;}
.y29{bottom:230.586667pt;}
.y101{bottom:231.866667pt;}
.y230{bottom:232.026667pt;}
.y244{bottom:233.626667pt;}
.y92{bottom:234.586667pt;}
.y150{bottom:235.226667pt;}
.y113{bottom:235.546667pt;}
.yb3{bottom:236.346667pt;}
.yc4{bottom:237.466667pt;}
.y1fb{bottom:242.786667pt;}
.y54{bottom:244.386667pt;}
.y132{bottom:246.306667pt;}
.yd6{bottom:248.226667pt;}
.y1a6{bottom:248.508000pt;}
.y1b2{bottom:248.520000pt;}
.y100{bottom:250.626667pt;}
.y91{bottom:250.946667pt;}
.y243{bottom:252.546667pt;}
.yb2{bottom:252.706667pt;}
.y1f2{bottom:253.346667pt;}
.y222{bottom:256.066667pt;}
.yff{bottom:256.706667pt;}
.y168{bottom:258.946667pt;}
.y112{bottom:259.106667pt;}
.yb1{bottom:259.426667pt;}
.y218{bottom:261.186667pt;}
.y209{bottom:261.346667pt;}
.y77{bottom:264.066667pt;}
.yd5{bottom:264.386667pt;}
.y131{bottom:265.826667pt;}
.y28{bottom:266.146667pt;}
.yfe{bottom:266.626667pt;}
.yc3{bottom:266.786667pt;}
.y90{bottom:267.586667pt;}
.y78{bottom:271.426667pt;}
.y1fa{bottom:272.066667pt;}
.y52{bottom:273.666667pt;}
.y178{bottom:276.386667pt;}
.yb0{bottom:276.866667pt;}
.y1a5{bottom:277.788000pt;}
.y1b1{bottom:277.800000pt;}
.y1e8{bottom:279.906667pt;}
.yd4{bottom:280.706667pt;}
.y53{bottom:281.026667pt;}
.yfd{bottom:282.146667pt;}
.y1f1{bottom:282.786667pt;}
.y18f{bottom:282.946667pt;}
.y130{bottom:285.346667pt;}
.y27{bottom:285.666667pt;}
.y167{bottom:287.106667pt;}
.y217{bottom:290.466667pt;}
.y208{bottom:290.626667pt;}
.y242{bottom:291.586667pt;}
.yaf{bottom:293.186667pt;}
.y76{bottom:293.346667pt;}
.y14f{bottom:294.466667pt;}
.yd3{bottom:297.026667pt;}
.yfc{bottom:298.466667pt;}
.y227{bottom:301.346667pt;}
.yd2{bottom:303.746667pt;}
.y22f{bottom:303.906667pt;}
.y12f{bottom:304.866667pt;}
.y26{bottom:305.346667pt;}
.y1a4{bottom:307.068000pt;}
.y1b0{bottom:307.106667pt;}
.yc2{bottom:309.346667pt;}
.yae{bottom:309.506667pt;}
.y241{bottom:311.106667pt;}
.y8f{bottom:312.066667pt;}
.y18c{bottom:313.026667pt;}
.yd1{bottom:313.666667pt;}
.y1f9{bottom:314.626667pt;}
.yfb{bottom:314.786667pt;}
.yad{bottom:316.226667pt;}
.y51{bottom:316.386667pt;}
.y166{bottom:317.666667pt;}
.yfa{bottom:320.866667pt;}
.y1e7{bottom:322.466667pt;}
.y75{bottom:322.786667pt;}
.y12e{bottom:324.386667pt;}
.y14e{bottom:324.546667pt;}
.y25{bottom:324.866667pt;}
.y1f0{bottom:325.346667pt;}
.y240{bottom:330.626667pt;}
.yf9{bottom:331.426667pt;}
.y216{bottom:333.026667pt;}
.y207{bottom:333.186667pt;}
.yac{bottom:333.826667pt;}
.y177{bottom:335.586667pt;}
.y1c2{bottom:336.348000pt;}
.y1a3{bottom:336.508000pt;}
.yc1{bottom:338.626667pt;}
.y8e{bottom:341.346667pt;}
.y18e{bottom:342.946667pt;}
.y12d{bottom:343.906667pt;}
.y24{bottom:344.386667pt;}
.y50{bottom:345.666667pt;}
.yab{bottom:349.986667pt;}
.y23f{bottom:350.146667pt;}
.y1e6{bottom:351.746667pt;}
.y74{bottom:352.066667pt;}
.y14d{bottom:354.466667pt;}
.y1ef{bottom:354.626667pt;}
.y165{bottom:355.586667pt;}
.y215{bottom:362.306667pt;}
.y206{bottom:362.466667pt;}
.y12c{bottom:363.426667pt;}
.y23{bottom:363.906667pt;}
.y1c1{bottom:365.628000pt;}
.yaa{bottom:366.306667pt;}
.yc0{bottom:367.906667pt;}
.y23e{bottom:369.666667pt;}
.y8d{bottom:370.626667pt;}
.y226{bottom:373.186667pt;}
.y22e{bottom:375.906667pt;}
.yd0{bottom:377.986667pt;}
.y1e5{bottom:381.026667pt;}
.y4f{bottom:381.186667pt;}
.y73{bottom:381.346667pt;}
.ya9{bottom:382.626667pt;}
.y12b{bottom:382.946667pt;}
.y22{bottom:383.426667pt;}
.y1ee{bottom:383.906667pt;}
.y14c{bottom:384.386667pt;}
.y1f8{bottom:386.626667pt;}
.y23d{bottom:389.186667pt;}
.y214{bottom:391.586667pt;}
.y164{bottom:393.506667pt;}
.y174{bottom:394.786667pt;}
.y1c0{bottom:394.934667pt;}
.ybf{bottom:397.186667pt;}
.ya8{bottom:398.946667pt;}
.ycf{bottom:399.906667pt;}
.y4e{bottom:400.706667pt;}
.y12a{bottom:402.466667pt;}
.y21{bottom:402.946667pt;}
.y205{bottom:405.186667pt;}
.ya7{bottom:405.666667pt;}
.y1d4{bottom:407.906667pt;}
.y23c{bottom:408.706667pt;}
.y1e4{bottom:410.306667pt;}
.y72{bottom:410.626667pt;}
.y8c{bottom:413.186667pt;}
.y14b{bottom:414.466667pt;}
.ya6{bottom:415.586667pt;}
.y221{bottom:415.906667pt;}
.y4d{bottom:420.226667pt;}
.y129{bottom:421.986667pt;}
.y20{bottom:422.466667pt;}
.y1bf{bottom:424.214667pt;}
.y176{bottom:424.866667pt;}
.ybe{bottom:426.626667pt;}
.y23b{bottom:428.226667pt;}
.y1f7{bottom:429.186667pt;}
.y15f{bottom:431.426667pt;}
.y213{bottom:434.306667pt;}
.y204{bottom:434.466667pt;}
.y4c{bottom:439.746667pt;}
.y71{bottom:439.906667pt;}
.y128{bottom:441.666667pt;}
.y1f{bottom:441.986667pt;}
.y8b{bottom:442.466667pt;}
.y14a{bottom:444.386667pt;}
.y220{bottom:445.186667pt;}
.y22d{bottom:447.746667pt;}
.y18b{bottom:448.226667pt;}
.y1be{bottom:453.494667pt;}
.ya4{bottom:455.906667pt;}
.y1f6{bottom:458.466667pt;}
.y4b{bottom:459.266667pt;}
.y127{bottom:461.186667pt;}
.y1e{bottom:461.506667pt;}
.ya5{bottom:463.266667pt;}
.y212{bottom:463.586667pt;}
.y23a{bottom:467.266667pt;}
.y173{bottom:468.866667pt;}
.y1e3{bottom:469.026667pt;}
.y70{bottom:469.186667pt;}
.y163{bottom:469.506667pt;}
.y8a{bottom:471.746667pt;}
.y1a1{bottom:473.026667pt;}
.y21f{bottom:474.466667pt;}
.y203{bottom:477.026667pt;}
.y18a{bottom:477.666667pt;}
.y4a{bottom:478.786667pt;}
.yce{bottom:479.106667pt;}
.y126{bottom:480.706667pt;}
.y1bd{bottom:482.774667pt;}
.ya3{bottom:485.186667pt;}
.y239{bottom:486.786667pt;}
.y22c{bottom:490.466667pt;}
.y1d{bottom:497.053333pt;}
.y1e2{bottom:498.333333pt;}
.y6f{bottom:498.493333pt;}
.y125{bottom:500.253333pt;}
.y89{bottom:501.213333pt;}
.y149{bottom:503.613333pt;}
.y211{bottom:505.053333pt;}
.y202{bottom:506.333333pt;}
.y189{bottom:506.973333pt;}
.y162{bottom:507.453333pt;}
.y111{bottom:512.093333pt;}
.y1bc{bottom:512.214667pt;}
.y172{bottom:514.173333pt;}
.y49{bottom:514.333333pt;}
.ya1{bottom:514.493333pt;}
.y21e{bottom:517.053333pt;}
.y124{bottom:519.773333pt;}
.ya2{bottom:521.853333pt;}
.y238{bottom:526.013333pt;}
.y6e{bottom:527.773333pt;}
.y88{bottom:530.493333pt;}
.y1c{bottom:532.573333pt;}
.y1a0{bottom:533.053333pt;}
.y148{bottom:533.533333pt;}
.y188{bottom:535.293333pt;}
.yf8{bottom:537.053333pt;}
.y123{bottom:539.293333pt;}
.y1e1{bottom:540.893333pt;}
.y110{bottom:541.373333pt;}
.y1bb{bottom:541.494667pt;}
.y171{bottom:543.453333pt;}
.ya0{bottom:543.773333pt;}
.y237{bottom:545.533333pt;}
.y21d{bottom:546.333333pt;}
.y201{bottom:549.053333pt;}
.y48{bottom:550.013333pt;}
.y1b{bottom:551.933333pt;}
.yf7{bottom:556.573333pt;}
.y6d{bottom:557.053333pt;}
.y122{bottom:558.813333pt;}
.ycd{bottom:559.773333pt;}
.y210{bottom:562.333333pt;}
.y145{bottom:563.613333pt;}
.y236{bottom:565.053333pt;}
.y187{bottom:565.693333pt;}
.y47{bottom:569.533333pt;}
.y1a{bottom:569.853333pt;}
.y1e0{bottom:570.173333pt;}
.y10f{bottom:570.653333pt;}
.y1ba{bottom:570.774667pt;}
.y170{bottom:572.733333pt;}
.y87{bottom:573.053333pt;}
.y15e{bottom:575.453333pt;}
.y19f{bottom:575.773333pt;}
.yf6{bottom:576.093333pt;}
.y121{bottom:578.333333pt;}
.y1ed{bottom:580.413333pt;}
.y19{bottom:587.773333pt;}
.y46{bottom:589.053333pt;}
.y20f{bottom:591.613333pt;}
.y186{bottom:595.613333pt;}
.y120{bottom:597.853333pt;}
.y1df{bottom:598.493333pt;}
.y6c{bottom:599.773333pt;}
.y10e{bottom:599.933333pt;}
.y16f{bottom:602.013333pt;}
.y86{bottom:602.333333pt;}
.y15d{bottom:604.733333pt;}
.y19e{bottom:605.053333pt;}
.y18{bottom:605.853333pt;}
.y235{bottom:607.613333pt;}
.yf5{bottom:608.093333pt;}
.y45{bottom:608.573333pt;}
.y1de{bottom:612.893333pt;}
.y11f{bottom:617.373333pt;}
.y21c{bottom:618.333333pt;}
.y200{bottom:620.893333pt;}
.y144{bottom:622.813333pt;}
.y17{bottom:625.373333pt;}
.y185{bottom:625.533333pt;}
.y44{bottom:628.093333pt;}
.y6b{bottom:629.053333pt;}
.y10d{bottom:629.213333pt;}
.y16e{bottom:631.453333pt;}
.y85{bottom:631.613333pt;}
.y15c{bottom:634.173333pt;}
.y19d{bottom:634.333333pt;}
.y11e{bottom:636.893333pt;}
.yf4{bottom:640.733333pt;}
.y1cf{bottom:642.973333pt;}
.y16{bottom:644.893333pt;}
.y9f{bottom:645.053333pt;}
.y43{bottom:647.613333pt;}
.y234{bottom:650.333333pt;}
.y141{bottom:652.733333pt;}
.y184{bottom:655.453333pt;}
.y11d{bottom:656.413333pt;}
.y6a{bottom:658.333333pt;}
.y10c{bottom:658.493333pt;}
.y16d{bottom:660.733333pt;}
.y84{bottom:660.893333pt;}
.y15b{bottom:663.453333pt;}
.y1ff{bottom:663.613333pt;}
.y15{bottom:664.413333pt;}
.yf3{bottom:673.533333pt;}
.y9e{bottom:674.333333pt;}
.y11c{bottom:675.933333pt;}
.y19c{bottom:676.893333pt;}
.y233{bottom:679.613333pt;}
.y42{bottom:683.133333pt;}
.y14{bottom:683.933333pt;}
.y181{bottom:685.533333pt;}
.y69{bottom:687.613333pt;}
.y10b{bottom:687.773333pt;}
.y16c{bottom:689.053333pt;}
.y83{bottom:690.333333pt;}
.y15a{bottom:692.733333pt;}
.y22b{bottom:692.893333pt;}
.yf2{bottom:693.053333pt;}
.y11b{bottom:695.453333pt;}
.y1af{bottom:702.173333pt;}
.y12{bottom:703.453333pt;}
.y9d{bottom:703.613333pt;}
.y19b{bottom:706.173333pt;}
.y13{bottom:710.813333pt;}
.y140{bottom:712.093333pt;}
.yf1{bottom:712.573333pt;}
.y183{bottom:715.453333pt;}
.y10a{bottom:716.093333pt;}
.y68{bottom:716.893333pt;}
.y41{bottom:718.653333pt;}
.y82{bottom:719.613333pt;}
.y159{bottom:722.013333pt;}
.y22a{bottom:722.173333pt;}
.y11{bottom:722.973333pt;}
.yf0{bottom:732.093333pt;}
.y9c{bottom:732.893333pt;}
.y19a{bottom:735.453333pt;}
.y40{bottom:738.173333pt;}
.y109{bottom:739.613333pt;}
.y11a{bottom:740.893333pt;}
.y13c{bottom:742.013333pt;}
.y10{bottom:742.493333pt;}
.y67{bottom:746.213333pt;}
.y81{bottom:748.933333pt;}
.y158{bottom:751.333333pt;}
.y232{bottom:751.493333pt;}
.ye{bottom:762.213333pt;}
.y20e{bottom:764.933333pt;}
.yee{bottom:765.093333pt;}
.yf{bottom:769.573333pt;}
.yef{bottom:772.453333pt;}
.y66{bottom:775.493333pt;}
.y3f{bottom:776.613333pt;}
.y80{bottom:778.213333pt;}
.y157{bottom:780.613333pt;}
.yd{bottom:781.733333pt;}
.yed{bottom:785.413333pt;}
.y119{bottom:786.213333pt;}
.y1dc{bottom:789.413333pt;}
.y9b{bottom:791.493333pt;}
.y229{bottom:794.213333pt;}
.y3e{bottom:795.973333pt;}
.yc{bottom:801.253333pt;}
.y65{bottom:804.933333pt;}
.y199{bottom:807.493333pt;}
.y156{bottom:809.893333pt;}
.yec{bottom:812.293333pt;}
.y3d{bottom:815.493333pt;}
.y7f{bottom:820.773333pt;}
.yeb{bottom:825.253333pt;}
.y9a{bottom:828.133333pt;}
.yb{bottom:829.253333pt;}
.y13a{bottom:831.333333pt;}
.y118{bottom:831.493333pt;}
.y64{bottom:834.213333pt;}
.y3c{bottom:835.013333pt;}
.y198{bottom:836.773333pt;}
.y155{bottom:839.173333pt;}
.yea{bottom:844.773333pt;}
.y1ca{bottom:848.613333pt;}
.y99{bottom:850.053333pt;}
.ya{bottom:854.373333pt;}
.y3b{bottom:854.533333pt;}
.ybd{bottom:857.413333pt;}
.y117{bottom:860.773333pt;}
.y138{bottom:861.253333pt;}
.y63{bottom:863.493333pt;}
.ye8{bottom:864.453333pt;}
.y20d{bottom:866.053333pt;}
.y154{bottom:867.493333pt;}
.ye9{bottom:871.813333pt;}
.y3a{bottom:874.053333pt;}
.y98{bottom:879.493333pt;}
.ye7{bottom:883.973333pt;}
.y62{bottom:892.773333pt;}
.y39{bottom:893.573333pt;}
.y9{bottom:897.893333pt;}
.ye5{bottom:904.293333pt;}
.ybc{bottom:908.773333pt;}
.ye6{bottom:911.653333pt;}
.y38{bottom:913.093333pt;}
.y61{bottom:922.053333pt;}
.y8{bottom:923.013333pt;}
.y37{bottom:932.613333pt;}
.ycc{bottom:938.053333pt;}
.y7{bottom:947.973333pt;}
.y60{bottom:951.333333pt;}
.y36{bottom:952.133333pt;}
.ye4{bottom:957.573333pt;}
.y7e{bottom:958.693333pt;}
.y1db{bottom:965.893333pt;}
.y153{bottom:967.333333pt;}
.y35{bottom:971.813333pt;}
.y5f{bottom:980.613333pt;}
.ycb{bottom:987.973333pt;}
.y6{bottom:988.933333pt;}
.ye3{bottom:990.373333pt;}
.y5e{bottom:1009.920000pt;}
.y34{bottom:1010.080000pt;}
.y3{bottom:1029.120000pt;}
.y1{bottom:1051.360000pt;}
.h2{height:19.200000pt;}
.h21{height:19.538667pt;}
.hc{height:28.501875pt;}
.h1f{height:29.266667pt;}
.h14{height:29.280000pt;}
.h27{height:29.306667pt;}
.h25{height:29.426667pt;}
.h15{height:29.440000pt;}
.h11{height:33.918750pt;}
.ha{height:35.363437pt;}
.h1d{height:37.266667pt;}
.h1a{height:37.280000pt;}
.h1b{height:37.306667pt;}
.h1c{height:37.426667pt;}
.hf{height:42.084375pt;}
.hd{height:43.808438pt;}
.h3{height:46.220625pt;}
.h4{height:46.635625pt;}
.hb{height:48.558750pt;}
.h10{height:52.134375pt;}
.h8{height:52.781250pt;}
.h20{height:58.546667pt;}
.h18{height:58.560000pt;}
.h26{height:58.578667pt;}
.h23{height:58.580000pt;}
.h2f{height:58.586667pt;}
.h16{height:58.592000pt;}
.h17{height:58.720000pt;}
.h24{height:59.186667pt;}
.h1e{height:59.346667pt;}
.h5{height:62.812500pt;}
.h13{height:64.500000pt;}
.h12{height:65.781915pt;}
.he{height:66.625000pt;}
.h7{height:74.064375pt;}
.h6{height:74.729375pt;}
.h22{height:88.500000pt;}
.h19{height:113.306667pt;}
.h30{height:175.826667pt;}
.h2b{height:175.866667pt;}
.h2c{height:204.986667pt;}
.h2d{height:234.266667pt;}
.h2e{height:292.973333pt;}
.h29{height:322.306667pt;}
.h28{height:351.700000pt;}
.h2a{height:585.980000pt;}
.h9{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:15.026667pt;}
.w31{width:15.826667pt;}
.w20{width:37.120000pt;}
.w35{width:46.226667pt;}
.w27{width:46.386667pt;}
.w1d{width:46.546667pt;}
.w1b{width:46.560000pt;}
.w1f{width:46.738667pt;}
.w26{width:49.760000pt;}
.w2f{width:56.000000pt;}
.w19{width:56.018667pt;}
.w1c{width:56.032000pt;}
.w2e{width:63.026667pt;}
.w1e{width:65.426667pt;}
.w1a{width:65.440000pt;}
.w21{width:65.472000pt;}
.w29{width:72.818667pt;}
.w30{width:75.058667pt;}
.w3{width:75.666667pt;}
.w13{width:77.426667pt;}
.wd{width:84.306667pt;}
.w10{width:84.466667pt;}
.w6{width:84.480000pt;}
.we{width:84.498667pt;}
.w7{width:84.512000pt;}
.w25{width:88.498667pt;}
.w11{width:91.378667pt;}
.w8{width:91.390667pt;}
.wf{width:93.792000pt;}
.w34{width:96.178667pt;}
.w12{width:100.832000pt;}
.w16{width:103.232000pt;}
.w32{width:110.590667pt;}
.w17{width:112.626667pt;}
.w18{width:112.818667pt;}
.w28{width:114.546667pt;}
.w14{width:122.230667pt;}
.w2c{width:122.240000pt;}
.w15{width:122.258667pt;}
.w2d{width:122.272000pt;}
.w23{width:134.906667pt;}
.w24{width:161.746667pt;}
.wa{width:169.453333pt;}
.wc{width:176.493333pt;}
.w2b{width:178.897333pt;}
.wb{width:178.906667pt;}
.w22{width:206.417333pt;}
.w5{width:362.626667pt;}
.w33{width:364.053333pt;}
.w9{width:526.160000pt;}
.w2{width:541.360000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x5f{left:7.360000pt;}
.x69{left:8.960000pt;}
.x74{left:10.880000pt;}
.x48{left:11.826667pt;}
.x64{left:12.800000pt;}
.x63{left:14.400000pt;}
.x5c{left:16.800000pt;}
.x52{left:18.706667pt;}
.x4a{left:20.000000pt;}
.x5e{left:21.266667pt;}
.x43{left:22.240000pt;}
.x62{left:24.026667pt;}
.x44{left:26.400000pt;}
.x68{left:27.706667pt;}
.x78{left:28.946667pt;}
.x4c{left:30.226667pt;}
.x2{left:33.110667pt;}
.x53{left:34.066667pt;}
.x6f{left:36.800000pt;}
.x42{left:38.080000pt;}
.x6c{left:40.786667pt;}
.x50{left:42.240000pt;}
.x65{left:43.840000pt;}
.x54{left:46.240000pt;}
.x76{left:69.146667pt;}
.x1{left:86.921333pt;}
.x45{left:87.841333pt;}
.x5{left:94.592000pt;}
.x6{left:96.352000pt;}
.x1a{left:98.912000pt;}
.x1d{left:100.032000pt;}
.x2a{left:103.232000pt;}
.x9{left:111.552000pt;}
.x17{left:112.832000pt;}
.xb{left:119.232000pt;}
.x3f{left:130.592000pt;}
.x59{left:132.681333pt;}
.x8{left:134.746667pt;}
.x36{left:142.586667pt;}
.x21{left:149.785000pt;}
.xc{left:155.546667pt;}
.x3e{left:162.586667pt;}
.x2c{left:166.586667pt;}
.x46{left:180.040000pt;}
.x47{left:182.426667pt;}
.x2d{left:190.586667pt;}
.x75{left:198.760000pt;}
.x28{left:200.985000pt;}
.x2b{left:209.465000pt;}
.x29{left:211.866667pt;}
.x24{left:220.185000pt;}
.x31{left:221.466667pt;}
.x3a{left:222.585000pt;}
.x25{left:225.626667pt;}
.x58{left:231.866667pt;}
.x3b{left:233.466667pt;}
.x18{left:240.026667pt;}
.x34{left:247.705000pt;}
.x5a{left:255.560000pt;}
.x35{left:258.586667pt;}
.x2e{left:262.105000pt;}
.x4d{left:265.000000pt;}
.xa{left:272.226667pt;}
.x6e{left:274.466667pt;}
.x19{left:286.626667pt;}
.x15{left:292.066667pt;}
.x38{left:295.105000pt;}
.x37{left:303.746667pt;}
.x39{left:305.986667pt;}
.x10{left:307.746667pt;}
.x33{left:313.026667pt;}
.xd{left:320.066667pt;}
.x12{left:322.466667pt;}
.x16{left:329.346667pt;}
.x71{left:331.266667pt;}
.x7d{left:340.386667pt;}
.x11{left:347.106667pt;}
.x49{left:350.146667pt;}
.x7c{left:354.626667pt;}
.x6a{left:357.666667pt;}
.x5b{left:378.466667pt;}
.x7{left:397.026667pt;}
.x2f{left:405.985000pt;}
.x30{left:416.866667pt;}
.x60{left:425.666667pt;}
.x66{left:442.826667pt;}
.x4e{left:444.586667pt;}
.x51{left:451.626667pt;}
.x72{left:454.186667pt;}
.x13{left:466.171667pt;}
.xe{left:468.571667pt;}
.x22{left:470.491667pt;}
.x14{left:471.613333pt;}
.xf{left:474.013333pt;}
.x23{left:475.933333pt;}
.x5d{left:482.506667pt;}
.x6b{left:490.026667pt;}
.x40{left:493.853333pt;}
.x70{left:520.266667pt;}
.x4b{left:529.706667pt;}
.x77{left:563.466667pt;}
.x73{left:567.466667pt;}
.x7a{left:570.491667pt;}
.x41{left:578.973333pt;}
.x7b{left:581.373333pt;}
.x3d{left:586.973333pt;}
.x1b{left:595.291667pt;}
.x26{left:598.011667pt;}
.x1c{left:600.733333pt;}
.x3c{left:602.013333pt;}
.x27{left:603.453333pt;}
.x67{left:605.226667pt;}
.x57{left:610.013333pt;}
.x4f{left:614.826667pt;}
.x3{left:631.333333pt;}
.x61{left:643.173333pt;}
.x32{left:646.053333pt;}
.x79{left:660.293333pt;}
.x55{left:670.371667pt;}
.x6d{left:678.693333pt;}
.x56{left:681.253333pt;}
.x1f{left:689.731667pt;}
.x20{left:695.173333pt;}
.x1e{left:699.493333pt;}
}




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