
    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_36ee5e3fab3db0bb0820fbc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d810a4bfd4bf81fdc78c13be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_2cbf5d515be861192de1f7e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4b38d290e1caf5b027ddaf88.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_59c024b4ecae88fe11eff44b.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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_28b99ebf2c0e0d99a57b73d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_8ac4f89eb8a8655efb6e3f4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6e5ecfc58fe29e46a599bb5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7eaa9aed00020840abec84ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls4{letter-spacing:-2.415360px;}
.ls25{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.414600px;}
.ls19{letter-spacing:-0.262200px;}
.lsb{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018720px;}
.lse{letter-spacing:0.037440px;}
.ls21{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.340640px;}
.ls2a{letter-spacing:1.422000px;}
.ls1e{letter-spacing:1.476000px;}
.ls28{letter-spacing:1.584000px;}
.ls1{letter-spacing:4.014000px;}
.ls0{letter-spacing:4.212000px;}
.ls27{letter-spacing:4.464000px;}
.ls3{letter-spacing:4.626000px;}
.ls22{letter-spacing:5.184000px;}
.ls1f{letter-spacing:7.938720px;}
.ls2b{letter-spacing:21.744000px;}
.ls26{letter-spacing:29.064000px;}
.ls13{letter-spacing:37.745280px;}
.ls1d{letter-spacing:54.864000px;}
.ls15{letter-spacing:57.161280px;}
.lsf{letter-spacing:60.065280px;}
.ls16{letter-spacing:69.425280px;}
.ls24{letter-spacing:87.984000px;}
.ls11{letter-spacing:97.481280px;}
.ls14{letter-spacing:195.960000px;}
.lsd{letter-spacing:837.534720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.wse{word-spacing:-33.426720px;}
.ws13{word-spacing:-28.097280px;}
.ws18{word-spacing:-28.043280px;}
.ws19{word-spacing:-27.961920px;}
.wsb{word-spacing:-26.640000px;}
.ws0{word-spacing:-22.626720px;}
.ws1{word-spacing:-22.428720px;}
.ws5{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.wsc{word-spacing:-20.160000px;}
.ws14{word-spacing:-20.088000px;}
.ws7{word-spacing:-20.016000px;}
.ws17{word-spacing:-19.872000px;}
.wsd{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.ws3{word-spacing:-19.440000px;}
.ws1a{word-spacing:-19.296000px;}
.ws10{word-spacing:-18.414720px;}
.wsf{word-spacing:-18.305520px;}
.ws15{word-spacing:-18.152520px;}
.ws11{word-spacing:-17.586720px;}
.wsa{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.506480px;}
.ws9{word-spacing:-16.353480px;}
.ws16{word-spacing:-13.410720px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-24.457200px;}
._d{margin-left:-23.024160px;}
._1a{margin-left:-20.585280px;}
._14{margin-left:-19.428720px;}
._13{margin-left:-18.156000px;}
._18{margin-left:-15.828000px;}
._e{margin-left:-14.414640px;}
._19{margin-left:-13.404000px;}
._12{margin-left:-10.716000px;}
._f{margin-left:-8.430000px;}
._1c{margin-left:-7.068000px;}
._22{margin-left:-5.616000px;}
._c{margin-left:-4.536000px;}
._7{margin-left:-3.456000px;}
._11{margin-left:-2.232000px;}
._6{margin-left:-1.152000px;}
._0{width:1.683360px;}
._2{width:3.188880px;}
._1{width:4.457040px;}
._3{width:5.654160px;}
._4{width:7.488960px;}
._b{width:8.934960px;}
._1d{width:9.999600px;}
._15{width:11.012400px;}
._20{width:12.579840px;}
._27{width:13.628160px;}
._5{width:14.904000px;}
._23{width:15.912000px;}
._24{width:16.932000px;}
._28{width:18.288000px;}
._8{width:21.888000px;}
._21{width:22.913280px;}
._32{width:23.961600px;}
._34{width:25.104960px;}
._29{width:26.375040px;}
._1f{width:27.636480px;}
._16{width:28.800000px;}
._17{width:29.852640px;}
._2d{width:30.915360px;}
._26{width:32.328000px;}
._25{width:33.696000px;}
._2f{width:42.120000px;}
._2e{width:43.272000px;}
._30{width:44.844000px;}
._33{width:46.152000px;}
._2a{width:50.495760px;}
._2b{width:52.567680px;}
._31{width:54.360000px;}
._2c{width:56.232000px;}
._9{width:169.133760px;}
._a{width:198.894240px;}
._1b{width:837.534720px;}
._1e{width:844.140000px;}
.fc6{color:rgb(0,176,240);}
.fc4{color:transparent;}
.fc2{color:rgb(243,149,120);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(38,38,38);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.yde{bottom:3.420000px;}
.yd9{bottom:3.600000px;}
.y15{bottom:3.780000px;}
.y14d{bottom:3.825000px;}
.y45{bottom:4.860000px;}
.y43{bottom:5.040000px;}
.y1ff{bottom:5.220000px;}
.y1fa{bottom:5.400000px;}
.y1f6{bottom:5.760000px;}
.y1f4{bottom:5.940000px;}
.y28{bottom:6.120000px;}
.y21{bottom:6.300000px;}
.y18{bottom:6.480000px;}
.ye9{bottom:6.660000px;}
.yff{bottom:9.720000px;}
.y109{bottom:9.900000px;}
.y1f{bottom:11.520000px;}
.y41{bottom:11.880000px;}
.y4a{bottom:12.060000px;}
.y3f{bottom:12.240000px;}
.yd7{bottom:12.960000px;}
.y151{bottom:14.040000px;}
.y14b{bottom:14.085000px;}
.yf2{bottom:16.200000px;}
.y106{bottom:16.380000px;}
.y49{bottom:17.460000px;}
.ye5{bottom:19.260000px;}
.y37{bottom:20.520000px;}
.y149{bottom:20.880000px;}
.y10e{bottom:22.320000px;}
.yd8{bottom:22.500000px;}
.ye4{bottom:22.680000px;}
.y1b{bottom:24.480000px;}
.y14c{bottom:24.525000px;}
.yec{bottom:25.740000px;}
.yf5{bottom:25.785000px;}
.y108{bottom:28.800000px;}
.yfa{bottom:31.860000px;}
.y1e{bottom:32.220000px;}
.y13{bottom:33.840000px;}
.y4{bottom:34.020000px;}
.ye0{bottom:35.100000px;}
.yf0{bottom:35.145000px;}
.y103{bottom:35.325000px;}
.yf8{bottom:41.400000px;}
.ye3{bottom:41.580000px;}
.yeb{bottom:44.640000px;}
.yf4{bottom:44.685000px;}
.y1a{bottom:45.180000px;}
.yf9{bottom:50.940000px;}
.ydb{bottom:51.120000px;}
.y1d{bottom:52.920000px;}
.yf1{bottom:54.225000px;}
.yfd{bottom:60.480000px;}
.ye2{bottom:60.660000px;}
.y14f{bottom:62.280000px;}
.y148{bottom:62.325000px;}
.ydc{bottom:70.200000px;}
.yfc{bottom:79.380000px;}
.ye1{bottom:79.560000px;}
.y3c{bottom:132.660000px;}
.y85{bottom:134.640000px;}
.yf{bottom:147.960000px;}
.y1e8{bottom:150.300000px;}
.y1b4{bottom:151.200000px;}
.yd0{bottom:156.060000px;}
.y12b{bottom:158.220000px;}
.y3b{bottom:160.020000px;}
.y100{bottom:165.270000px;}
.ye{bottom:168.690000px;}
.y84{bottom:171.210000px;}
.ycf{bottom:176.790000px;}
.y12a{bottom:178.950000px;}
.y1b3{bottom:182.010000px;}
.y1e7{bottom:184.530000px;}
.y3a{bottom:187.230000px;}
.yd{bottom:189.390000px;}
.yf7{bottom:190.110000px;}
.yce{bottom:197.490000px;}
.y129{bottom:199.650000px;}
.y83{bottom:206.490000px;}
.y1e6{bottom:208.110000px;}
.yc{bottom:210.090000px;}
.y39{bottom:212.070000px;}
.y152{bottom:215.130000px;}
.y1b2{bottom:216.210000px;}
.ycd{bottom:218.190000px;}
.y128{bottom:220.350000px;}
.y82{bottom:227.190000px;}
.y38{bottom:230.070000px;}
.yb{bottom:230.790000px;}
.y1e5{bottom:231.690000px;}
.yfe{bottom:234.210000px;}
.ycc{bottom:238.890000px;}
.y127{bottom:241.050000px;}
.y14e{bottom:245.910000px;}
.y81{bottom:247.890000px;}
.y1b1{bottom:250.410000px;}
.ya{bottom:251.490000px;}
.y1e4{bottom:253.650000px;}
.ycb{bottom:259.590000px;}
.y126{bottom:261.750000px;}
.y36{bottom:265.350000px;}
.yfb{bottom:266.070000px;}
.y80{bottom:268.590000px;}
.y9{bottom:272.190000px;}
.y1e3{bottom:274.350000px;}
.y5c{bottom:277.410000px;}
.yca{bottom:280.290000px;}
.y125{bottom:282.450000px;}
.y1b0{bottom:284.610000px;}
.y7f{bottom:289.290000px;}
.yef{bottom:297.750000px;}
.y35{bottom:300.630000px;}
.y150{bottom:300.810000px;}
.yc9{bottom:300.990000px;}
.y1e2{bottom:304.050000px;}
.y8{bottom:304.590000px;}
.y5b{bottom:305.310000px;}
.y7e{bottom:309.990000px;}
.y124{bottom:312.150000px;}
.y1af{bottom:315.570000px;}
.y33{bottom:318.630000px;}
.yc8{bottom:321.690000px;}
.y110{bottom:325.875000px;}
.yf6{bottom:329.475000px;}
.y7d{bottom:330.690000px;}
.y5a{bottom:331.590000px;}
.y1e1{bottom:335.010000px;}
.y7{bottom:335.550000px;}
.y1ae{bottom:336.270000px;}
.y32{bottom:340.230000px;}
.yc7{bottom:342.390000px;}
.y123{bottom:343.290000px;}
.y7c{bottom:351.390000px;}
.y59{bottom:352.290000px;}
.y20e{bottom:353.730000px;}
.y6{bottom:354.810000px;}
.y147{bottom:355.710000px;}
.y1ad{bottom:356.970000px;}
.y10d{bottom:358.275000px;}
.y31{bottom:360.030000px;}
.yf3{bottom:361.155000px;}
.y1e0{bottom:362.550000px;}
.yc6{bottom:363.090000px;}
.y122{bottom:370.830000px;}
.y7b{bottom:372.090000px;}
.y58{bottom:372.990000px;}
.y20d{bottom:374.430000px;}
.y1ac{bottom:377.670000px;}
.y30{bottom:380.190000px;}
.yc5{bottom:383.790000px;}
.y7a{bottom:392.790000px;}
.yea{bottom:393.015000px;}
.y57{bottom:393.690000px;}
.y20c{bottom:395.130000px;}
.y10f{bottom:396.075000px;}
.y5{bottom:403.770000px;}
.yc4{bottom:404.490000px;}
.y1ab{bottom:407.010000px;}
.y2f{bottom:407.550000px;}
.y14a{bottom:410.610000px;}
.y1df{bottom:411.510000px;}
.y79{bottom:413.535000px;}
.y121{bottom:418.215000px;}
.yee{bottom:424.695000px;}
.yc3{bottom:425.235000px;}
.y56{bottom:426.135000px;}
.y10c{bottom:427.935000px;}
.y1de{bottom:433.875000px;}
.y78{bottom:434.235000px;}
.y2e{bottom:434.775000px;}
.y1aa{bottom:437.835000px;}
.y18b{bottom:438.195000px;}
.y120{bottom:438.915000px;}
.yc2{bottom:445.935000px;}
.y17e{bottom:449.715000px;}
.y170{bottom:449.895000px;}
.y3{bottom:453.675000px;}
.y77{bottom:454.935000px;}
.y1dd{bottom:455.835000px;}
.yed{bottom:456.375000px;}
.y55{bottom:457.095000px;}
.y2d{bottom:462.135000px;}
.y146{bottom:465.555000px;}
.y20b{bottom:466.455000px;}
.y11f{bottom:468.255000px;}
.y2{bottom:470.415000px;}
.y16f{bottom:470.595000px;}
.yc1{bottom:475.455000px;}
.y76{bottom:475.635000px;}
.y1dc{bottom:476.535000px;}
.y18a{bottom:481.215000px;}
.y20a{bottom:487.155000px;}
.ye7{bottom:488.085000px;}
.y2c{bottom:489.495000px;}
.y16e{bottom:491.295000px;}
.y11e{bottom:492.735000px;}
.y75{bottom:496.335000px;}
.y1db{bottom:497.235000px;}
.y10b{bottom:497.625000px;}
.yc0{bottom:499.935000px;}
.y189{bottom:501.915000px;}
.y1a9{bottom:502.815000px;}
.y145{bottom:505.155000px;}
.y209{bottom:507.855000px;}
.y16d{bottom:511.995000px;}
.y74{bottom:517.035000px;}
.y2b{bottom:519.195000px;}
.y188{bottom:522.615000px;}
.ye8{bottom:526.065000px;}
.y1da{bottom:526.935000px;}
.y208{bottom:528.555000px;}
.y16c{bottom:532.695000px;}
.y144{bottom:533.415000px;}
.y1a8{bottom:535.395000px;}
.y73{bottom:537.735000px;}
.y187{bottom:543.315000px;}
.y207{bottom:549.255000px;}
.y16b{bottom:553.395000px;}
.y143{bottom:554.115000px;}
.y2a{bottom:555.915000px;}
.yda{bottom:557.745000px;}
.y72{bottom:558.435000px;}
.y54{bottom:566.355000px;}
.y107{bottom:567.285000px;}
.y1a7{bottom:567.795000px;}
.y1d9{bottom:568.695000px;}
.y206{bottom:569.955000px;}
.y186{bottom:573.015000px;}
.y16a{bottom:574.095000px;}
.y142{bottom:574.815000px;}
.y71{bottom:579.135000px;}
.yab{bottom:580.575000px;}
.y53{bottom:587.235000px;}
.y1d8{bottom:589.395000px;}
.ydf{bottom:589.605000px;}
.y29{bottom:592.635000px;}
.y169{bottom:594.615000px;}
.y141{bottom:595.515000px;}
.yaa{bottom:597.495000px;}
.y10a{bottom:598.965000px;}
.y205{bottom:599.655000px;}
.y70{bottom:599.835000px;}
.y1a6{bottom:600.375000px;}
.y185{bottom:603.975000px;}
.y1d7{bottom:610.095000px;}
.y52{bottom:611.355000px;}
.y168{bottom:615.315000px;}
.y140{bottom:616.215000px;}
.ya9{bottom:618.195000px;}
.y6f{bottom:620.535000px;}
.ye6{bottom:621.285000px;}
.y1a5{bottom:629.355000px;}
.y102{bottom:630.645000px;}
.y1d6{bottom:630.795000px;}
.y167{bottom:636.015000px;}
.y13f{bottom:636.915000px;}
.y51{bottom:638.895000px;}
.y6e{bottom:641.235000px;}
.y27{bottom:647.535000px;}
.y1f2{bottom:647.715000px;}
.y1d5{bottom:651.495000px;}
.y184{bottom:652.935000px;}
.ydd{bottom:653.010000px;}
.ybf{bottom:654.375000px;}
.y166{bottom:656.715000px;}
.y13e{bottom:657.615000px;}
.y204{bottom:658.365000px;}
.y1a4{bottom:658.905000px;}
.ya8{bottom:659.625000px;}
.y6d{bottom:661.965000px;}
.y104{bottom:662.550000px;}
.y1c7{bottom:663.945000px;}
.y1f1{bottom:668.445000px;}
.y1d4{bottom:672.225000px;}
.ybe{bottom:675.105000px;}
.y183{bottom:675.285000px;}
.y1d1{bottom:675.465000px;}
.y165{bottom:677.445000px;}
.y13d{bottom:678.345000px;}
.ya7{bottom:680.325000px;}
.y6c{bottom:682.665000px;}
.y26{bottom:684.105000px;}
.y1c6{bottom:684.645000px;}
.yd6{bottom:684.690000px;}
.y1f0{bottom:689.145000px;}
.y1a3{bottom:689.685000px;}
.y1d3{bottom:692.925000px;}
.y105{bottom:694.230000px;}
.ybd{bottom:695.805000px;}
.y1d0{bottom:696.165000px;}
.y182{bottom:697.605000px;}
.y164{bottom:698.145000px;}
.y13c{bottom:699.045000px;}
.ya6{bottom:701.025000px;}
.y6b{bottom:703.365000px;}
.y1c5{bottom:705.345000px;}
.y203{bottom:705.705000px;}
.y1ef{bottom:709.845000px;}
.y1d2{bottom:715.245000px;}
.ybc{bottom:716.505000px;}
.y1cf{bottom:716.865000px;}
.y163{bottom:718.845000px;}
.y181{bottom:719.565000px;}
.y13b{bottom:719.745000px;}
.y25{bottom:720.825000px;}
.ya5{bottom:721.725000px;}
.y1a2{bottom:722.265000px;}
.y6a{bottom:724.065000px;}
.y101{bottom:725.910000px;}
.y1c4{bottom:726.045000px;}
.y1ee{bottom:730.545000px;}
.yd5{bottom:734.010000px;}
.y202{bottom:735.045000px;}
.ybb{bottom:737.205000px;}
.y1ce{bottom:737.565000px;}
.y50{bottom:737.745000px;}
.y162{bottom:739.545000px;}
.y13a{bottom:740.445000px;}
.ya4{bottom:742.425000px;}
.y69{bottom:744.765000px;}
.y1c3{bottom:746.745000px;}
.y180{bottom:748.905000px;}
.y1ed{bottom:751.245000px;}
.yd4{bottom:753.270000px;}
.y1a1{bottom:754.665000px;}
.yba{bottom:757.905000px;}
.y1cd{bottom:758.265000px;}
.y201{bottom:759.525000px;}
.y161{bottom:760.245000px;}
.y139{bottom:761.145000px;}
.y94{bottom:761.865000px;}
.ya3{bottom:763.125000px;}
.y19a{bottom:763.305000px;}
.y4f{bottom:765.285000px;}
.y68{bottom:765.465000px;}
.y1c2{bottom:767.445000px;}
.y1ec{bottom:771.945000px;}
.y17f{bottom:773.385000px;}
.yd2{bottom:773.970000px;}
.y24{bottom:775.725000px;}
.yb9{bottom:778.605000px;}
.y1cc{bottom:778.965000px;}
.y160{bottom:780.945000px;}
.y138{bottom:781.845000px;}
.y93{bottom:782.565000px;}
.y200{bottom:783.465000px;}
.y199{bottom:784.005000px;}
.y67{bottom:786.165000px;}
.y1a0{bottom:787.065000px;}
.y1c1{bottom:788.145000px;}
.yd3{bottom:790.890000px;}
.y4e{bottom:791.745000px;}
.y1eb{bottom:792.645000px;}
.yd1{bottom:794.670000px;}
.yb8{bottom:799.305000px;}
.y1cb{bottom:799.665000px;}
.y15f{bottom:801.645000px;}
.y137{bottom:802.545000px;}
.y92{bottom:803.265000px;}
.ya2{bottom:804.525000px;}
.y198{bottom:804.705000px;}
.y66{bottom:806.865000px;}
.y1fe{bottom:807.225000px;}
.y1c0{bottom:808.845000px;}
.y23{bottom:812.445000px;}
.y4d{bottom:818.385000px;}
.y19f{bottom:819.645000px;}
.yb7{bottom:820.005000px;}
.y1ca{bottom:820.365000px;}
.y15e{bottom:822.345000px;}
.y136{bottom:823.245000px;}
.y91{bottom:823.965000px;}
.y17d{bottom:824.865000px;}
.ya1{bottom:825.225000px;}
.y197{bottom:825.405000px;}
.y65{bottom:827.565000px;}
.y1bf{bottom:829.545000px;}
.y1fd{bottom:831.165000px;}
.y1{bottom:833.145000px;}
.yb6{bottom:840.705000px;}
.y4c{bottom:842.145000px;}
.y15d{bottom:843.045000px;}
.y135{bottom:843.945000px;}
.y90{bottom:844.665000px;}
.y17c{bottom:845.565000px;}
.y22{bottom:845.745000px;}
.ya0{bottom:845.925000px;}
.y196{bottom:846.105000px;}
.y64{bottom:848.265000px;}
.y1c9{bottom:850.065000px;}
.y1be{bottom:850.245000px;}
.y19e{bottom:852.045000px;}
.y1ea{bottom:853.485000px;}
.y1fc{bottom:856.185000px;}
.y11d{bottom:859.065000px;}
.yb5{bottom:861.405000px;}
.y134{bottom:864.645000px;}
.y8f{bottom:865.365000px;}
.y17b{bottom:866.265000px;}
.y9f{bottom:866.625000px;}
.y20{bottom:868.965000px;}
.y1bd{bottom:870.945000px;}
.y15c{bottom:872.745000px;}
.y195{bottom:875.805000px;}
.y4b{bottom:876.345000px;}
.y1c8{bottom:881.025000px;}
.y1fb{bottom:881.385000px;}
.yb4{bottom:882.105000px;}
.y19d{bottom:884.625000px;}
.y133{bottom:885.345000px;}
.y17a{bottom:886.965000px;}
.y9e{bottom:887.325000px;}
.y63{bottom:889.665000px;}
.y1bc{bottom:891.645000px;}
.y11c{bottom:893.445000px;}
.y8e{bottom:900.645000px;}
.yb3{bottom:902.805000px;}
.y15b{bottom:903.930000px;}
.y1f9{bottom:905.010000px;}
.y1c{bottom:905.730000px;}
.y194{bottom:906.810000px;}
.y179{bottom:907.710000px;}
.y9d{bottom:908.070000px;}
.y132{bottom:908.610000px;}
.y62{bottom:910.410000px;}
.y48{bottom:910.770000px;}
.y1bb{bottom:912.390000px;}
.y11b{bottom:915.630000px;}
.y19c{bottom:917.070000px;}
.yb2{bottom:923.550000px;}
.y178{bottom:928.410000px;}
.y9c{bottom:928.770000px;}
.y1f8{bottom:929.130000px;}
.y61{bottom:931.110000px;}
.y15a{bottom:931.470000px;}
.y8d{bottom:932.550000px;}
.y1ba{bottom:933.090000px;}
.y193{bottom:934.350000px;}
.y11a{bottom:937.590000px;}
.y131{bottom:942.810000px;}
.yb1{bottom:944.250000px;}
.y177{bottom:949.110000px;}
.y9b{bottom:949.470000px;}
.y8c{bottom:953.250000px;}
.y1b9{bottom:953.790000px;}
.y1f7{bottom:954.150000px;}
.y119{bottom:958.290000px;}
.y47{bottom:958.830000px;}
.y60{bottom:962.070000px;}
.yb0{bottom:964.950000px;}
.y176{bottom:969.810000px;}
.y9a{bottom:970.170000px;}
.y8b{bottom:973.950000px;}
.y1b8{bottom:974.490000px;}
.y130{bottom:977.010000px;}
.y159{bottom:978.810000px;}
.y118{bottom:978.990000px;}
.y1f5{bottom:979.350000px;}
.y192{bottom:981.690000px;}
.y19b{bottom:982.050000px;}
.y46{bottom:985.650000px;}
.y19{bottom:989.070000px;}
.y175{bottom:990.510000px;}
.y99{bottom:990.870000px;}
.y8a{bottom:994.650000px;}
.y1b7{bottom:995.190000px;}
.y5f{bottom:998.610000px;}
.y158{bottom:999.510000px;}
.y117{bottom:999.690000px;}
.y191{bottom:1002.390000px;}
.y44{bottom:1003.470000px;}
.y1f3{bottom:1004.370000px;}
.yaf{bottom:1006.350000px;}
.y12f{bottom:1011.210000px;}
.y98{bottom:1011.570000px;}
.y89{bottom:1015.350000px;}
.y157{bottom:1020.210000px;}
.y116{bottom:1020.390000px;}
.y190{bottom:1023.090000px;}
.y42{bottom:1023.810000px;}
.y1b6{bottom:1024.890000px;}
.yae{bottom:1027.050000px;}
.y174{bottom:1031.910000px;}
.y97{bottom:1032.270000px;}
.y5e{bottom:1035.330000px;}
.y88{bottom:1036.050000px;}
.y156{bottom:1040.910000px;}
.y115{bottom:1041.090000px;}
.y18f{bottom:1043.790000px;}
.y40{bottom:1044.330000px;}
.y12e{bottom:1045.410000px;}
.yad{bottom:1047.750000px;}
.y173{bottom:1052.610000px;}
.y96{bottom:1052.970000px;}
.y1b5{bottom:1055.850000px;}
.y87{bottom:1056.750000px;}
.y155{bottom:1061.610000px;}
.y114{bottom:1061.790000px;}
.y18e{bottom:1064.490000px;}
.y17{bottom:1064.670000px;}
.yac{bottom:1068.450000px;}
.y5d{bottom:1071.870000px;}
.y172{bottom:1073.310000px;}
.y95{bottom:1073.670000px;}
.y86{bottom:1077.450000px;}
.y3e{bottom:1078.530000px;}
.y12d{bottom:1079.610000px;}
.y1e9{bottom:1082.130000px;}
.y154{bottom:1082.310000px;}
.y113{bottom:1082.490000px;}
.y18d{bottom:1085.190000px;}
.y171{bottom:1102.830000px;}
.y112{bottom:1103.190000px;}
.y153{bottom:1111.830000px;}
.y16{bottom:1112.730000px;}
.y12c{bottom:1113.810000px;}
.y18c{bottom:1114.890000px;}
.y111{bottom:1123.890000px;}
.y3d{bottom:1126.770000px;}
.y12{bottom:1144.590000px;}
.y14{bottom:1161.540000px;}
.y11{bottom:1165.320000px;}
.y10{bottom:1204.560000px;}
.h11{height:17.100000px;}
.h14{height:17.280000px;}
.h24{height:18.900000px;}
.h2c{height:18.936000px;}
.h27{height:19.080000px;}
.h2f{height:19.116000px;}
.h1a{height:19.620000px;}
.h19{height:19.800000px;}
.h7{height:20.700000px;}
.h1f{height:20.736000px;}
.h37{height:22.500000px;}
.hc{height:23.040000px;}
.he{height:23.076000px;}
.hb{height:23.220000px;}
.h8{height:23.400000px;}
.h36{height:23.580000px;}
.h38{height:23.616000px;}
.h35{height:23.760000px;}
.h29{height:25.200000px;}
.h2e{height:31.500000px;}
.h17{height:33.480000px;}
.h1c{height:33.516000px;}
.h12{height:34.380000px;}
.h13{height:34.560000px;}
.h1b{height:35.100000px;}
.h16{height:35.280000px;}
.h22{height:37.980000px;}
.hd{height:41.400000px;}
.h33{height:41.436000px;}
.h6{height:43.804688px;}
.h15{height:45.403594px;}
.h26{height:50.580000px;}
.h1e{height:53.121094px;}
.h18{height:56.320312px;}
.h30{height:56.880000px;}
.h31{height:56.916000px;}
.h28{height:57.060000px;}
.hf{height:59.439023px;}
.h9{height:62.100000px;}
.h3{height:62.327813px;}
.h5{height:69.086250px;}
.ha{height:69.840000px;}
.h10{height:72.090000px;}
.h2{height:75.093750px;}
.h2a{height:82.260000px;}
.h25{height:82.296000px;}
.h2b{height:82.476000px;}
.h2d{height:94.860000px;}
.h34{height:96.300000px;}
.h32{height:96.336000px;}
.h1d{height:99.874688px;}
.h23{height:114.156000px;}
.h4{height:125.406562px;}
.h20{height:892.440000px;}
.h21{height:892.500000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:43.740000px;}
.w24{width:51.120000px;}
.w1e{width:51.840000px;}
.w23{width:72.936000px;}
.w11{width:73.440000px;}
.w1d{width:73.656000px;}
.w37{width:74.700000px;}
.w36{width:76.500000px;}
.w22{width:83.700000px;}
.w21{width:84.060000px;}
.w1c{width:84.420000px;}
.w1b{width:84.780000px;}
.w9{width:90.540000px;}
.w32{width:98.100000px;}
.w35{width:100.476000px;}
.w27{width:101.520000px;}
.w3{width:102.276000px;}
.w18{width:104.076000px;}
.w26{width:104.760000px;}
.w19{width:105.480000px;}
.w1a{width:105.696000px;}
.w17{width:112.140000px;}
.w13{width:112.176000px;}
.wb{width:114.660000px;}
.w10{width:117.936000px;}
.w2d{width:134.316000px;}
.wc{width:138.996000px;}
.w34{width:149.976000px;}
.w33{width:159.510000px;}
.w38{width:167.250000px;}
.w30{width:184.710000px;}
.w2a{width:193.710000px;}
.w2e{width:203.250000px;}
.w29{width:223.050000px;}
.w25{width:231.510000px;}
.w1f{width:232.230000px;}
.w31{width:246.495000px;}
.w6{width:251.490000px;}
.w20{width:253.650000px;}
.w4{width:254.370000px;}
.w2c{width:272.955000px;}
.w2f{width:288.975000px;}
.we{width:300.630000px;}
.wf{width:300.675000px;}
.w2b{width:304.455000px;}
.w12{width:360.795000px;}
.w39{width:401.655000px;}
.wd{width:465.945000px;}
.w5{width:479.985000px;}
.w7{width:483.405000px;}
.wa{width:585.150000px;}
.w28{width:600.990000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w15{width:1263.000000px;}
.w16{width:1263.059981px;}
.w14{width:1263.060000px;}
.x0{left:0.000000px;}
.x5e{left:5.220000px;}
.x7{left:6.480000px;}
.xa{left:7.740000px;}
.x26{left:9.540000px;}
.x1b{left:11.520000px;}
.x21{left:13.140000px;}
.x23{left:15.120000px;}
.x31{left:16.200000px;}
.x2b{left:18.540000px;}
.x27{left:21.060000px;}
.x35{left:22.680000px;}
.x3d{left:23.940000px;}
.x1f{left:25.020000px;}
.x62{left:26.820000px;}
.x33{left:28.620000px;}
.x49{left:29.700000px;}
.x30{left:32.760000px;}
.x32{left:34.740000px;}
.x38{left:36.360000px;}
.x2f{left:37.440000px;}
.x36{left:39.600000px;}
.x2d{left:41.580000px;}
.x3c{left:42.660000px;}
.x3e{left:45.000000px;}
.x2c{left:46.980000px;}
.x2a{left:48.060000px;}
.x2e{left:50.220000px;}
.x4b{left:52.560000px;}
.x16{left:53.999981px;}
.x34{left:55.620000px;}
.x3a{left:57.960000px;}
.x64{left:63.045000px;}
.x3b{left:64.440000px;}
.x3f{left:65.700000px;}
.x63{left:67.545000px;}
.x1d{left:71.100000px;}
.x4a{left:72.714000px;}
.x54{left:78.300000px;}
.x1a{left:80.280000px;}
.x5b{left:81.575987px;}
.x55{left:82.800000px;}
.x2{left:84.995987px;}
.x39{left:86.760000px;}
.x37{left:90.540000px;}
.x45{left:94.716000px;}
.x43{left:97.595987px;}
.x10{left:102.995987px;}
.x51{left:107.136000px;}
.x41{left:111.995987px;}
.x11{left:120.995987px;}
.x44{left:128.195987px;}
.xb{left:130.536000px;}
.x56{left:135.210000px;}
.x42{left:138.995987px;}
.x12{left:158.430000px;}
.x5d{left:161.850000px;}
.x1c{left:185.070000px;}
.x58{left:193.530000px;}
.x46{left:196.950000px;}
.xd{left:201.270000px;}
.xc{left:221.790000px;}
.x4f{left:242.310000px;}
.x4c{left:268.274987px;}
.x66{left:282.314987px;}
.x4d{left:288.434987px;}
.x4e{left:296.174987px;}
.x5a{left:298.514987px;}
.x47{left:308.775000px;}
.x14{left:310.034987px;}
.x52{left:311.115000px;}
.x57{left:322.274987px;}
.x9{left:337.215000px;}
.x8{left:340.095000px;}
.x65{left:341.355000px;}
.xe{left:387.435000px;}
.x5f{left:412.305000px;}
.x40{left:434.774981px;}
.x1e{left:440.355000px;}
.x5c{left:446.144987px;}
.x60{left:488.805000px;}
.x48{left:503.205000px;}
.x50{left:515.985000px;}
.x59{left:539.745000px;}
.x20{left:546.555000px;}
.x61{left:563.505000px;}
.x53{left:600.810000px;}
.x19{left:631.544981px;}
.x22{left:652.965000px;}
.xf{left:689.010000px;}
.x15{left:695.490000px;}
.x4{left:699.000000px;}
.x3{left:700.529987px;}
.x6{left:705.390000px;}
.x17{left:711.464981px;}
.x24{left:738.465000px;}
.x5{left:742.469987px;}
.x13{left:801.719987px;}
.x1{left:807.479987px;}
.x25{left:823.605000px;}
.x28{left:897.990000px;}
.x29{left:950.730000px;}
.x18{left:1097.100000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls4{letter-spacing:-2.146987pt;}
.ls25{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.368533pt;}
.ls19{letter-spacing:-0.233067pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.033280pt;}
.ls21{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls20{letter-spacing:1.191680pt;}
.ls2a{letter-spacing:1.264000pt;}
.ls1e{letter-spacing:1.312000pt;}
.ls28{letter-spacing:1.408000pt;}
.ls1{letter-spacing:3.568000pt;}
.ls0{letter-spacing:3.744000pt;}
.ls27{letter-spacing:3.968000pt;}
.ls3{letter-spacing:4.112000pt;}
.ls22{letter-spacing:4.608000pt;}
.ls1f{letter-spacing:7.056640pt;}
.ls2b{letter-spacing:19.328000pt;}
.ls26{letter-spacing:25.834667pt;}
.ls13{letter-spacing:33.551360pt;}
.ls1d{letter-spacing:48.768000pt;}
.ls15{letter-spacing:50.810027pt;}
.lsf{letter-spacing:53.391360pt;}
.ls16{letter-spacing:61.711360pt;}
.ls24{letter-spacing:78.208000pt;}
.ls11{letter-spacing:86.650027pt;}
.ls14{letter-spacing:174.186667pt;}
.lsd{letter-spacing:744.475307pt;}
.ws12{word-spacing:-64.000000pt;}
.wse{word-spacing:-29.712640pt;}
.ws13{word-spacing:-24.975360pt;}
.ws18{word-spacing:-24.927360pt;}
.ws19{word-spacing:-24.855040pt;}
.wsb{word-spacing:-23.680000pt;}
.ws0{word-spacing:-20.112640pt;}
.ws1{word-spacing:-19.936640pt;}
.ws5{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.920000pt;}
.ws14{word-spacing:-17.856000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws17{word-spacing:-17.664000pt;}
.wsd{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws1a{word-spacing:-17.152000pt;}
.ws10{word-spacing:-16.368640pt;}
.wsf{word-spacing:-16.271573pt;}
.ws15{word-spacing:-16.135573pt;}
.ws11{word-spacing:-15.632640pt;}
.wsa{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.672427pt;}
.ws9{word-spacing:-14.536427pt;}
.ws16{word-spacing:-11.920640pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-21.739733pt;}
._d{margin-left:-20.465920pt;}
._1a{margin-left:-18.298027pt;}
._14{margin-left:-17.269973pt;}
._13{margin-left:-16.138667pt;}
._18{margin-left:-14.069333pt;}
._e{margin-left:-12.813013pt;}
._19{margin-left:-11.914667pt;}
._12{margin-left:-9.525333pt;}
._f{margin-left:-7.493333pt;}
._1c{margin-left:-6.282667pt;}
._22{margin-left:-4.992000pt;}
._c{margin-left:-4.032000pt;}
._7{margin-left:-3.072000pt;}
._11{margin-left:-1.984000pt;}
._6{margin-left:-1.024000pt;}
._0{width:1.496320pt;}
._2{width:2.834560pt;}
._1{width:3.961813pt;}
._3{width:5.025920pt;}
._4{width:6.656853pt;}
._b{width:7.942187pt;}
._1d{width:8.888533pt;}
._15{width:9.788800pt;}
._20{width:11.182080pt;}
._27{width:12.113920pt;}
._5{width:13.248000pt;}
._23{width:14.144000pt;}
._24{width:15.050667pt;}
._28{width:16.256000pt;}
._8{width:19.456000pt;}
._21{width:20.367360pt;}
._32{width:21.299200pt;}
._34{width:22.315520pt;}
._29{width:23.444480pt;}
._1f{width:24.565760pt;}
._16{width:25.600000pt;}
._17{width:26.535680pt;}
._2d{width:27.480320pt;}
._26{width:28.736000pt;}
._25{width:29.952000pt;}
._2f{width:37.440000pt;}
._2e{width:38.464000pt;}
._30{width:39.861333pt;}
._33{width:41.024000pt;}
._2a{width:44.885120pt;}
._2b{width:46.726827pt;}
._31{width:48.320000pt;}
._2c{width:49.984000pt;}
._9{width:150.341120pt;}
._a{width:176.794880pt;}
._1b{width:744.475307pt;}
._1e{width:750.346667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.yde{bottom:3.040000pt;}
.yd9{bottom:3.200000pt;}
.y15{bottom:3.360000pt;}
.y14d{bottom:3.400000pt;}
.y45{bottom:4.320000pt;}
.y43{bottom:4.480000pt;}
.y1ff{bottom:4.640000pt;}
.y1fa{bottom:4.800000pt;}
.y1f6{bottom:5.120000pt;}
.y1f4{bottom:5.280000pt;}
.y28{bottom:5.440000pt;}
.y21{bottom:5.600000pt;}
.y18{bottom:5.760000pt;}
.ye9{bottom:5.920000pt;}
.yff{bottom:8.640000pt;}
.y109{bottom:8.800000pt;}
.y1f{bottom:10.240000pt;}
.y41{bottom:10.560000pt;}
.y4a{bottom:10.720000pt;}
.y3f{bottom:10.880000pt;}
.yd7{bottom:11.520000pt;}
.y151{bottom:12.480000pt;}
.y14b{bottom:12.520000pt;}
.yf2{bottom:14.400000pt;}
.y106{bottom:14.560000pt;}
.y49{bottom:15.520000pt;}
.ye5{bottom:17.120000pt;}
.y37{bottom:18.240000pt;}
.y149{bottom:18.560000pt;}
.y10e{bottom:19.840000pt;}
.yd8{bottom:20.000000pt;}
.ye4{bottom:20.160000pt;}
.y1b{bottom:21.760000pt;}
.y14c{bottom:21.800000pt;}
.yec{bottom:22.880000pt;}
.yf5{bottom:22.920000pt;}
.y108{bottom:25.600000pt;}
.yfa{bottom:28.320000pt;}
.y1e{bottom:28.640000pt;}
.y13{bottom:30.080000pt;}
.y4{bottom:30.240000pt;}
.ye0{bottom:31.200000pt;}
.yf0{bottom:31.240000pt;}
.y103{bottom:31.400000pt;}
.yf8{bottom:36.800000pt;}
.ye3{bottom:36.960000pt;}
.yeb{bottom:39.680000pt;}
.yf4{bottom:39.720000pt;}
.y1a{bottom:40.160000pt;}
.yf9{bottom:45.280000pt;}
.ydb{bottom:45.440000pt;}
.y1d{bottom:47.040000pt;}
.yf1{bottom:48.200000pt;}
.yfd{bottom:53.760000pt;}
.ye2{bottom:53.920000pt;}
.y14f{bottom:55.360000pt;}
.y148{bottom:55.400000pt;}
.ydc{bottom:62.400000pt;}
.yfc{bottom:70.560000pt;}
.ye1{bottom:70.720000pt;}
.y3c{bottom:117.920000pt;}
.y85{bottom:119.680000pt;}
.yf{bottom:131.520000pt;}
.y1e8{bottom:133.600000pt;}
.y1b4{bottom:134.400000pt;}
.yd0{bottom:138.720000pt;}
.y12b{bottom:140.640000pt;}
.y3b{bottom:142.240000pt;}
.y100{bottom:146.906667pt;}
.ye{bottom:149.946667pt;}
.y84{bottom:152.186667pt;}
.ycf{bottom:157.146667pt;}
.y12a{bottom:159.066667pt;}
.y1b3{bottom:161.786667pt;}
.y1e7{bottom:164.026667pt;}
.y3a{bottom:166.426667pt;}
.yd{bottom:168.346667pt;}
.yf7{bottom:168.986667pt;}
.yce{bottom:175.546667pt;}
.y129{bottom:177.466667pt;}
.y83{bottom:183.546667pt;}
.y1e6{bottom:184.986667pt;}
.yc{bottom:186.746667pt;}
.y39{bottom:188.506667pt;}
.y152{bottom:191.226667pt;}
.y1b2{bottom:192.186667pt;}
.ycd{bottom:193.946667pt;}
.y128{bottom:195.866667pt;}
.y82{bottom:201.946667pt;}
.y38{bottom:204.506667pt;}
.yb{bottom:205.146667pt;}
.y1e5{bottom:205.946667pt;}
.yfe{bottom:208.186667pt;}
.ycc{bottom:212.346667pt;}
.y127{bottom:214.266667pt;}
.y14e{bottom:218.586667pt;}
.y81{bottom:220.346667pt;}
.y1b1{bottom:222.586667pt;}
.ya{bottom:223.546667pt;}
.y1e4{bottom:225.466667pt;}
.ycb{bottom:230.746667pt;}
.y126{bottom:232.666667pt;}
.y36{bottom:235.866667pt;}
.yfb{bottom:236.506667pt;}
.y80{bottom:238.746667pt;}
.y9{bottom:241.946667pt;}
.y1e3{bottom:243.866667pt;}
.y5c{bottom:246.586667pt;}
.yca{bottom:249.146667pt;}
.y125{bottom:251.066667pt;}
.y1b0{bottom:252.986667pt;}
.y7f{bottom:257.146667pt;}
.yef{bottom:264.666667pt;}
.y35{bottom:267.226667pt;}
.y150{bottom:267.386667pt;}
.yc9{bottom:267.546667pt;}
.y1e2{bottom:270.266667pt;}
.y8{bottom:270.746667pt;}
.y5b{bottom:271.386667pt;}
.y7e{bottom:275.546667pt;}
.y124{bottom:277.466667pt;}
.y1af{bottom:280.506667pt;}
.y33{bottom:283.226667pt;}
.yc8{bottom:285.946667pt;}
.y110{bottom:289.666667pt;}
.yf6{bottom:292.866667pt;}
.y7d{bottom:293.946667pt;}
.y5a{bottom:294.746667pt;}
.y1e1{bottom:297.786667pt;}
.y7{bottom:298.266667pt;}
.y1ae{bottom:298.906667pt;}
.y32{bottom:302.426667pt;}
.yc7{bottom:304.346667pt;}
.y123{bottom:305.146667pt;}
.y7c{bottom:312.346667pt;}
.y59{bottom:313.146667pt;}
.y20e{bottom:314.426667pt;}
.y6{bottom:315.386667pt;}
.y147{bottom:316.186667pt;}
.y1ad{bottom:317.306667pt;}
.y10d{bottom:318.466667pt;}
.y31{bottom:320.026667pt;}
.yf3{bottom:321.026667pt;}
.y1e0{bottom:322.266667pt;}
.yc6{bottom:322.746667pt;}
.y122{bottom:329.626667pt;}
.y7b{bottom:330.746667pt;}
.y58{bottom:331.546667pt;}
.y20d{bottom:332.826667pt;}
.y1ac{bottom:335.706667pt;}
.y30{bottom:337.946667pt;}
.yc5{bottom:341.146667pt;}
.y7a{bottom:349.146667pt;}
.yea{bottom:349.346667pt;}
.y57{bottom:349.946667pt;}
.y20c{bottom:351.226667pt;}
.y10f{bottom:352.066667pt;}
.y5{bottom:358.906667pt;}
.yc4{bottom:359.546667pt;}
.y1ab{bottom:361.786667pt;}
.y2f{bottom:362.266667pt;}
.y14a{bottom:364.986667pt;}
.y1df{bottom:365.786667pt;}
.y79{bottom:367.586667pt;}
.y121{bottom:371.746667pt;}
.yee{bottom:377.506667pt;}
.yc3{bottom:377.986667pt;}
.y56{bottom:378.786667pt;}
.y10c{bottom:380.386667pt;}
.y1de{bottom:385.666667pt;}
.y78{bottom:385.986667pt;}
.y2e{bottom:386.466667pt;}
.y1aa{bottom:389.186667pt;}
.y18b{bottom:389.506667pt;}
.y120{bottom:390.146667pt;}
.yc2{bottom:396.386667pt;}
.y17e{bottom:399.746667pt;}
.y170{bottom:399.906667pt;}
.y3{bottom:403.266667pt;}
.y77{bottom:404.386667pt;}
.y1dd{bottom:405.186667pt;}
.yed{bottom:405.666667pt;}
.y55{bottom:406.306667pt;}
.y2d{bottom:410.786667pt;}
.y146{bottom:413.826667pt;}
.y20b{bottom:414.626667pt;}
.y11f{bottom:416.226667pt;}
.y2{bottom:418.146667pt;}
.y16f{bottom:418.306667pt;}
.yc1{bottom:422.626667pt;}
.y76{bottom:422.786667pt;}
.y1dc{bottom:423.586667pt;}
.y18a{bottom:427.746667pt;}
.y20a{bottom:433.026667pt;}
.ye7{bottom:433.853333pt;}
.y2c{bottom:435.106667pt;}
.y16e{bottom:436.706667pt;}
.y11e{bottom:437.986667pt;}
.y75{bottom:441.186667pt;}
.y1db{bottom:441.986667pt;}
.y10b{bottom:442.333333pt;}
.yc0{bottom:444.386667pt;}
.y189{bottom:446.146667pt;}
.y1a9{bottom:446.946667pt;}
.y145{bottom:449.026667pt;}
.y209{bottom:451.426667pt;}
.y16d{bottom:455.106667pt;}
.y74{bottom:459.586667pt;}
.y2b{bottom:461.506667pt;}
.y188{bottom:464.546667pt;}
.ye8{bottom:467.613333pt;}
.y1da{bottom:468.386667pt;}
.y208{bottom:469.826667pt;}
.y16c{bottom:473.506667pt;}
.y144{bottom:474.146667pt;}
.y1a8{bottom:475.906667pt;}
.y73{bottom:477.986667pt;}
.y187{bottom:482.946667pt;}
.y207{bottom:488.226667pt;}
.y16b{bottom:491.906667pt;}
.y143{bottom:492.546667pt;}
.y2a{bottom:494.146667pt;}
.yda{bottom:495.773333pt;}
.y72{bottom:496.386667pt;}
.y54{bottom:503.426667pt;}
.y107{bottom:504.253333pt;}
.y1a7{bottom:504.706667pt;}
.y1d9{bottom:505.506667pt;}
.y206{bottom:506.626667pt;}
.y186{bottom:509.346667pt;}
.y16a{bottom:510.306667pt;}
.y142{bottom:510.946667pt;}
.y71{bottom:514.786667pt;}
.yab{bottom:516.066667pt;}
.y53{bottom:521.986667pt;}
.y1d8{bottom:523.906667pt;}
.ydf{bottom:524.093333pt;}
.y29{bottom:526.786667pt;}
.y169{bottom:528.546667pt;}
.y141{bottom:529.346667pt;}
.yaa{bottom:531.106667pt;}
.y10a{bottom:532.413333pt;}
.y205{bottom:533.026667pt;}
.y70{bottom:533.186667pt;}
.y1a6{bottom:533.666667pt;}
.y185{bottom:536.866667pt;}
.y1d7{bottom:542.306667pt;}
.y52{bottom:543.426667pt;}
.y168{bottom:546.946667pt;}
.y140{bottom:547.746667pt;}
.ya9{bottom:549.506667pt;}
.y6f{bottom:551.586667pt;}
.ye6{bottom:552.253333pt;}
.y1a5{bottom:559.426667pt;}
.y102{bottom:560.573333pt;}
.y1d6{bottom:560.706667pt;}
.y167{bottom:565.346667pt;}
.y13f{bottom:566.146667pt;}
.y51{bottom:567.906667pt;}
.y6e{bottom:569.986667pt;}
.y27{bottom:575.586667pt;}
.y1f2{bottom:575.746667pt;}
.y1d5{bottom:579.106667pt;}
.y184{bottom:580.386667pt;}
.ydd{bottom:580.453333pt;}
.ybf{bottom:581.666667pt;}
.y166{bottom:583.746667pt;}
.y13e{bottom:584.546667pt;}
.y204{bottom:585.213333pt;}
.y1a4{bottom:585.693333pt;}
.ya8{bottom:586.333333pt;}
.y6d{bottom:588.413333pt;}
.y104{bottom:588.933333pt;}
.y1c7{bottom:590.173333pt;}
.y1f1{bottom:594.173333pt;}
.y1d4{bottom:597.533333pt;}
.ybe{bottom:600.093333pt;}
.y183{bottom:600.253333pt;}
.y1d1{bottom:600.413333pt;}
.y165{bottom:602.173333pt;}
.y13d{bottom:602.973333pt;}
.ya7{bottom:604.733333pt;}
.y6c{bottom:606.813333pt;}
.y26{bottom:608.093333pt;}
.y1c6{bottom:608.573333pt;}
.yd6{bottom:608.613333pt;}
.y1f0{bottom:612.573333pt;}
.y1a3{bottom:613.053333pt;}
.y1d3{bottom:615.933333pt;}
.y105{bottom:617.093333pt;}
.ybd{bottom:618.493333pt;}
.y1d0{bottom:618.813333pt;}
.y182{bottom:620.093333pt;}
.y164{bottom:620.573333pt;}
.y13c{bottom:621.373333pt;}
.ya6{bottom:623.133333pt;}
.y6b{bottom:625.213333pt;}
.y1c5{bottom:626.973333pt;}
.y203{bottom:627.293333pt;}
.y1ef{bottom:630.973333pt;}
.y1d2{bottom:635.773333pt;}
.ybc{bottom:636.893333pt;}
.y1cf{bottom:637.213333pt;}
.y163{bottom:638.973333pt;}
.y181{bottom:639.613333pt;}
.y13b{bottom:639.773333pt;}
.y25{bottom:640.733333pt;}
.ya5{bottom:641.533333pt;}
.y1a2{bottom:642.013333pt;}
.y6a{bottom:643.613333pt;}
.y101{bottom:645.253333pt;}
.y1c4{bottom:645.373333pt;}
.y1ee{bottom:649.373333pt;}
.yd5{bottom:652.453333pt;}
.y202{bottom:653.373333pt;}
.ybb{bottom:655.293333pt;}
.y1ce{bottom:655.613333pt;}
.y50{bottom:655.773333pt;}
.y162{bottom:657.373333pt;}
.y13a{bottom:658.173333pt;}
.ya4{bottom:659.933333pt;}
.y69{bottom:662.013333pt;}
.y1c3{bottom:663.773333pt;}
.y180{bottom:665.693333pt;}
.y1ed{bottom:667.773333pt;}
.yd4{bottom:669.573333pt;}
.y1a1{bottom:670.813333pt;}
.yba{bottom:673.693333pt;}
.y1cd{bottom:674.013333pt;}
.y201{bottom:675.133333pt;}
.y161{bottom:675.773333pt;}
.y139{bottom:676.573333pt;}
.y94{bottom:677.213333pt;}
.ya3{bottom:678.333333pt;}
.y19a{bottom:678.493333pt;}
.y4f{bottom:680.253333pt;}
.y68{bottom:680.413333pt;}
.y1c2{bottom:682.173333pt;}
.y1ec{bottom:686.173333pt;}
.y17f{bottom:687.453333pt;}
.yd2{bottom:687.973333pt;}
.y24{bottom:689.533333pt;}
.yb9{bottom:692.093333pt;}
.y1cc{bottom:692.413333pt;}
.y160{bottom:694.173333pt;}
.y138{bottom:694.973333pt;}
.y93{bottom:695.613333pt;}
.y200{bottom:696.413333pt;}
.y199{bottom:696.893333pt;}
.y67{bottom:698.813333pt;}
.y1a0{bottom:699.613333pt;}
.y1c1{bottom:700.573333pt;}
.yd3{bottom:703.013333pt;}
.y4e{bottom:703.773333pt;}
.y1eb{bottom:704.573333pt;}
.yd1{bottom:706.373333pt;}
.yb8{bottom:710.493333pt;}
.y1cb{bottom:710.813333pt;}
.y15f{bottom:712.573333pt;}
.y137{bottom:713.373333pt;}
.y92{bottom:714.013333pt;}
.ya2{bottom:715.133333pt;}
.y198{bottom:715.293333pt;}
.y66{bottom:717.213333pt;}
.y1fe{bottom:717.533333pt;}
.y1c0{bottom:718.973333pt;}
.y23{bottom:722.173333pt;}
.y4d{bottom:727.453333pt;}
.y19f{bottom:728.573333pt;}
.yb7{bottom:728.893333pt;}
.y1ca{bottom:729.213333pt;}
.y15e{bottom:730.973333pt;}
.y136{bottom:731.773333pt;}
.y91{bottom:732.413333pt;}
.y17d{bottom:733.213333pt;}
.ya1{bottom:733.533333pt;}
.y197{bottom:733.693333pt;}
.y65{bottom:735.613333pt;}
.y1bf{bottom:737.373333pt;}
.y1fd{bottom:738.813333pt;}
.y1{bottom:740.573333pt;}
.yb6{bottom:747.293333pt;}
.y4c{bottom:748.573333pt;}
.y15d{bottom:749.373333pt;}
.y135{bottom:750.173333pt;}
.y90{bottom:750.813333pt;}
.y17c{bottom:751.613333pt;}
.y22{bottom:751.773333pt;}
.ya0{bottom:751.933333pt;}
.y196{bottom:752.093333pt;}
.y64{bottom:754.013333pt;}
.y1c9{bottom:755.613333pt;}
.y1be{bottom:755.773333pt;}
.y19e{bottom:757.373333pt;}
.y1ea{bottom:758.653333pt;}
.y1fc{bottom:761.053333pt;}
.y11d{bottom:763.613333pt;}
.yb5{bottom:765.693333pt;}
.y134{bottom:768.573333pt;}
.y8f{bottom:769.213333pt;}
.y17b{bottom:770.013333pt;}
.y9f{bottom:770.333333pt;}
.y20{bottom:772.413333pt;}
.y1bd{bottom:774.173333pt;}
.y15c{bottom:775.773333pt;}
.y195{bottom:778.493333pt;}
.y4b{bottom:778.973333pt;}
.y1c8{bottom:783.133333pt;}
.y1fb{bottom:783.453333pt;}
.yb4{bottom:784.093333pt;}
.y19d{bottom:786.333333pt;}
.y133{bottom:786.973333pt;}
.y17a{bottom:788.413333pt;}
.y9e{bottom:788.733333pt;}
.y63{bottom:790.813333pt;}
.y1bc{bottom:792.573333pt;}
.y11c{bottom:794.173333pt;}
.y8e{bottom:800.573333pt;}
.yb3{bottom:802.493333pt;}
.y15b{bottom:803.493333pt;}
.y1f9{bottom:804.453333pt;}
.y1c{bottom:805.093333pt;}
.y194{bottom:806.053333pt;}
.y179{bottom:806.853333pt;}
.y9d{bottom:807.173333pt;}
.y132{bottom:807.653333pt;}
.y62{bottom:809.253333pt;}
.y48{bottom:809.573333pt;}
.y1bb{bottom:811.013333pt;}
.y11b{bottom:813.893333pt;}
.y19c{bottom:815.173333pt;}
.yb2{bottom:820.933333pt;}
.y178{bottom:825.253333pt;}
.y9c{bottom:825.573333pt;}
.y1f8{bottom:825.893333pt;}
.y61{bottom:827.653333pt;}
.y15a{bottom:827.973333pt;}
.y8d{bottom:828.933333pt;}
.y1ba{bottom:829.413333pt;}
.y193{bottom:830.533333pt;}
.y11a{bottom:833.413333pt;}
.y131{bottom:838.053333pt;}
.yb1{bottom:839.333333pt;}
.y177{bottom:843.653333pt;}
.y9b{bottom:843.973333pt;}
.y8c{bottom:847.333333pt;}
.y1b9{bottom:847.813333pt;}
.y1f7{bottom:848.133333pt;}
.y119{bottom:851.813333pt;}
.y47{bottom:852.293333pt;}
.y60{bottom:855.173333pt;}
.yb0{bottom:857.733333pt;}
.y176{bottom:862.053333pt;}
.y9a{bottom:862.373333pt;}
.y8b{bottom:865.733333pt;}
.y1b8{bottom:866.213333pt;}
.y130{bottom:868.453333pt;}
.y159{bottom:870.053333pt;}
.y118{bottom:870.213333pt;}
.y1f5{bottom:870.533333pt;}
.y192{bottom:872.613333pt;}
.y19b{bottom:872.933333pt;}
.y46{bottom:876.133333pt;}
.y19{bottom:879.173333pt;}
.y175{bottom:880.453333pt;}
.y99{bottom:880.773333pt;}
.y8a{bottom:884.133333pt;}
.y1b7{bottom:884.613333pt;}
.y5f{bottom:887.653333pt;}
.y158{bottom:888.453333pt;}
.y117{bottom:888.613333pt;}
.y191{bottom:891.013333pt;}
.y44{bottom:891.973333pt;}
.y1f3{bottom:892.773333pt;}
.yaf{bottom:894.533333pt;}
.y12f{bottom:898.853333pt;}
.y98{bottom:899.173333pt;}
.y89{bottom:902.533333pt;}
.y157{bottom:906.853333pt;}
.y116{bottom:907.013333pt;}
.y190{bottom:909.413333pt;}
.y42{bottom:910.053333pt;}
.y1b6{bottom:911.013333pt;}
.yae{bottom:912.933333pt;}
.y174{bottom:917.253333pt;}
.y97{bottom:917.573333pt;}
.y5e{bottom:920.293333pt;}
.y88{bottom:920.933333pt;}
.y156{bottom:925.253333pt;}
.y115{bottom:925.413333pt;}
.y18f{bottom:927.813333pt;}
.y40{bottom:928.293333pt;}
.y12e{bottom:929.253333pt;}
.yad{bottom:931.333333pt;}
.y173{bottom:935.653333pt;}
.y96{bottom:935.973333pt;}
.y1b5{bottom:938.533333pt;}
.y87{bottom:939.333333pt;}
.y155{bottom:943.653333pt;}
.y114{bottom:943.813333pt;}
.y18e{bottom:946.213333pt;}
.y17{bottom:946.373333pt;}
.yac{bottom:949.733333pt;}
.y5d{bottom:952.773333pt;}
.y172{bottom:954.053333pt;}
.y95{bottom:954.373333pt;}
.y86{bottom:957.733333pt;}
.y3e{bottom:958.693333pt;}
.y12d{bottom:959.653333pt;}
.y1e9{bottom:961.893333pt;}
.y154{bottom:962.053333pt;}
.y113{bottom:962.213333pt;}
.y18d{bottom:964.613333pt;}
.y171{bottom:980.293333pt;}
.y112{bottom:980.613333pt;}
.y153{bottom:988.293333pt;}
.y16{bottom:989.093333pt;}
.y12c{bottom:990.053333pt;}
.y18c{bottom:991.013333pt;}
.y111{bottom:999.013333pt;}
.y3d{bottom:1001.573333pt;}
.y12{bottom:1017.413333pt;}
.y14{bottom:1032.480000pt;}
.y11{bottom:1035.840000pt;}
.y10{bottom:1070.720000pt;}
.h11{height:15.200000pt;}
.h14{height:15.360000pt;}
.h24{height:16.800000pt;}
.h2c{height:16.832000pt;}
.h27{height:16.960000pt;}
.h2f{height:16.992000pt;}
.h1a{height:17.440000pt;}
.h19{height:17.600000pt;}
.h7{height:18.400000pt;}
.h1f{height:18.432000pt;}
.h37{height:20.000000pt;}
.hc{height:20.480000pt;}
.he{height:20.512000pt;}
.hb{height:20.640000pt;}
.h8{height:20.800000pt;}
.h36{height:20.960000pt;}
.h38{height:20.992000pt;}
.h35{height:21.120000pt;}
.h29{height:22.400000pt;}
.h2e{height:28.000000pt;}
.h17{height:29.760000pt;}
.h1c{height:29.792000pt;}
.h12{height:30.560000pt;}
.h13{height:30.720000pt;}
.h1b{height:31.200000pt;}
.h16{height:31.360000pt;}
.h22{height:33.760000pt;}
.hd{height:36.800000pt;}
.h33{height:36.832000pt;}
.h6{height:38.937500pt;}
.h15{height:40.358750pt;}
.h26{height:44.960000pt;}
.h1e{height:47.218750pt;}
.h18{height:50.062500pt;}
.h30{height:50.560000pt;}
.h31{height:50.592000pt;}
.h28{height:50.720000pt;}
.hf{height:52.834688pt;}
.h9{height:55.200000pt;}
.h3{height:55.402500pt;}
.h5{height:61.410000pt;}
.ha{height:62.080000pt;}
.h10{height:64.080000pt;}
.h2{height:66.750000pt;}
.h2a{height:73.120000pt;}
.h25{height:73.152000pt;}
.h2b{height:73.312000pt;}
.h2d{height:84.320000pt;}
.h34{height:85.600000pt;}
.h32{height:85.632000pt;}
.h1d{height:88.777500pt;}
.h23{height:101.472000pt;}
.h4{height:111.472500pt;}
.h20{height:793.280000pt;}
.h21{height:793.333333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:38.880000pt;}
.w24{width:45.440000pt;}
.w1e{width:46.080000pt;}
.w23{width:64.832000pt;}
.w11{width:65.280000pt;}
.w1d{width:65.472000pt;}
.w37{width:66.400000pt;}
.w36{width:68.000000pt;}
.w22{width:74.400000pt;}
.w21{width:74.720000pt;}
.w1c{width:75.040000pt;}
.w1b{width:75.360000pt;}
.w9{width:80.480000pt;}
.w32{width:87.200000pt;}
.w35{width:89.312000pt;}
.w27{width:90.240000pt;}
.w3{width:90.912000pt;}
.w18{width:92.512000pt;}
.w26{width:93.120000pt;}
.w19{width:93.760000pt;}
.w1a{width:93.952000pt;}
.w17{width:99.680000pt;}
.w13{width:99.712000pt;}
.wb{width:101.920000pt;}
.w10{width:104.832000pt;}
.w2d{width:119.392000pt;}
.wc{width:123.552000pt;}
.w34{width:133.312000pt;}
.w33{width:141.786667pt;}
.w38{width:148.666667pt;}
.w30{width:164.186667pt;}
.w2a{width:172.186667pt;}
.w2e{width:180.666667pt;}
.w29{width:198.266667pt;}
.w25{width:205.786667pt;}
.w1f{width:206.426667pt;}
.w31{width:219.106667pt;}
.w6{width:223.546667pt;}
.w20{width:225.466667pt;}
.w4{width:226.106667pt;}
.w2c{width:242.626667pt;}
.w2f{width:256.866667pt;}
.we{width:267.226667pt;}
.wf{width:267.266667pt;}
.w2b{width:270.626667pt;}
.w12{width:320.706667pt;}
.w39{width:357.026667pt;}
.wd{width:414.173333pt;}
.w5{width:426.653333pt;}
.w7{width:429.693333pt;}
.wa{width:520.133333pt;}
.w28{width:534.213333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w15{width:1122.666667pt;}
.w16{width:1122.719983pt;}
.w14{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x5e{left:4.640000pt;}
.x7{left:5.760000pt;}
.xa{left:6.880000pt;}
.x26{left:8.480000pt;}
.x1b{left:10.240000pt;}
.x21{left:11.680000pt;}
.x23{left:13.440000pt;}
.x31{left:14.400000pt;}
.x2b{left:16.480000pt;}
.x27{left:18.720000pt;}
.x35{left:20.160000pt;}
.x3d{left:21.280000pt;}
.x1f{left:22.240000pt;}
.x62{left:23.840000pt;}
.x33{left:25.440000pt;}
.x49{left:26.400000pt;}
.x30{left:29.120000pt;}
.x32{left:30.880000pt;}
.x38{left:32.320000pt;}
.x2f{left:33.280000pt;}
.x36{left:35.200000pt;}
.x2d{left:36.960000pt;}
.x3c{left:37.920000pt;}
.x3e{left:40.000000pt;}
.x2c{left:41.760000pt;}
.x2a{left:42.720000pt;}
.x2e{left:44.640000pt;}
.x4b{left:46.720000pt;}
.x16{left:47.999983pt;}
.x34{left:49.440000pt;}
.x3a{left:51.520000pt;}
.x64{left:56.040000pt;}
.x3b{left:57.280000pt;}
.x3f{left:58.400000pt;}
.x63{left:60.040000pt;}
.x1d{left:63.200000pt;}
.x4a{left:64.634667pt;}
.x54{left:69.600000pt;}
.x1a{left:71.360000pt;}
.x5b{left:72.511988pt;}
.x55{left:73.600000pt;}
.x2{left:75.551988pt;}
.x39{left:77.120000pt;}
.x37{left:80.480000pt;}
.x45{left:84.192000pt;}
.x43{left:86.751988pt;}
.x10{left:91.551988pt;}
.x51{left:95.232000pt;}
.x41{left:99.551988pt;}
.x11{left:107.551988pt;}
.x44{left:113.951988pt;}
.xb{left:116.032000pt;}
.x56{left:120.186667pt;}
.x42{left:123.551988pt;}
.x12{left:140.826667pt;}
.x5d{left:143.866667pt;}
.x1c{left:164.506667pt;}
.x58{left:172.026667pt;}
.x46{left:175.066667pt;}
.xd{left:178.906667pt;}
.xc{left:197.146667pt;}
.x4f{left:215.386667pt;}
.x4c{left:238.466655pt;}
.x66{left:250.946655pt;}
.x4d{left:256.386655pt;}
.x4e{left:263.266655pt;}
.x5a{left:265.346655pt;}
.x47{left:274.466667pt;}
.x14{left:275.586655pt;}
.x52{left:276.546667pt;}
.x57{left:286.466655pt;}
.x9{left:299.746667pt;}
.x8{left:302.306667pt;}
.x65{left:303.426667pt;}
.xe{left:344.386667pt;}
.x5f{left:366.493333pt;}
.x40{left:386.466650pt;}
.x1e{left:391.426667pt;}
.x5c{left:396.573322pt;}
.x60{left:434.493333pt;}
.x48{left:447.293333pt;}
.x50{left:458.653333pt;}
.x59{left:479.773333pt;}
.x20{left:485.826667pt;}
.x61{left:500.893333pt;}
.x53{left:534.053333pt;}
.x19{left:561.373317pt;}
.x22{left:580.413333pt;}
.xf{left:612.453333pt;}
.x15{left:618.213333pt;}
.x4{left:621.333333pt;}
.x3{left:622.693322pt;}
.x6{left:627.013333pt;}
.x17{left:632.413317pt;}
.x24{left:656.413333pt;}
.x5{left:659.973322pt;}
.x13{left:712.639988pt;}
.x1{left:717.759988pt;}
.x25{left:732.093333pt;}
.x28{left:798.213333pt;}
.x29{left:845.093333pt;}
.x18{left:975.200000pt;}
}




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