
    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_cbf63c7fbc408a4996f21efe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_755bfb2f1b2e835559c4bf59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_933e29c2aa32028c77c95674.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d9302510e11daa7e6e96a12b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_7bafe4b46819d17e1d15b863.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_2b839fa5b9c6fefa7f70b743.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_2831b4e7ce1be2200dd324a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_48c3efdc43be41c24ec56dca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_87c57ecea285bc6a2eced19c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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:ffd;src:url('chunks/assets/font_c9bf5e7de0d97ae7a54e644e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_163bb1772659489a7643c7c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.876465;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:fff;src:url('chunks/assets/font_5780ea6d172ae0aaebd07e56.woff2')format("woff");}.fff{font-family:fff;line-height:0.937500;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:ff10;src:url('chunks/assets/font_37c85706f5827ba1a7a6792a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937500;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:ff11;src:url('chunks/assets/font_5dcc77785287e7a977487e82.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.875977;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:ff12;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740234;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);}
.v9{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.960000px;}
.v6{vertical-align:21.600000px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:36.180000px;}
.v7{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.v2{vertical-align:52.020000px;}
.v8{vertical-align:86.400000px;}
.ls7{letter-spacing:-0.972000px;}
.ls2a{letter-spacing:-0.726000px;}
.ls3{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.498000px;}
.ls6{letter-spacing:-0.486600px;}
.ls1c{letter-spacing:-0.466800px;}
.ls29{letter-spacing:-0.423600px;}
.ls16{letter-spacing:-0.385800px;}
.ls18{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.017280px;}
.ls21{letter-spacing:0.020160px;}
.ls17{letter-spacing:0.466800px;}
.ls1d{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls15{letter-spacing:0.561600px;}
.ls5{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.731520px;}
.ls20{letter-spacing:0.732000px;}
.ls10{letter-spacing:1.740000px;}
.ls11{letter-spacing:2.115360px;}
.lsf{letter-spacing:2.388960px;}
.lsb{letter-spacing:3.600000px;}
.ls8{letter-spacing:5.040000px;}
.lse{letter-spacing:6.480000px;}
.ls13{letter-spacing:14.700960px;}
.ls2b{letter-spacing:14.866560px;}
.ls27{letter-spacing:16.306560px;}
.ls14{letter-spacing:16.741440px;}
.lsa{letter-spacing:35.038560px;}
.ls9{letter-spacing:37.906560px;}
.lsc{letter-spacing:40.798560px;}
.ls22{letter-spacing:43.678560px;}
.ls26{letter-spacing:45.106560px;}
.ls25{letter-spacing:46.546560px;}
.ls1a{letter-spacing:46.558560px;}
.ls23{letter-spacing:63.838560px;}
.ls1b{letter-spacing:79.678560px;}
.lsd{letter-spacing:81.250560px;}
.ls12{letter-spacing:86.580000px;}
.ls19{letter-spacing:114.226560px;}
.ls1f{letter-spacing:140.158560px;}
.ls1e{letter-spacing:849.336000px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws7{word-spacing:-60.094200px;}
.ws8{word-spacing:-47.905920px;}
.ws5{word-spacing:-45.178560px;}
.wsb{word-spacing:-44.074680px;}
.ws6{word-spacing:-41.760000px;}
.wse{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.586800px;}
.ws3{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.099840px;}
.wsd{word-spacing:-14.653200px;}
.ws2{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.613000px;}
.ws14{word-spacing:-13.668480px;}
.ws12{word-spacing:-13.244880px;}
.ws0{word-spacing:-13.182000px;}
.ws15{word-spacing:-9.737280px;}
.ws16{word-spacing:-8.994000px;}
.ws13{word-spacing:-0.060480px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.363120px;}
.wsa{word-spacing:48.025320px;}
.ws9{word-spacing:196.345560px;}
._f{margin-left:-4.587840px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._9{width:4.073280px;}
._7{width:5.866560px;}
._8{width:7.266240px;}
._d{width:8.285760px;}
._c{width:9.555840px;}
._a{width:11.491200px;}
._b{width:12.519360px;}
._12{width:13.807200px;}
._e{width:16.519680px;}
._16{width:17.824320px;}
._15{width:18.833280px;}
._11{width:20.079360px;}
._10{width:21.228480px;}
._13{width:26.853120px;}
._14{width:28.425600px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y175{bottom:3.240000px;}
.y1f8{bottom:5.754000px;}
.y28{bottom:5.760000px;}
.y168{bottom:12.240000px;}
.y166{bottom:17.640000px;}
.y16c{bottom:20.550000px;}
.yf1{bottom:20.880000px;}
.yd9{bottom:21.240000px;}
.ye0{bottom:21.270000px;}
.y18c{bottom:21.285000px;}
.y11c{bottom:21.600000px;}
.y11d{bottom:21.960000px;}
.y139{bottom:22.680000px;}
.yf7{bottom:23.040000px;}
.y41{bottom:23.760000px;}
.y203{bottom:24.150000px;}
.y1f7{bottom:25.554000px;}
.y27{bottom:25.560000px;}
.y116{bottom:29.880000px;}
.y11b{bottom:29.910000px;}
.y114{bottom:29.925000px;}
.y119{bottom:31.320000px;}
.yf3{bottom:38.190000px;}
.ye{bottom:43.560000px;}
.y202{bottom:43.950000px;}
.y1f6{bottom:45.354000px;}
.y26{bottom:45.360000px;}
.y118{bottom:48.600000px;}
.yf0{bottom:56.160000px;}
.y40{bottom:61.590000px;}
.y201{bottom:63.750000px;}
.y25{bottom:65.160000px;}
.y1f5{bottom:65.199000px;}
.yc{bottom:68.400000px;}
.y200{bottom:83.550000px;}
.y24{bottom:84.990000px;}
.y1f4{bottom:84.999000px;}
.ya{bottom:94.716000px;}
.y3f{bottom:99.390000px;}
.y1ff{bottom:103.350000px;}
.y23{bottom:104.790000px;}
.y1f3{bottom:105.159000px;}
.y1fe{bottom:123.150000px;}
.y1f2{bottom:124.959000px;}
.y33{bottom:131.076000px;}
.y184{bottom:131.796000px;}
.y14f{bottom:134.676000px;}
.y32{bottom:136.476000px;}
.y3e{bottom:137.190000px;}
.y22{bottom:142.590000px;}
.y1fd{bottom:143.715000px;}
.y1f1{bottom:144.759000px;}
.yc9{bottom:146.916000px;}
.y134{bottom:147.996000px;}
.y1e1{bottom:148.356000px;}
.y31{bottom:149.436000px;}
.y112{bottom:150.510000px;}
.y30{bottom:154.830000px;}
.y3d{bottom:156.990000px;}
.y164{bottom:161.310000px;}
.yc8{bottom:164.190000px;}
.y1fc{bottom:164.235000px;}
.y1f0{bottom:164.559000px;}
.ye8{bottom:165.270000px;}
.ye2{bottom:165.285000px;}
.ydb{bottom:165.300000px;}
.y5f{bottom:165.990000px;}
.y9f{bottom:166.710000px;}
.y2f{bottom:167.790000px;}
.yed{bottom:168.150000px;}
.y14e{bottom:172.470000px;}
.y2e{bottom:173.190000px;}
.y3c{bottom:176.835000px;}
.y1fb{bottom:184.035000px;}
.y1ef{bottom:184.389000px;}
.y89{bottom:185.070000px;}
.y2d{bottom:186.150000px;}
.y9e{bottom:186.510000px;}
.y1d1{bottom:187.590000px;}
.y1b2{bottom:187.950000px;}
.y111{bottom:188.310000px;}
.y2c{bottom:191.550000px;}
.y3b{bottom:196.635000px;}
.y163{bottom:199.515000px;}
.y183{bottom:200.595000px;}
.yc7{bottom:202.035000px;}
.y1fa{bottom:203.835000px;}
.y1ee{bottom:204.189000px;}
.ye7{bottom:204.195000px;}
.y2b{bottom:204.555000px;}
.y88{bottom:204.915000px;}
.y133{bottom:205.635000px;}
.y5e{bottom:205.995000px;}
.y1d0{bottom:207.435000px;}
.y1b1{bottom:207.795000px;}
.y2a{bottom:209.955000px;}
.y14d{bottom:210.315000px;}
.y3a{bottom:216.435000px;}
.yc6{bottom:221.835000px;}
.y29{bottom:222.195000px;}
.y1ed{bottom:223.989000px;}
.y87{bottom:224.715000px;}
.y9d{bottom:225.435000px;}
.y5d{bottom:225.795000px;}
.y110{bottom:226.155000px;}
.y1cf{bottom:227.235000px;}
.y1b0{bottom:227.595000px;}
.y19d{bottom:230.115000px;}
.y182{bottom:235.875000px;}
.y39{bottom:236.595000px;}
.y162{bottom:237.315000px;}
.y132{bottom:239.115000px;}
.yec{bottom:240.195000px;}
.yc5{bottom:241.635000px;}
.y86{bottom:244.515000px;}
.y1ec{bottom:244.869000px;}
.y21{bottom:245.235000px;}
.y5c{bottom:245.595000px;}
.y10f{bottom:245.955000px;}
.y14c{bottom:248.115000px;}
.y161{bottom:257.115000px;}
.yc4{bottom:261.435000px;}
.y9c{bottom:263.235000px;}
.y85{bottom:264.315000px;}
.y1eb{bottom:265.029000px;}
.y1ce{bottom:265.035000px;}
.y1af{bottom:265.395000px;}
.y10e{bottom:265.755000px;}
.y19c{bottom:267.915000px;}
.y181{bottom:271.155000px;}
.y131{bottom:274.395000px;}
.yeb{bottom:276.195000px;}
.y160{bottom:276.915000px;}
.yc3{bottom:281.235000px;}
.y9b{bottom:283.035000px;}
.y5b{bottom:283.395000px;}
.y1ea{bottom:284.829000px;}
.y1cd{bottom:284.835000px;}
.y10d{bottom:285.555000px;}
.y14b{bottom:285.915000px;}
.y19b{bottom:287.715000px;}
.yc2{bottom:301.035000px;}
.y84{bottom:302.115000px;}
.y5a{bottom:303.195000px;}
.y1e9{bottom:304.674000px;}
.y10c{bottom:305.355000px;}
.y19a{bottom:307.515000px;}
.y180{bottom:307.875000px;}
.y130{bottom:310.755000px;}
.yea{bottom:312.195000px;}
.y15f{bottom:314.715000px;}
.yc1{bottom:320.835000px;}
.y83{bottom:321.915000px;}
.y1cc{bottom:322.635000px;}
.y59{bottom:322.995000px;}
.y14a{bottom:324.105000px;}
.y1e8{bottom:324.474000px;}
.y10b{bottom:325.185000px;}
.y199{bottom:327.705000px;}
.y82{bottom:341.745000px;}
.y58{bottom:342.825000px;}
.y1e7{bottom:344.274000px;}
.y10a{bottom:345.345000px;}
.y12f{bottom:347.505000px;}
.ye9{bottom:348.225000px;}
.yc0{bottom:358.665000px;}
.y81{bottom:361.905000px;}
.y1cb{bottom:362.625000px;}
.y1e6{bottom:364.074000px;}
.y109{bottom:365.145000px;}
.y198{bottom:365.505000px;}
.y17f{bottom:368.385000px;}
.ybf{bottom:378.825000px;}
.y57{bottom:380.625000px;}
.y149{bottom:381.705000px;}
.y1ca{bottom:382.425000px;}
.y15e{bottom:383.505000px;}
.y1e5{bottom:383.874000px;}
.ye1{bottom:384.225000px;}
.ybe{bottom:398.625000px;}
.y197{bottom:398.985000px;}
.y80{bottom:399.705000px;}
.y56{bottom:400.425000px;}
.y148{bottom:401.505000px;}
.y108{bottom:402.945000px;}
.y1e4{bottom:404.754000px;}
.y17e{bottom:406.185000px;}
.y12e{bottom:407.985000px;}
.y1ae{bottom:414.465000px;}
.ybd{bottom:418.425000px;}
.y15d{bottom:418.785000px;}
.y7f{bottom:419.505000px;}
.ye6{bottom:420.225000px;}
.y55{bottom:420.585000px;}
.y1c9{bottom:421.305000px;}
.y107{bottom:422.745000px;}
.y1e3{bottom:425.634000px;}
.y196{bottom:434.265000px;}
.ybc{bottom:438.225000px;}
.y7e{bottom:439.305000px;}
.y54{bottom:440.385000px;}
.y1c8{bottom:441.105000px;}
.y106{bottom:442.545000px;}
.y17d{bottom:443.985000px;}
.y12d{bottom:445.785000px;}
.y1e2{bottom:445.824000px;}
.y20{bottom:446.145000px;}
.y1ad{bottom:449.790000px;}
.y15c{bottom:454.110000px;}
.ye5{bottom:456.270000px;}
.ybb{bottom:458.070000px;}
.y9a{bottom:459.150000px;}
.y1c7{bottom:460.950000px;}
.y105{bottom:462.390000px;}
.y195{bottom:469.590000px;}
.y147{bottom:472.830000px;}
.y7d{bottom:477.150000px;}
.y53{bottom:478.230000px;}
.y99{bottom:478.950000px;}
.y1c6{bottom:480.750000px;}
.y17c{bottom:481.830000px;}
.y104{bottom:482.190000px;}
.y12c{bottom:483.630000px;}
.y1f{bottom:483.990000px;}
.y1ac{bottom:484.710000px;}
.y15b{bottom:489.390000px;}
.ye4{bottom:492.270000px;}
.yba{bottom:495.870000px;}
.y7c{bottom:496.950000px;}
.y52{bottom:498.030000px;}
.y98{bottom:498.750000px;}
.y1c5{bottom:500.550000px;}
.y103{bottom:501.990000px;}
.y194{bottom:504.870000px;}
.y146{bottom:508.110000px;}
.yb9{bottom:515.670000px;}
.y7b{bottom:516.750000px;}
.y51{bottom:517.830000px;}
.y97{bottom:518.550000px;}
.y1ab{bottom:519.990000px;}
.y12b{bottom:521.430000px;}
.y1e{bottom:521.790000px;}
.y15a{bottom:526.110000px;}
.ye3{bottom:528.270000px;}
.yb8{bottom:535.470000px;}
.y7a{bottom:536.550000px;}
.y50{bottom:537.630000px;}
.y1c4{bottom:538.350000px;}
.y102{bottom:539.790000px;}
.y12a{bottom:541.230000px;}
.y17b{bottom:541.590000px;}
.y145{bottom:543.390000px;}
.yb7{bottom:555.270000px;}
.y96{bottom:556.350000px;}
.y1aa{bottom:556.710000px;}
.y4f{bottom:557.430000px;}
.y1c3{bottom:558.150000px;}
.y1d{bottom:559.590000px;}
.y129{bottom:561.030000px;}
.yda{bottom:564.270000px;}
.y79{bottom:574.350000px;}
.yb6{bottom:575.100000px;}
.y95{bottom:576.180000px;}
.y193{bottom:576.900000px;}
.y1c2{bottom:578.340000px;}
.y144{bottom:578.700000px;}
.y17a{bottom:579.420000px;}
.y101{bottom:579.780000px;}
.y159{bottom:586.620000px;}
.y78{bottom:594.180000px;}
.y4e{bottom:595.260000px;}
.y94{bottom:596.340000px;}
.y1b{bottom:597.420000px;}
.y1c1{bottom:598.140000px;}
.y128{bottom:598.860000px;}
.y100{bottom:599.580000px;}
.ydf{bottom:600.300000px;}
.y1c{bottom:602.820000px;}
.y179{bottom:612.900000px;}
.y143{bottom:613.980000px;}
.y77{bottom:614.340000px;}
.y4d{bottom:615.060000px;}
.y93{bottom:616.140000px;}
.y1a9{bottom:617.580000px;}
.y1c0{bottom:617.940000px;}
.yff{bottom:619.380000px;}
.y158{bottom:624.420000px;}
.y178{bottom:630.180000px;}
.y76{bottom:634.140000px;}
.y4c{bottom:634.860000px;}
.y19{bottom:635.220000px;}
.y92{bottom:635.940000px;}
.yde{bottom:636.300000px;}
.y127{bottom:637.020000px;}
.y192{bottom:637.380000px;}
.y1bf{bottom:637.740000px;}
.y1a{bottom:640.620000px;}
.y177{bottom:647.460000px;}
.y1e0{bottom:650.340000px;}
.y142{bottom:650.700000px;}
.yb5{bottom:652.860000px;}
.y1bb{bottom:653.940000px;}
.y4b{bottom:655.020000px;}
.y1a8{bottom:655.380000px;}
.y126{bottom:656.820000px;}
.yfe{bottom:657.180000px;}
.y157{bottom:662.220000px;}
.y176{bottom:664.740000px;}
.y75{bottom:671.940000px;}
.ydd{bottom:672.300000px;}
.y17{bottom:673.020000px;}
.y91{bottom:673.740000px;}
.y4a{bottom:674.820000px;}
.y191{bottom:675.180000px;}
.y1be{bottom:675.540000px;}
.y125{bottom:676.620000px;}
.yfd{bottom:676.980000px;}
.y18{bottom:678.420000px;}
.y174{bottom:683.460000px;}
.y1df{bottom:688.140000px;}
.yb4{bottom:690.660000px;}
.y74{bottom:691.740000px;}
.y1a7{bottom:693.180000px;}
.y90{bottom:693.540000px;}
.y49{bottom:694.620000px;}
.y124{bottom:696.420000px;}
.yfc{bottom:696.780000px;}
.y156{bottom:700.020000px;}
.y1de{bottom:707.970000px;}
.ydc{bottom:708.330000px;}
.yb3{bottom:710.490000px;}
.y15{bottom:710.850000px;}
.y141{bottom:711.210000px;}
.y73{bottom:711.570000px;}
.y190{bottom:713.010000px;}
.y8f{bottom:713.370000px;}
.y16{bottom:716.250000px;}
.yfb{bottom:716.610000px;}
.y155{bottom:719.850000px;}
.y173{bottom:725.970000px;}
.y1dd{bottom:727.770000px;}
.yb2{bottom:730.290000px;}
.y72{bottom:731.370000px;}
.y48{bottom:732.450000px;}
.y18f{bottom:732.810000px;}
.y8e{bottom:733.170000px;}
.y123{bottom:736.050000px;}
.yfa{bottom:736.410000px;}
.y154{bottom:740.010000px;}
.yd8{bottom:744.330000px;}
.y1dc{bottom:747.570000px;}
.y13{bottom:748.650000px;}
.y140{bottom:749.010000px;}
.yb1{bottom:750.090000px;}
.y1ba{bottom:751.170000px;}
.y47{bottom:752.250000px;}
.y18e{bottom:752.610000px;}
.y14{bottom:754.050000px;}
.y122{bottom:755.850000px;}
.yf9{bottom:756.210000px;}
.y153{bottom:759.810000px;}
.y172{bottom:763.770000px;}
.y1db{bottom:767.370000px;}
.y71{bottom:769.170000px;}
.yb0{bottom:769.890000px;}
.y8d{bottom:770.970000px;}
.y46{bottom:772.050000px;}
.y1a6{bottom:772.410000px;}
.y171{bottom:783.570000px;}
.y13f{bottom:786.810000px;}
.y1da{bottom:787.170000px;}
.y70{bottom:788.970000px;}
.yaf{bottom:789.690000px;}
.y12{bottom:790.050000px;}
.y18d{bottom:790.410000px;}
.y1b9{bottom:790.770000px;}
.y45{bottom:791.850000px;}
.y121{bottom:793.650000px;}
.yf8{bottom:794.010000px;}
.y152{bottom:797.610000px;}
.yd7{bottom:803.730000px;}
.y13e{bottom:806.610000px;}
.y6f{bottom:808.770000px;}
.yae{bottom:809.490000px;}
.y1a5{bottom:810.210000px;}
.y1b8{bottom:810.570000px;}
.y44{bottom:811.650000px;}
.y120{bottom:813.450000px;}
.y170{bottom:821.370000px;}
.y18b{bottom:823.890000px;}
.y1d9{bottom:824.970000px;}
.y13d{bottom:826.410000px;}
.yf6{bottom:827.175000px;}
.y6e{bottom:828.615000px;}
.y1b7{bottom:830.415000px;}
.y151{bottom:831.135000px;}
.y43{bottom:831.495000px;}
.y11f{bottom:833.295000px;}
.y11{bottom:839.775000px;}
.yd6{bottom:840.495000px;}
.y16f{bottom:841.215000px;}
.y1a4{bottom:843.735000px;}
.y1d8{bottom:844.815000px;}
.yad{bottom:847.695000px;}
.y8c{bottom:848.415000px;}
.y11e{bottom:853.455000px;}
.y18a{bottom:859.215000px;}
.y16e{bottom:861.015000px;}
.y13c{bottom:864.615000px;}
.yf5{bottom:864.975000px;}
.y6d{bottom:866.415000px;}
.yd5{bottom:866.775000px;}
.yac{bottom:867.495000px;}
.y8b{bottom:868.575000px;}
.y42{bottom:869.295000px;}
.y1a3{bottom:879.015000px;}
.y1d7{bottom:884.415000px;}
.y10{bottom:886.215000px;}
.y6c{bottom:886.575000px;}
.yab{bottom:887.295000px;}
.y1b6{bottom:888.375000px;}
.yd4{bottom:891.615000px;}
.y189{bottom:894.495000px;}
.y13b{bottom:898.095000px;}
.y16d{bottom:899.175000px;}
.yf4{bottom:900.975000px;}
.yd3{bottom:901.695000px;}
.y38{bottom:903.855000px;}
.y1d6{bottom:904.575000px;}
.yf{bottom:906.015000px;}
.y6b{bottom:906.375000px;}
.y204{bottom:906.735000px;}
.yaa{bottom:907.095000px;}
.y1b5{bottom:908.175000px;}
.y1a2{bottom:914.295000px;}
.y11a{bottom:922.935000px;}
.y1d5{bottom:924.375000px;}
.y6a{bottom:926.175000px;}
.ya9{bottom:926.895000px;}
.y1b4{bottom:927.975000px;}
.y188{bottom:929.775000px;}
.y16b{bottom:932.655000px;}
.y13a{bottom:933.375000px;}
.yf2{bottom:936.975000px;}
.y1f9{bottom:938.775000px;}
.yd2{bottom:939.855000px;}
.y9{bottom:941.295000px;}
.y1d4{bottom:944.175000px;}
.y69{bottom:945.975000px;}
.ya8{bottom:946.695000px;}
.y1b3{bottom:947.775000px;}
.y1a1{bottom:949.575000px;}
.y8{bottom:958.605000px;}
.y1d3{bottom:964.005000px;}
.y68{bottom:965.805000px;}
.yd1{bottom:966.165000px;}
.y187{bottom:966.525000px;}
.y117{bottom:966.885000px;}
.y16a{bottom:967.245000px;}
.y138{bottom:968.685000px;}
.y150{bottom:972.285000px;}
.y7{bottom:972.645000px;}
.y1d2{bottom:983.805000px;}
.ya7{bottom:984.525000px;}
.y8a{bottom:985.605000px;}
.y1a0{bottom:986.325000px;}
.yef{bottom:989.925000px;}
.yd0{bottom:992.445000px;}
.y169{bottom:993.525000px;}
.y67{bottom:1003.605000px;}
.ya6{bottom:1004.325000px;}
.y1bd{bottom:1005.405000px;}
.y137{bottom:1007.205000px;}
.ycf{bottom:1018.725000px;}
.y167{bottom:1019.805000px;}
.y66{bottom:1023.405000px;}
.ya5{bottom:1024.125000px;}
.y1bc{bottom:1025.205000px;}
.y186{bottom:1027.005000px;}
.y6{bottom:1027.365000px;}
.y115{bottom:1029.525000px;}
.y65{bottom:1043.205000px;}
.ya4{bottom:1043.925000px;}
.y136{bottom:1044.285000px;}
.yce{bottom:1045.005000px;}
.y19f{bottom:1046.805000px;}
.y165{bottom:1047.525000px;}
.y5{bottom:1052.205000px;}
.y64{bottom:1063.005000px;}
.ya3{bottom:1064.085000px;}
.y185{bottom:1064.805000px;}
.ycd{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y113{bottom:1074.165000px;}
.ycc{bottom:1075.605000px;}
.y63{bottom:1082.850000px;}
.ya2{bottom:1083.930000px;}
.yee{bottom:1085.010000px;}
.y3{bottom:1094.010000px;}
.y62{bottom:1103.010000px;}
.y135{bottom:1104.810000px;}
.ycb{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.ya1{bottom:1121.730000px;}
.y61{bottom:1122.810000px;}
.yca{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.ya0{bottom:1141.530000px;}
.y19e{bottom:1142.250000px;}
.y60{bottom:1142.610000px;}
.y37{bottom:1166.370000px;}
.y36{bottom:1180.410000px;}
.y35{bottom:1201.290000px;}
.y34{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h2a{height:17.280000px;}
.h29{height:17.316000px;}
.h27{height:26.280000px;}
.ha{height:28.115859px;}
.h26{height:31.716000px;}
.h28{height:34.596000px;}
.h25{height:34.920000px;}
.h23{height:34.956000px;}
.h16{height:35.280000px;}
.h18{height:35.316000px;}
.h20{height:36.000000px;}
.h22{height:36.360000px;}
.h1c{height:37.080000px;}
.h24{height:38.520000px;}
.hc{height:38.671172px;}
.h7{height:39.570469px;}
.h5{height:39.997969px;}
.h4{height:43.735781px;}
.h1e{height:43.920000px;}
.h1d{height:43.956000px;}
.h10{height:44.031094px;}
.h21{height:44.208281px;}
.h2{height:44.828437px;}
.hf{height:46.305000px;}
.h2c{height:49.715859px;}
.h2d{height:50.019609px;}
.h1b{height:52.236000px;}
.h3{height:53.367188px;}
.hd{height:60.155156px;}
.h1f{height:62.640000px;}
.h1a{height:70.200000px;}
.h9{height:71.512031px;}
.h12{height:73.975781px;}
.h11{height:82.359844px;}
.h15{height:91.290937px;}
.h13{height:102.874219px;}
.h14{height:137.370937px;}
.hb{height:174.630000px;}
.h19{height:179.310000px;}
.h17{height:179.355000px;}
.h2e{height:217.875000px;}
.he{height:250.635000px;}
.h2b{height:477.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:52.200000px;}
.wd{width:63.036000px;}
.w14{width:70.956000px;}
.wb{width:73.116000px;}
.we{width:84.636000px;}
.w2e{width:94.716000px;}
.w2d{width:102.636000px;}
.w17{width:106.596000px;}
.w13{width:116.352000px;}
.w12{width:119.556000px;}
.wf{width:120.312000px;}
.w2f{width:126.072000px;}
.w9{width:134.352000px;}
.w2a{width:135.036000px;}
.w2b{width:135.072000px;}
.w10{width:138.996000px;}
.w11{width:139.032000px;}
.w29{width:148.392000px;}
.w1d{width:156.675000px;}
.w20{width:157.395000px;}
.w1e{width:193.035000px;}
.w21{width:193.755000px;}
.w1a{width:220.395000px;}
.w16{width:221.505000px;}
.w19{width:225.825000px;}
.w27{width:226.515000px;}
.w24{width:226.545000px;}
.w23{width:226.875000px;}
.w22{width:226.905000px;}
.w25{width:227.235000px;}
.w26{width:227.265000px;}
.w1b{width:237.705000px;}
.w28{width:262.185000px;}
.wa{width:267.945000px;}
.w15{width:268.665000px;}
.w1c{width:330.630000px;}
.w1f{width:332.070000px;}
.w8{width:339.270000px;}
.w18{width:339.630000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w2c{width:357.270000px;}
.w6{width:679.965000px;}
.w30{width:680.325000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2f{left:7.560000px;}
.x9{left:8.640000px;}
.x2c{left:14.400000px;}
.x31{left:18.360000px;}
.x2a{left:21.240000px;}
.x32{left:24.150000px;}
.x35{left:25.200000px;}
.x30{left:28.800000px;}
.x25{left:30.996000px;}
.x33{left:32.760000px;}
.x2e{left:34.560000px;}
.x3d{left:42.480000px;}
.x41{left:45.030000px;}
.x40{left:48.645000px;}
.x34{left:50.079000px;}
.x61{left:54.750000px;}
.x62{left:56.550000px;}
.x51{left:59.040000px;}
.x63{left:60.150000px;}
.x3f{left:61.590000px;}
.x39{left:62.685000px;}
.x3b{left:64.830000px;}
.x52{left:67.350000px;}
.x54{left:70.950000px;}
.x46{left:75.990000px;}
.x5c{left:79.230000px;}
.x47{left:81.765000px;}
.x53{left:83.190000px;}
.x44{left:84.279000px;}
.x58{left:85.350000px;}
.x37{left:87.879000px;}
.x67{left:89.319000px;}
.x4c{left:97.239000px;}
.x49{left:99.030000px;}
.x4a{left:100.119000px;}
.x48{left:101.919000px;}
.x5b{left:104.115000px;}
.x7{left:106.235987px;}
.x4d{left:107.685000px;}
.x4b{left:109.515000px;}
.x19{left:111.275987px;}
.x27{left:113.445000px;}
.x36{left:125.676000px;}
.xb{left:128.915987px;}
.x1e{left:133.271987px;}
.x4e{left:136.509000px;}
.x20{left:138.311987px;}
.x1c{left:142.991987px;}
.x55{left:149.469000px;}
.x1f{left:160.274987px;}
.x1d{left:169.994987px;}
.x42{left:177.195000px;}
.x1a{left:180.794987px;}
.x5d{left:187.274987px;}
.x21{left:239.144987px;}
.x26{left:242.025000px;}
.x38{left:246.705000px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.x18{left:322.349987px;}
.x22{left:327.389987px;}
.x45{left:332.070000px;}
.x59{left:333.150000px;}
.x10{left:334.229987px;}
.x14{left:340.709987px;}
.xd{left:344.309987px;}
.x13{left:345.389987px;}
.x5{left:355.829987px;}
.x17{left:362.309987px;}
.x5e{left:368.430000px;}
.x4{left:379.949987px;}
.x3a{left:386.790000px;}
.x3{left:398.339987px;}
.xc{left:406.619987px;}
.x4f{left:436.860000px;}
.x56{left:438.300000px;}
.x8{left:446.579987px;}
.x1b{left:447.660000px;}
.x23{left:458.099987px;}
.x64{left:463.500000px;}
.x28{left:510.690000px;}
.x5f{left:516.810000px;}
.x3c{left:526.530000px;}
.xe{left:543.449973px;}
.x24{left:545.249987px;}
.x15{left:547.409973px;}
.xf{left:548.489987px;}
.x16{left:552.449987px;}
.x11{left:553.529973px;}
.x12{left:558.569987px;}
.x5a{left:560.010000px;}
.x65{left:566.130000px;}
.x29{left:584.535000px;}
.x50{left:593.535000px;}
.x57{left:595.695000px;}
.x2b{left:637.455000px;}
.x3e{left:646.815000px;}
.x60{left:651.855000px;}
.x66{left:660.855000px;}
.x43{left:667.365000px;}
.x2d{left:701.565000px;}
.x1{left:786.929987px;}
@media print{
.v9{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.520000pt;}
.v6{vertical-align:19.200000pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:32.160000pt;}
.v7{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.v2{vertical-align:46.240000pt;}
.v8{vertical-align:76.800000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls2a{letter-spacing:-0.645333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls1c{letter-spacing:-0.414933pt;}
.ls29{letter-spacing:-0.376533pt;}
.ls16{letter-spacing:-0.342933pt;}
.ls18{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.015360pt;}
.ls21{letter-spacing:0.017920pt;}
.ls17{letter-spacing:0.414933pt;}
.ls1d{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls15{letter-spacing:0.499200pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650240pt;}
.ls20{letter-spacing:0.650667pt;}
.ls10{letter-spacing:1.546667pt;}
.ls11{letter-spacing:1.880320pt;}
.lsf{letter-spacing:2.123520pt;}
.lsb{letter-spacing:3.200000pt;}
.ls8{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.760000pt;}
.ls13{letter-spacing:13.067520pt;}
.ls2b{letter-spacing:13.214720pt;}
.ls27{letter-spacing:14.494720pt;}
.ls14{letter-spacing:14.881280pt;}
.lsa{letter-spacing:31.145387pt;}
.ls9{letter-spacing:33.694720pt;}
.lsc{letter-spacing:36.265387pt;}
.ls22{letter-spacing:38.825387pt;}
.ls26{letter-spacing:40.094720pt;}
.ls25{letter-spacing:41.374720pt;}
.ls1a{letter-spacing:41.385387pt;}
.ls23{letter-spacing:56.745387pt;}
.ls1b{letter-spacing:70.825387pt;}
.lsd{letter-spacing:72.222720pt;}
.ls12{letter-spacing:76.960000pt;}
.ls19{letter-spacing:101.534720pt;}
.ls1f{letter-spacing:124.585387pt;}
.ls1e{letter-spacing:754.965333pt;}
.ws4{word-spacing:-53.760000pt;}
.ws7{word-spacing:-53.417067pt;}
.ws8{word-spacing:-42.583040pt;}
.ws5{word-spacing:-40.158720pt;}
.wsb{word-spacing:-39.177493pt;}
.ws6{word-spacing:-37.120000pt;}
.wse{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.854933pt;}
.ws3{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.025067pt;}
.ws2{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.989333pt;}
.ws14{word-spacing:-12.149760pt;}
.ws12{word-spacing:-11.773227pt;}
.ws0{word-spacing:-11.717333pt;}
.ws15{word-spacing:-8.655360pt;}
.ws16{word-spacing:-7.994667pt;}
.ws13{word-spacing:-0.053760pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.322773pt;}
.wsa{word-spacing:42.689173pt;}
.ws9{word-spacing:174.529387pt;}
._f{margin-left:-4.078080pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._9{width:3.620693pt;}
._7{width:5.214720pt;}
._8{width:6.458880pt;}
._d{width:7.365120pt;}
._c{width:8.494080pt;}
._a{width:10.214400pt;}
._b{width:11.128320pt;}
._12{width:12.273067pt;}
._e{width:14.684160pt;}
._16{width:15.843840pt;}
._15{width:16.740693pt;}
._11{width:17.848320pt;}
._10{width:18.869760pt;}
._13{width:23.869440pt;}
._14{width:25.267200pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y175{bottom:2.880000pt;}
.y1f8{bottom:5.114667pt;}
.y28{bottom:5.120000pt;}
.y168{bottom:10.880000pt;}
.y166{bottom:15.680000pt;}
.y16c{bottom:18.266667pt;}
.yf1{bottom:18.560000pt;}
.yd9{bottom:18.880000pt;}
.ye0{bottom:18.906667pt;}
.y18c{bottom:18.920000pt;}
.y11c{bottom:19.200000pt;}
.y11d{bottom:19.520000pt;}
.y139{bottom:20.160000pt;}
.yf7{bottom:20.480000pt;}
.y41{bottom:21.120000pt;}
.y203{bottom:21.466667pt;}
.y1f7{bottom:22.714667pt;}
.y27{bottom:22.720000pt;}
.y116{bottom:26.560000pt;}
.y11b{bottom:26.586667pt;}
.y114{bottom:26.600000pt;}
.y119{bottom:27.840000pt;}
.yf3{bottom:33.946667pt;}
.ye{bottom:38.720000pt;}
.y202{bottom:39.066667pt;}
.y1f6{bottom:40.314667pt;}
.y26{bottom:40.320000pt;}
.y118{bottom:43.200000pt;}
.yf0{bottom:49.920000pt;}
.y40{bottom:54.746667pt;}
.y201{bottom:56.666667pt;}
.y25{bottom:57.920000pt;}
.y1f5{bottom:57.954667pt;}
.yc{bottom:60.800000pt;}
.y200{bottom:74.266667pt;}
.y24{bottom:75.546667pt;}
.y1f4{bottom:75.554667pt;}
.ya{bottom:84.192000pt;}
.y3f{bottom:88.346667pt;}
.y1ff{bottom:91.866667pt;}
.y23{bottom:93.146667pt;}
.y1f3{bottom:93.474667pt;}
.y1fe{bottom:109.466667pt;}
.y1f2{bottom:111.074667pt;}
.y33{bottom:116.512000pt;}
.y184{bottom:117.152000pt;}
.y14f{bottom:119.712000pt;}
.y32{bottom:121.312000pt;}
.y3e{bottom:121.946667pt;}
.y22{bottom:126.746667pt;}
.y1fd{bottom:127.746667pt;}
.y1f1{bottom:128.674667pt;}
.yc9{bottom:130.592000pt;}
.y134{bottom:131.552000pt;}
.y1e1{bottom:131.872000pt;}
.y31{bottom:132.832000pt;}
.y112{bottom:133.786667pt;}
.y30{bottom:137.626667pt;}
.y3d{bottom:139.546667pt;}
.y164{bottom:143.386667pt;}
.yc8{bottom:145.946667pt;}
.y1fc{bottom:145.986667pt;}
.y1f0{bottom:146.274667pt;}
.ye8{bottom:146.906667pt;}
.ye2{bottom:146.920000pt;}
.ydb{bottom:146.933333pt;}
.y5f{bottom:147.546667pt;}
.y9f{bottom:148.186667pt;}
.y2f{bottom:149.146667pt;}
.yed{bottom:149.466667pt;}
.y14e{bottom:153.306667pt;}
.y2e{bottom:153.946667pt;}
.y3c{bottom:157.186667pt;}
.y1fb{bottom:163.586667pt;}
.y1ef{bottom:163.901333pt;}
.y89{bottom:164.506667pt;}
.y2d{bottom:165.466667pt;}
.y9e{bottom:165.786667pt;}
.y1d1{bottom:166.746667pt;}
.y1b2{bottom:167.066667pt;}
.y111{bottom:167.386667pt;}
.y2c{bottom:170.266667pt;}
.y3b{bottom:174.786667pt;}
.y163{bottom:177.346667pt;}
.y183{bottom:178.306667pt;}
.yc7{bottom:179.586667pt;}
.y1fa{bottom:181.186667pt;}
.y1ee{bottom:181.501333pt;}
.ye7{bottom:181.506667pt;}
.y2b{bottom:181.826667pt;}
.y88{bottom:182.146667pt;}
.y133{bottom:182.786667pt;}
.y5e{bottom:183.106667pt;}
.y1d0{bottom:184.386667pt;}
.y1b1{bottom:184.706667pt;}
.y2a{bottom:186.626667pt;}
.y14d{bottom:186.946667pt;}
.y3a{bottom:192.386667pt;}
.yc6{bottom:197.186667pt;}
.y29{bottom:197.506667pt;}
.y1ed{bottom:199.101333pt;}
.y87{bottom:199.746667pt;}
.y9d{bottom:200.386667pt;}
.y5d{bottom:200.706667pt;}
.y110{bottom:201.026667pt;}
.y1cf{bottom:201.986667pt;}
.y1b0{bottom:202.306667pt;}
.y19d{bottom:204.546667pt;}
.y182{bottom:209.666667pt;}
.y39{bottom:210.306667pt;}
.y162{bottom:210.946667pt;}
.y132{bottom:212.546667pt;}
.yec{bottom:213.506667pt;}
.yc5{bottom:214.786667pt;}
.y86{bottom:217.346667pt;}
.y1ec{bottom:217.661333pt;}
.y21{bottom:217.986667pt;}
.y5c{bottom:218.306667pt;}
.y10f{bottom:218.626667pt;}
.y14c{bottom:220.546667pt;}
.y161{bottom:228.546667pt;}
.yc4{bottom:232.386667pt;}
.y9c{bottom:233.986667pt;}
.y85{bottom:234.946667pt;}
.y1eb{bottom:235.581333pt;}
.y1ce{bottom:235.586667pt;}
.y1af{bottom:235.906667pt;}
.y10e{bottom:236.226667pt;}
.y19c{bottom:238.146667pt;}
.y181{bottom:241.026667pt;}
.y131{bottom:243.906667pt;}
.yeb{bottom:245.506667pt;}
.y160{bottom:246.146667pt;}
.yc3{bottom:249.986667pt;}
.y9b{bottom:251.586667pt;}
.y5b{bottom:251.906667pt;}
.y1ea{bottom:253.181333pt;}
.y1cd{bottom:253.186667pt;}
.y10d{bottom:253.826667pt;}
.y14b{bottom:254.146667pt;}
.y19b{bottom:255.746667pt;}
.yc2{bottom:267.586667pt;}
.y84{bottom:268.546667pt;}
.y5a{bottom:269.506667pt;}
.y1e9{bottom:270.821333pt;}
.y10c{bottom:271.426667pt;}
.y19a{bottom:273.346667pt;}
.y180{bottom:273.666667pt;}
.y130{bottom:276.226667pt;}
.yea{bottom:277.506667pt;}
.y15f{bottom:279.746667pt;}
.yc1{bottom:285.186667pt;}
.y83{bottom:286.146667pt;}
.y1cc{bottom:286.786667pt;}
.y59{bottom:287.106667pt;}
.y14a{bottom:288.093333pt;}
.y1e8{bottom:288.421333pt;}
.y10b{bottom:289.053333pt;}
.y199{bottom:291.293333pt;}
.y82{bottom:303.773333pt;}
.y58{bottom:304.733333pt;}
.y1e7{bottom:306.021333pt;}
.y10a{bottom:306.973333pt;}
.y12f{bottom:308.893333pt;}
.ye9{bottom:309.533333pt;}
.yc0{bottom:318.813333pt;}
.y81{bottom:321.693333pt;}
.y1cb{bottom:322.333333pt;}
.y1e6{bottom:323.621333pt;}
.y109{bottom:324.573333pt;}
.y198{bottom:324.893333pt;}
.y17f{bottom:327.453333pt;}
.ybf{bottom:336.733333pt;}
.y57{bottom:338.333333pt;}
.y149{bottom:339.293333pt;}
.y1ca{bottom:339.933333pt;}
.y15e{bottom:340.893333pt;}
.y1e5{bottom:341.221333pt;}
.ye1{bottom:341.533333pt;}
.ybe{bottom:354.333333pt;}
.y197{bottom:354.653333pt;}
.y80{bottom:355.293333pt;}
.y56{bottom:355.933333pt;}
.y148{bottom:356.893333pt;}
.y108{bottom:358.173333pt;}
.y1e4{bottom:359.781333pt;}
.y17e{bottom:361.053333pt;}
.y12e{bottom:362.653333pt;}
.y1ae{bottom:368.413333pt;}
.ybd{bottom:371.933333pt;}
.y15d{bottom:372.253333pt;}
.y7f{bottom:372.893333pt;}
.ye6{bottom:373.533333pt;}
.y55{bottom:373.853333pt;}
.y1c9{bottom:374.493333pt;}
.y107{bottom:375.773333pt;}
.y1e3{bottom:378.341333pt;}
.y196{bottom:386.013333pt;}
.ybc{bottom:389.533333pt;}
.y7e{bottom:390.493333pt;}
.y54{bottom:391.453333pt;}
.y1c8{bottom:392.093333pt;}
.y106{bottom:393.373333pt;}
.y17d{bottom:394.653333pt;}
.y12d{bottom:396.253333pt;}
.y1e2{bottom:396.288000pt;}
.y20{bottom:396.573333pt;}
.y1ad{bottom:399.813333pt;}
.y15c{bottom:403.653333pt;}
.ye5{bottom:405.573333pt;}
.ybb{bottom:407.173333pt;}
.y9a{bottom:408.133333pt;}
.y1c7{bottom:409.733333pt;}
.y105{bottom:411.013333pt;}
.y195{bottom:417.413333pt;}
.y147{bottom:420.293333pt;}
.y7d{bottom:424.133333pt;}
.y53{bottom:425.093333pt;}
.y99{bottom:425.733333pt;}
.y1c6{bottom:427.333333pt;}
.y17c{bottom:428.293333pt;}
.y104{bottom:428.613333pt;}
.y12c{bottom:429.893333pt;}
.y1f{bottom:430.213333pt;}
.y1ac{bottom:430.853333pt;}
.y15b{bottom:435.013333pt;}
.ye4{bottom:437.573333pt;}
.yba{bottom:440.773333pt;}
.y7c{bottom:441.733333pt;}
.y52{bottom:442.693333pt;}
.y98{bottom:443.333333pt;}
.y1c5{bottom:444.933333pt;}
.y103{bottom:446.213333pt;}
.y194{bottom:448.773333pt;}
.y146{bottom:451.653333pt;}
.yb9{bottom:458.373333pt;}
.y7b{bottom:459.333333pt;}
.y51{bottom:460.293333pt;}
.y97{bottom:460.933333pt;}
.y1ab{bottom:462.213333pt;}
.y12b{bottom:463.493333pt;}
.y1e{bottom:463.813333pt;}
.y15a{bottom:467.653333pt;}
.ye3{bottom:469.573333pt;}
.yb8{bottom:475.973333pt;}
.y7a{bottom:476.933333pt;}
.y50{bottom:477.893333pt;}
.y1c4{bottom:478.533333pt;}
.y102{bottom:479.813333pt;}
.y12a{bottom:481.093333pt;}
.y17b{bottom:481.413333pt;}
.y145{bottom:483.013333pt;}
.yb7{bottom:493.573333pt;}
.y96{bottom:494.533333pt;}
.y1aa{bottom:494.853333pt;}
.y4f{bottom:495.493333pt;}
.y1c3{bottom:496.133333pt;}
.y1d{bottom:497.413333pt;}
.y129{bottom:498.693333pt;}
.yda{bottom:501.573333pt;}
.y79{bottom:510.533333pt;}
.yb6{bottom:511.200000pt;}
.y95{bottom:512.160000pt;}
.y193{bottom:512.800000pt;}
.y1c2{bottom:514.080000pt;}
.y144{bottom:514.400000pt;}
.y17a{bottom:515.040000pt;}
.y101{bottom:515.360000pt;}
.y159{bottom:521.440000pt;}
.y78{bottom:528.160000pt;}
.y4e{bottom:529.120000pt;}
.y94{bottom:530.080000pt;}
.y1b{bottom:531.040000pt;}
.y1c1{bottom:531.680000pt;}
.y128{bottom:532.320000pt;}
.y100{bottom:532.960000pt;}
.ydf{bottom:533.600000pt;}
.y1c{bottom:535.840000pt;}
.y179{bottom:544.800000pt;}
.y143{bottom:545.760000pt;}
.y77{bottom:546.080000pt;}
.y4d{bottom:546.720000pt;}
.y93{bottom:547.680000pt;}
.y1a9{bottom:548.960000pt;}
.y1c0{bottom:549.280000pt;}
.yff{bottom:550.560000pt;}
.y158{bottom:555.040000pt;}
.y178{bottom:560.160000pt;}
.y76{bottom:563.680000pt;}
.y4c{bottom:564.320000pt;}
.y19{bottom:564.640000pt;}
.y92{bottom:565.280000pt;}
.yde{bottom:565.600000pt;}
.y127{bottom:566.240000pt;}
.y192{bottom:566.560000pt;}
.y1bf{bottom:566.880000pt;}
.y1a{bottom:569.440000pt;}
.y177{bottom:575.520000pt;}
.y1e0{bottom:578.080000pt;}
.y142{bottom:578.400000pt;}
.yb5{bottom:580.320000pt;}
.y1bb{bottom:581.280000pt;}
.y4b{bottom:582.240000pt;}
.y1a8{bottom:582.560000pt;}
.y126{bottom:583.840000pt;}
.yfe{bottom:584.160000pt;}
.y157{bottom:588.640000pt;}
.y176{bottom:590.880000pt;}
.y75{bottom:597.280000pt;}
.ydd{bottom:597.600000pt;}
.y17{bottom:598.240000pt;}
.y91{bottom:598.880000pt;}
.y4a{bottom:599.840000pt;}
.y191{bottom:600.160000pt;}
.y1be{bottom:600.480000pt;}
.y125{bottom:601.440000pt;}
.yfd{bottom:601.760000pt;}
.y18{bottom:603.040000pt;}
.y174{bottom:607.520000pt;}
.y1df{bottom:611.680000pt;}
.yb4{bottom:613.920000pt;}
.y74{bottom:614.880000pt;}
.y1a7{bottom:616.160000pt;}
.y90{bottom:616.480000pt;}
.y49{bottom:617.440000pt;}
.y124{bottom:619.040000pt;}
.yfc{bottom:619.360000pt;}
.y156{bottom:622.240000pt;}
.y1de{bottom:629.306667pt;}
.ydc{bottom:629.626667pt;}
.yb3{bottom:631.546667pt;}
.y15{bottom:631.866667pt;}
.y141{bottom:632.186667pt;}
.y73{bottom:632.506667pt;}
.y190{bottom:633.786667pt;}
.y8f{bottom:634.106667pt;}
.y16{bottom:636.666667pt;}
.yfb{bottom:636.986667pt;}
.y155{bottom:639.866667pt;}
.y173{bottom:645.306667pt;}
.y1dd{bottom:646.906667pt;}
.yb2{bottom:649.146667pt;}
.y72{bottom:650.106667pt;}
.y48{bottom:651.066667pt;}
.y18f{bottom:651.386667pt;}
.y8e{bottom:651.706667pt;}
.y123{bottom:654.266667pt;}
.yfa{bottom:654.586667pt;}
.y154{bottom:657.786667pt;}
.yd8{bottom:661.626667pt;}
.y1dc{bottom:664.506667pt;}
.y13{bottom:665.466667pt;}
.y140{bottom:665.786667pt;}
.yb1{bottom:666.746667pt;}
.y1ba{bottom:667.706667pt;}
.y47{bottom:668.666667pt;}
.y18e{bottom:668.986667pt;}
.y14{bottom:670.266667pt;}
.y122{bottom:671.866667pt;}
.yf9{bottom:672.186667pt;}
.y153{bottom:675.386667pt;}
.y172{bottom:678.906667pt;}
.y1db{bottom:682.106667pt;}
.y71{bottom:683.706667pt;}
.yb0{bottom:684.346667pt;}
.y8d{bottom:685.306667pt;}
.y46{bottom:686.266667pt;}
.y1a6{bottom:686.586667pt;}
.y171{bottom:696.506667pt;}
.y13f{bottom:699.386667pt;}
.y1da{bottom:699.706667pt;}
.y70{bottom:701.306667pt;}
.yaf{bottom:701.946667pt;}
.y12{bottom:702.266667pt;}
.y18d{bottom:702.586667pt;}
.y1b9{bottom:702.906667pt;}
.y45{bottom:703.866667pt;}
.y121{bottom:705.466667pt;}
.yf8{bottom:705.786667pt;}
.y152{bottom:708.986667pt;}
.yd7{bottom:714.426667pt;}
.y13e{bottom:716.986667pt;}
.y6f{bottom:718.906667pt;}
.yae{bottom:719.546667pt;}
.y1a5{bottom:720.186667pt;}
.y1b8{bottom:720.506667pt;}
.y44{bottom:721.466667pt;}
.y120{bottom:723.066667pt;}
.y170{bottom:730.106667pt;}
.y18b{bottom:732.346667pt;}
.y1d9{bottom:733.306667pt;}
.y13d{bottom:734.586667pt;}
.yf6{bottom:735.266667pt;}
.y6e{bottom:736.546667pt;}
.y1b7{bottom:738.146667pt;}
.y151{bottom:738.786667pt;}
.y43{bottom:739.106667pt;}
.y11f{bottom:740.706667pt;}
.y11{bottom:746.466667pt;}
.yd6{bottom:747.106667pt;}
.y16f{bottom:747.746667pt;}
.y1a4{bottom:749.986667pt;}
.y1d8{bottom:750.946667pt;}
.yad{bottom:753.506667pt;}
.y8c{bottom:754.146667pt;}
.y11e{bottom:758.626667pt;}
.y18a{bottom:763.746667pt;}
.y16e{bottom:765.346667pt;}
.y13c{bottom:768.546667pt;}
.yf5{bottom:768.866667pt;}
.y6d{bottom:770.146667pt;}
.yd5{bottom:770.466667pt;}
.yac{bottom:771.106667pt;}
.y8b{bottom:772.066667pt;}
.y42{bottom:772.706667pt;}
.y1a3{bottom:781.346667pt;}
.y1d7{bottom:786.146667pt;}
.y10{bottom:787.746667pt;}
.y6c{bottom:788.066667pt;}
.yab{bottom:788.706667pt;}
.y1b6{bottom:789.666667pt;}
.yd4{bottom:792.546667pt;}
.y189{bottom:795.106667pt;}
.y13b{bottom:798.306667pt;}
.y16d{bottom:799.266667pt;}
.yf4{bottom:800.866667pt;}
.yd3{bottom:801.506667pt;}
.y38{bottom:803.426667pt;}
.y1d6{bottom:804.066667pt;}
.yf{bottom:805.346667pt;}
.y6b{bottom:805.666667pt;}
.y204{bottom:805.986667pt;}
.yaa{bottom:806.306667pt;}
.y1b5{bottom:807.266667pt;}
.y1a2{bottom:812.706667pt;}
.y11a{bottom:820.386667pt;}
.y1d5{bottom:821.666667pt;}
.y6a{bottom:823.266667pt;}
.ya9{bottom:823.906667pt;}
.y1b4{bottom:824.866667pt;}
.y188{bottom:826.466667pt;}
.y16b{bottom:829.026667pt;}
.y13a{bottom:829.666667pt;}
.yf2{bottom:832.866667pt;}
.y1f9{bottom:834.466667pt;}
.yd2{bottom:835.426667pt;}
.y9{bottom:836.706667pt;}
.y1d4{bottom:839.266667pt;}
.y69{bottom:840.866667pt;}
.ya8{bottom:841.506667pt;}
.y1b3{bottom:842.466667pt;}
.y1a1{bottom:844.066667pt;}
.y8{bottom:852.093333pt;}
.y1d3{bottom:856.893333pt;}
.y68{bottom:858.493333pt;}
.yd1{bottom:858.813333pt;}
.y187{bottom:859.133333pt;}
.y117{bottom:859.453333pt;}
.y16a{bottom:859.773333pt;}
.y138{bottom:861.053333pt;}
.y150{bottom:864.253333pt;}
.y7{bottom:864.573333pt;}
.y1d2{bottom:874.493333pt;}
.ya7{bottom:875.133333pt;}
.y8a{bottom:876.093333pt;}
.y1a0{bottom:876.733333pt;}
.yef{bottom:879.933333pt;}
.yd0{bottom:882.173333pt;}
.y169{bottom:883.133333pt;}
.y67{bottom:892.093333pt;}
.ya6{bottom:892.733333pt;}
.y1bd{bottom:893.693333pt;}
.y137{bottom:895.293333pt;}
.ycf{bottom:905.533333pt;}
.y167{bottom:906.493333pt;}
.y66{bottom:909.693333pt;}
.ya5{bottom:910.333333pt;}
.y1bc{bottom:911.293333pt;}
.y186{bottom:912.893333pt;}
.y6{bottom:913.213333pt;}
.y115{bottom:915.133333pt;}
.y65{bottom:927.293333pt;}
.ya4{bottom:927.933333pt;}
.y136{bottom:928.253333pt;}
.yce{bottom:928.893333pt;}
.y19f{bottom:930.493333pt;}
.y165{bottom:931.133333pt;}
.y5{bottom:935.293333pt;}
.y64{bottom:944.893333pt;}
.ya3{bottom:945.853333pt;}
.y185{bottom:946.493333pt;}
.ycd{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y113{bottom:954.813333pt;}
.ycc{bottom:956.093333pt;}
.y63{bottom:962.533333pt;}
.ya2{bottom:963.493333pt;}
.yee{bottom:964.453333pt;}
.y3{bottom:972.453333pt;}
.y62{bottom:980.453333pt;}
.y135{bottom:982.053333pt;}
.ycb{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.ya1{bottom:997.093333pt;}
.y61{bottom:998.053333pt;}
.yca{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.ya0{bottom:1014.693333pt;}
.y19e{bottom:1015.333333pt;}
.y60{bottom:1015.653333pt;}
.y37{bottom:1036.773333pt;}
.y36{bottom:1049.253333pt;}
.y35{bottom:1067.813333pt;}
.y34{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h2a{height:15.360000pt;}
.h29{height:15.392000pt;}
.h27{height:23.360000pt;}
.ha{height:24.991875pt;}
.h26{height:28.192000pt;}
.h28{height:30.752000pt;}
.h25{height:31.040000pt;}
.h23{height:31.072000pt;}
.h16{height:31.360000pt;}
.h18{height:31.392000pt;}
.h20{height:32.000000pt;}
.h22{height:32.320000pt;}
.h1c{height:32.960000pt;}
.h24{height:34.240000pt;}
.hc{height:34.374375pt;}
.h7{height:35.173750pt;}
.h5{height:35.553750pt;}
.h4{height:38.876250pt;}
.h1e{height:39.040000pt;}
.h1d{height:39.072000pt;}
.h10{height:39.138750pt;}
.h21{height:39.296250pt;}
.h2{height:39.847500pt;}
.hf{height:41.160000pt;}
.h2c{height:44.191875pt;}
.h2d{height:44.461875pt;}
.h1b{height:46.432000pt;}
.h3{height:47.437500pt;}
.hd{height:53.471250pt;}
.h1f{height:55.680000pt;}
.h1a{height:62.400000pt;}
.h9{height:63.566250pt;}
.h12{height:65.756250pt;}
.h11{height:73.208750pt;}
.h15{height:81.147500pt;}
.h13{height:91.443750pt;}
.h14{height:122.107500pt;}
.hb{height:155.226667pt;}
.h19{height:159.386667pt;}
.h17{height:159.426667pt;}
.h2e{height:193.666667pt;}
.he{height:222.786667pt;}
.h2b{height:424.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:46.400000pt;}
.wd{width:56.032000pt;}
.w14{width:63.072000pt;}
.wb{width:64.992000pt;}
.we{width:75.232000pt;}
.w2e{width:84.192000pt;}
.w2d{width:91.232000pt;}
.w17{width:94.752000pt;}
.w13{width:103.424000pt;}
.w12{width:106.272000pt;}
.wf{width:106.944000pt;}
.w2f{width:112.064000pt;}
.w9{width:119.424000pt;}
.w2a{width:120.032000pt;}
.w2b{width:120.064000pt;}
.w10{width:123.552000pt;}
.w11{width:123.584000pt;}
.w29{width:131.904000pt;}
.w1d{width:139.266667pt;}
.w20{width:139.906667pt;}
.w1e{width:171.586667pt;}
.w21{width:172.226667pt;}
.w1a{width:195.906667pt;}
.w16{width:196.893333pt;}
.w19{width:200.733333pt;}
.w27{width:201.346667pt;}
.w24{width:201.373333pt;}
.w23{width:201.666667pt;}
.w22{width:201.693333pt;}
.w25{width:201.986667pt;}
.w26{width:202.013333pt;}
.w1b{width:211.293333pt;}
.w28{width:233.053333pt;}
.wa{width:238.173333pt;}
.w15{width:238.813333pt;}
.w1c{width:293.893333pt;}
.w1f{width:295.173333pt;}
.w8{width:301.573333pt;}
.w18{width:301.893333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w2c{width:317.573333pt;}
.w6{width:604.413333pt;}
.w30{width:604.733333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.720000pt;}
.x9{left:7.680000pt;}
.x2c{left:12.800000pt;}
.x31{left:16.320000pt;}
.x2a{left:18.880000pt;}
.x32{left:21.466667pt;}
.x35{left:22.400000pt;}
.x30{left:25.600000pt;}
.x25{left:27.552000pt;}
.x33{left:29.120000pt;}
.x2e{left:30.720000pt;}
.x3d{left:37.760000pt;}
.x41{left:40.026667pt;}
.x40{left:43.240000pt;}
.x34{left:44.514667pt;}
.x61{left:48.666667pt;}
.x62{left:50.266667pt;}
.x51{left:52.480000pt;}
.x63{left:53.466667pt;}
.x3f{left:54.746667pt;}
.x39{left:55.720000pt;}
.x3b{left:57.626667pt;}
.x52{left:59.866667pt;}
.x54{left:63.066667pt;}
.x46{left:67.546667pt;}
.x5c{left:70.426667pt;}
.x47{left:72.680000pt;}
.x53{left:73.946667pt;}
.x44{left:74.914667pt;}
.x58{left:75.866667pt;}
.x37{left:78.114667pt;}
.x67{left:79.394667pt;}
.x4c{left:86.434667pt;}
.x49{left:88.026667pt;}
.x4a{left:88.994667pt;}
.x48{left:90.594667pt;}
.x5b{left:92.546667pt;}
.x7{left:94.431988pt;}
.x4d{left:95.720000pt;}
.x4b{left:97.346667pt;}
.x19{left:98.911988pt;}
.x27{left:100.840000pt;}
.x36{left:111.712000pt;}
.xb{left:114.591988pt;}
.x1e{left:118.463988pt;}
.x4e{left:121.341333pt;}
.x20{left:122.943988pt;}
.x1c{left:127.103988pt;}
.x55{left:132.861333pt;}
.x1f{left:142.466655pt;}
.x1d{left:151.106655pt;}
.x42{left:157.506667pt;}
.x1a{left:160.706655pt;}
.x5d{left:166.466655pt;}
.x21{left:212.573322pt;}
.x26{left:215.133333pt;}
.x38{left:219.293333pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.x18{left:286.533322pt;}
.x22{left:291.013322pt;}
.x45{left:295.173333pt;}
.x59{left:296.133333pt;}
.x10{left:297.093322pt;}
.x14{left:302.853322pt;}
.xd{left:306.053322pt;}
.x13{left:307.013322pt;}
.x5{left:316.293322pt;}
.x17{left:322.053322pt;}
.x5e{left:327.493333pt;}
.x4{left:337.733322pt;}
.x3a{left:343.813333pt;}
.x3{left:354.079988pt;}
.xc{left:361.439988pt;}
.x4f{left:388.320000pt;}
.x56{left:389.600000pt;}
.x8{left:396.959988pt;}
.x1b{left:397.920000pt;}
.x23{left:407.199988pt;}
.x64{left:412.000000pt;}
.x28{left:453.946667pt;}
.x5f{left:459.386667pt;}
.x3c{left:468.026667pt;}
.xe{left:483.066643pt;}
.x24{left:484.666655pt;}
.x15{left:486.586643pt;}
.xf{left:487.546655pt;}
.x16{left:491.066655pt;}
.x11{left:492.026643pt;}
.x12{left:496.506655pt;}
.x5a{left:497.786667pt;}
.x65{left:503.226667pt;}
.x29{left:519.586667pt;}
.x50{left:527.586667pt;}
.x57{left:529.506667pt;}
.x2b{left:566.626667pt;}
.x3e{left:574.946667pt;}
.x60{left:579.426667pt;}
.x66{left:587.426667pt;}
.x43{left:593.213333pt;}
.x2d{left:623.613333pt;}
.x1{left:699.493322pt;}
}




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