
    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_3387bc8bf7cac49b5e35ef2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_85d3c096e8ed866eccdd90cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_117bb9c83bb75f0b0bd202ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_ccbb85dd8412a11bbe1956b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1d95e07ed51233d8bbcbc85d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_548d8ff167629b77ab72bfad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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: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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.457800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls1b{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.lse{letter-spacing:0.423360px;}
.ls14{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.486600px;}
.lsf{letter-spacing:0.498000px;}
.ls0{letter-spacing:0.498240px;}
.lsc{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls1a{letter-spacing:6.660000px;}
.ls13{letter-spacing:10.800000px;}
.ls10{letter-spacing:46.558560px;}
.ls11{letter-spacing:63.838560px;}
.ls12{letter-spacing:63.970560px;}
.ls19{letter-spacing:71.038560px;}
.ls18{letter-spacing:79.678560px;}
.lsa{letter-spacing:81.250560px;}
.ls2{letter-spacing:82.690560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-119.520000px;}
.wsd{word-spacing:-60.480000px;}
.ws4{word-spacing:-23.425920px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.618000px;}
.ws10{word-spacing:-15.606600px;}
.wsc{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.543360px;}
.ws12{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.633400px;}
.wsf{word-spacing:-14.184000px;}
.wsb{word-spacing:-14.148000px;}
.wse{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.182000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-4.210080px;}
._10{margin-left:-3.144960px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.336960px;}
._f{width:5.002560px;}
._e{width:6.047040px;}
._a{width:7.571040px;}
._9{width:8.698080px;}
._b{width:10.199040px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._d{width:16.153440px;}
._c{width:17.280000px;}
._12{width:18.809280px;}
._14{width:19.921440px;}
._16{width:21.650400px;}
._15{width:23.046720px;}
._18{width:24.163200px;}
._19{width:25.671360px;}
._17{width:27.243360px;}
._24{width:28.549920px;}
._25{width:30.021600px;}
._37{width:31.738560px;}
._1d{width:34.473600px;}
._28{width:36.590400px;}
._29{width:38.075760px;}
._49{width:39.977280px;}
._38{width:41.953440px;}
._3a{width:50.057760px;}
._31{width:52.278240px;}
._1a{width:53.343360px;}
._1b{width:54.492480px;}
._34{width:56.347680px;}
._36{width:59.434560px;}
._35{width:60.644160px;}
._2d{width:63.164640px;}
._3d{width:66.890880px;}
._45{width:69.005280px;}
._3e{width:70.200000px;}
._1e{width:71.389920px;}
._3c{width:80.196480px;}
._48{width:81.267840px;}
._23{width:83.643840px;}
._22{width:84.654720px;}
._44{width:89.328960px;}
._3f{width:91.324800px;}
._2f{width:94.553760px;}
._2e{width:95.618880px;}
._41{width:107.775360px;}
._40{width:109.310880px;}
._42{width:112.052160px;}
._32{width:114.592320px;}
._21{width:121.484160px;}
._20{width:123.140160px;}
._4c{width:128.197920px;}
._4b{width:129.470400px;}
._43{width:132.736320px;}
._46{width:135.518400px;}
._26{width:138.058560px;}
._27{width:147.493440px;}
._1c{width:151.260480px;}
._2c{width:155.373120px;}
._8{width:158.283840px;}
._2a{width:173.033280px;}
._4d{width:178.558080px;}
._4e{width:180.215040px;}
._30{width:192.591840px;}
._39{width:196.136640px;}
._2b{width:229.484640px;}
._3b{width:256.337760px;}
._33{width:266.215680px;}
._1f{width:335.845440px;}
._47{width:343.025280px;}
._2{width:393.960000px;}
._4a{width:409.207680px;}
._7{width:687.876000px;}
._13{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc8{color:rgb(68,84,106);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y13{bottom:6.120000px;}
.ye{bottom:11.556000px;}
.y96{bottom:12.240000px;}
.yad{bottom:12.270000px;}
.y9d{bottom:12.285000px;}
.y208{bottom:14.760000px;}
.yc{bottom:19.836000px;}
.y219{bottom:25.914000px;}
.yb1{bottom:29.190000px;}
.y98{bottom:29.520000px;}
.yac{bottom:29.550000px;}
.y9c{bottom:29.565000px;}
.y212{bottom:34.560000px;}
.y21c{bottom:34.605000px;}
.y207{bottom:34.920000px;}
.y9f{bottom:35.280000px;}
.y15d{bottom:35.325000px;}
.y12{bottom:41.760000px;}
.yf{bottom:43.560000px;}
.y218{bottom:45.714000px;}
.yb0{bottom:46.470000px;}
.yaa{bottom:46.800000px;}
.ya2{bottom:52.605000px;}
.y21f{bottom:54.720000px;}
.y211{bottom:54.750000px;}
.y217{bottom:65.559000px;}
.yb{bottom:68.400000px;}
.y21e{bottom:74.520000px;}
.y210{bottom:74.550000px;}
.y11{bottom:77.040000px;}
.y216{bottom:85.359000px;}
.y20f{bottom:94.350000px;}
.y46{bottom:94.716000px;}
.y215{bottom:105.159000px;}
.y9{bottom:111.636000px;}
.y20e{bottom:114.150000px;}
.y214{bottom:124.959000px;}
.y16f{bottom:127.476000px;}
.yf7{bottom:132.516000px;}
.y213{bottom:133.236000px;}
.y20d{bottom:133.950000px;}
.y42{bottom:134.676000px;}
.ybd{bottom:137.556000px;}
.y77{bottom:139.356000px;}
.y124{bottom:141.516000px;}
.y18a{bottom:142.596000px;}
.y153{bottom:144.396000px;}
.y23e{bottom:148.716000px;}
.y262{bottom:149.076000px;}
.y1e0{bottom:150.870000px;}
.y9e{bottom:152.670000px;}
.y20c{bottom:153.750000px;}
.y41{bottom:154.470000px;}
.ye5{bottom:155.190000px;}
.y1ad{bottom:157.710000px;}
.yf6{bottom:158.070000px;}
.y76{bottom:159.150000px;}
.y123{bottom:161.310000px;}
.y189{bottom:167.070000px;}
.y13c{bottom:167.430000px;}
.y23d{bottom:168.510000px;}
.y261{bottom:168.870000px;}
.y1df{bottom:170.670000px;}
.y152{bottom:173.190000px;}
.y20b{bottom:173.595000px;}
.y40{bottom:174.270000px;}
.ye4{bottom:174.990000px;}
.y16e{bottom:176.790000px;}
.y1ac{bottom:177.510000px;}
.y1f2{bottom:178.230000px;}
.y75{bottom:178.950000px;}
.y122{bottom:181.110000px;}
.y13b{bottom:187.230000px;}
.y1b9{bottom:187.950000px;}
.y23c{bottom:188.310000px;}
.y9b{bottom:188.670000px;}
.y1de{bottom:190.470000px;}
.y188{bottom:191.550000px;}
.y20a{bottom:193.395000px;}
.y3f{bottom:194.070000px;}
.ye3{bottom:194.790000px;}
.y16d{bottom:196.590000px;}
.y151{bottom:196.950000px;}
.y1ab{bottom:197.310000px;}
.y260{bottom:197.715000px;}
.y1f1{bottom:198.075000px;}
.y74{bottom:199.155000px;}
.y121{bottom:200.955000px;}
.y13a{bottom:207.435000px;}
.y23b{bottom:208.155000px;}
.y1dd{bottom:210.675000px;}
.ybc{bottom:213.915000px;}
.y3e{bottom:214.275000px;}
.ye2{bottom:214.635000px;}
.y16c{bottom:216.435000px;}
.y25f{bottom:217.515000px;}
.y1f0{bottom:217.875000px;}
.y73{bottom:218.955000px;}
.y120{bottom:220.755000px;}
.y139{bottom:227.235000px;}
.y23a{bottom:228.315000px;}
.y1dc{bottom:230.475000px;}
.y1aa{bottom:232.275000px;}
.y150{bottom:232.995000px;}
.ybb{bottom:233.715000px;}
.y3d{bottom:234.075000px;}
.ye1{bottom:234.435000px;}
.y16b{bottom:236.235000px;}
.y1ef{bottom:237.675000px;}
.y72{bottom:238.755000px;}
.y11f{bottom:240.555000px;}
.y187{bottom:240.915000px;}
.y9a{bottom:241.995000px;}
.y25e{bottom:246.315000px;}
.y138{bottom:247.035000px;}
.y239{bottom:248.115000px;}
.y1db{bottom:250.275000px;}
.y1a9{bottom:252.075000px;}
.yba{bottom:253.515000px;}
.y3c{bottom:253.875000px;}
.ye0{bottom:256.395000px;}
.y1ee{bottom:257.475000px;}
.y71{bottom:258.555000px;}
.y11e{bottom:260.355000px;}
.y186{bottom:265.395000px;}
.y25d{bottom:266.115000px;}
.y137{bottom:266.835000px;}
.y238{bottom:267.915000px;}
.y14f{bottom:268.995000px;}
.yb9{bottom:270.075000px;}
.y1a8{bottom:271.875000px;}
.y3b{bottom:273.675000px;}
.y1ed{bottom:277.275000px;}
.y16a{bottom:277.995000px;}
.y70{bottom:278.355000px;}
.y11d{bottom:280.155000px;}
.y209{bottom:281.955000px;}
.ydf{bottom:285.195000px;}
.y136{bottom:286.635000px;}
.y237{bottom:287.715000px;}
.y185{bottom:289.875000px;}
.y1a7{bottom:291.675000px;}
.y3a{bottom:293.475000px;}
.y25c{bottom:294.915000px;}
.y99{bottom:295.275000px;}
.y1ec{bottom:297.075000px;}
.y6f{bottom:298.155000px;}
.y11c{bottom:302.115000px;}
.y14e{bottom:304.995000px;}
.y135{bottom:306.435000px;}
.y236{bottom:307.515000px;}
.y1da{bottom:309.675000px;}
.y1a6{bottom:311.475000px;}
.y39{bottom:313.275000px;}
.yde{bottom:313.995000px;}
.y25b{bottom:314.715000px;}
.y169{bottom:315.795000px;}
.y184{bottom:317.235000px;}
.y106{bottom:317.955000px;}
.y6e{bottom:319.755000px;}
.y1eb{bottom:325.905000px;}
.y134{bottom:326.265000px;}
.y235{bottom:327.345000px;}
.y1d9{bottom:329.505000px;}
.y11b{bottom:330.945000px;}
.y97{bottom:331.305000px;}
.y38{bottom:333.105000px;}
.ydd{bottom:333.825000px;}
.y183{bottom:337.065000px;}
.y105{bottom:337.785000px;}
.y168{bottom:339.585000px;}
.y14d{bottom:341.025000px;}
.y25a{bottom:343.905000px;}
.y133{bottom:346.065000px;}
.y234{bottom:347.145000px;}
.y6d{bottom:348.945000px;}
.y1d8{bottom:349.305000px;}
.y11a{bottom:350.745000px;}
.y1a5{bottom:351.105000px;}
.y1ea{bottom:351.465000px;}
.y37{bottom:352.905000px;}
.ydc{bottom:353.625000px;}
.y182{bottom:356.865000px;}
.y104{bottom:357.585000px;}
.yb8{bottom:360.105000px;}
.y259{bottom:363.705000px;}
.y132{bottom:365.865000px;}
.y233{bottom:366.945000px;}
.y6c{bottom:368.745000px;}
.y1d7{bottom:369.105000px;}
.y119{bottom:370.545000px;}
.y1a4{bottom:370.905000px;}
.y36{bottom:372.705000px;}
.ydb{bottom:373.425000px;}
.y167{bottom:375.585000px;}
.y181{bottom:376.665000px;}
.y14c{bottom:377.025000px;}
.y103{bottom:379.545000px;}
.yb7{bottom:379.905000px;}
.y95{bottom:384.585000px;}
.y131{bottom:385.665000px;}
.y232{bottom:386.745000px;}
.y6b{bottom:388.545000px;}
.y1d6{bottom:388.905000px;}
.y118{bottom:390.345000px;}
.y35{bottom:392.505000px;}
.yda{bottom:393.225000px;}
.yb6{bottom:396.465000px;}
.y1a3{bottom:399.705000px;}
.y180{bottom:405.465000px;}
.yf5{bottom:405.825000px;}
.y231{bottom:406.545000px;}
.y6a{bottom:408.345000px;}
.y1d5{bottom:409.065000px;}
.y117{bottom:410.145000px;}
.y166{bottom:411.585000px;}
.y258{bottom:412.305000px;}
.y34{bottom:412.665000px;}
.yd9{bottom:413.025000px;}
.yf4{bottom:424.185000px;}
.y130{bottom:425.625000px;}
.y230{bottom:426.705000px;}
.y69{bottom:428.145000px;}
.y1a2{bottom:428.505000px;}
.y116{bottom:429.945000px;}
.y1d4{bottom:430.665000px;}
.y14b{bottom:431.385000px;}
.y33{bottom:432.465000px;}
.yd8{bottom:432.825000px;}
.y17f{bottom:434.625000px;}
.y102{bottom:437.145000px;}
.y94{bottom:438.585000px;}
.y257{bottom:441.105000px;}
.yf3{bottom:443.985000px;}
.y12f{bottom:445.425000px;}
.y22f{bottom:446.505000px;}
.y165{bottom:447.585000px;}
.y68{bottom:447.945000px;}
.y1a1{bottom:448.305000px;}
.y115{bottom:449.790000px;}
.y32{bottom:452.310000px;}
.yd7{bottom:453.030000px;}
.y101{bottom:456.990000px;}
.y17e{bottom:458.430000px;}
.y1d3{bottom:459.510000px;}
.y14a{bottom:460.230000px;}
.y256{bottom:460.950000px;}
.yf2{bottom:463.830000px;}
.yb5{bottom:464.190000px;}
.y12e{bottom:465.270000px;}
.y93{bottom:465.990000px;}
.y22e{bottom:466.350000px;}
.y67{bottom:467.790000px;}
.y1a0{bottom:468.510000px;}
.y1b8{bottom:469.230000px;}
.y114{bottom:469.950000px;}
.yd6{bottom:472.830000px;}
.y100{bottom:476.790000px;}
.y1d2{bottom:479.310000px;}
.y149{bottom:480.030000px;}
.y255{bottom:480.750000px;}
.y31{bottom:481.110000px;}
.yf1{bottom:483.630000px;}
.y12d{bottom:485.070000px;}
.y92{bottom:485.790000px;}
.y22d{bottom:486.150000px;}
.y66{bottom:487.590000px;}
.y19f{bottom:488.310000px;}
.y113{bottom:489.750000px;}
.yd5{bottom:492.630000px;}
.yb4{bottom:493.350000px;}
.y17d{bottom:494.430000px;}
.yff{bottom:496.590000px;}
.y1d1{bottom:499.110000px;}
.y148{bottom:499.830000px;}
.yf0{bottom:503.430000px;}
.y22c{bottom:505.950000px;}
.y65{bottom:507.390000px;}
.y19e{bottom:508.110000px;}
.y112{bottom:509.550000px;}
.y30{bottom:509.910000px;}
.yd4{bottom:512.430000px;}
.y12c{bottom:513.870000px;}
.yfe{bottom:516.390000px;}
.y1d0{bottom:518.910000px;}
.yb3{bottom:519.270000px;}
.y147{bottom:519.630000px;}
.yef{bottom:523.230000px;}
.y22b{bottom:525.750000px;}
.y2f{bottom:527.190000px;}
.y19d{bottom:527.910000px;}
.y111{bottom:529.350000px;}
.y17c{bottom:530.430000px;}
.yd3{bottom:532.230000px;}
.y91{bottom:536.190000px;}
.y1cf{bottom:538.710000px;}
.y12b{bottom:539.430000px;}
.y2e{bottom:544.470000px;}
.yee{bottom:545.190000px;}
.y22a{bottom:545.550000px;}
.y64{bottom:547.350000px;}
.y19c{bottom:547.710000px;}
.yb2{bottom:548.430000px;}
.y110{bottom:549.150000px;}
.yd2{bottom:552.030000px;}
.y90{bottom:555.990000px;}
.yfd{bottom:556.350000px;}
.y254{bottom:558.150000px;}
.y1ce{bottom:558.870000px;}
.y146{bottom:559.230000px;}
.y2d{bottom:561.750000px;}
.y229{bottom:565.350000px;}
.y17b{bottom:566.430000px;}
.y63{bottom:567.150000px;}
.y19b{bottom:569.310000px;}
.y10f{bottom:570.750000px;}
.yd1{bottom:571.830000px;}
.yaf{bottom:572.190000px;}
.y164{bottom:573.630000px;}
.yed{bottom:573.990000px;}
.y206{bottom:575.460000px;}
.y8f{bottom:575.820000px;}
.yfc{bottom:576.180000px;}
.y253{bottom:578.340000px;}
.y1cd{bottom:578.700000px;}
.y2c{bottom:579.060000px;}
.y228{bottom:585.180000px;}
.y62{bottom:586.980000px;}
.yd0{bottom:591.660000px;}
.yec{bottom:593.820000px;}
.y1b7{bottom:595.620000px;}
.y8e{bottom:595.980000px;}
.y2b{bottom:596.340000px;}
.y1cc{bottom:598.500000px;}
.y145{bottom:599.220000px;}
.y10e{bottom:599.580000px;}
.y163{bottom:601.020000px;}
.y17a{bottom:602.460000px;}
.y227{bottom:604.980000px;}
.y252{bottom:607.140000px;}
.y19a{bottom:607.500000px;}
.y61{bottom:608.580000px;}
.ycf{bottom:611.460000px;}
.y2a{bottom:613.620000px;}
.y205{bottom:613.980000px;}
.y8d{bottom:615.780000px;}
.y1cb{bottom:618.300000px;}
.y144{bottom:619.020000px;}
.y10d{bottom:619.740000px;}
.y162{bottom:624.780000px;}
.y251{bottom:626.940000px;}
.y199{bottom:627.300000px;}
.y1e9{bottom:630.540000px;}
.y29{bottom:630.900000px;}
.yce{bottom:631.260000px;}
.yeb{bottom:633.420000px;}
.y204{bottom:633.780000px;}
.y8c{bottom:635.580000px;}
.y60{bottom:637.380000px;}
.y1ca{bottom:638.100000px;}
.y179{bottom:638.460000px;}
.y143{bottom:638.820000px;}
.y10c{bottom:639.540000px;}
.yae{bottom:642.420000px;}
.y226{bottom:644.940000px;}
.y198{bottom:647.100000px;}
.y28{bottom:647.820000px;}
.y1e8{bottom:648.900000px;}
.ycd{bottom:651.420000px;}
.yea{bottom:653.220000px;}
.y203{bottom:653.580000px;}
.yfb{bottom:655.380000px;}
.y250{bottom:655.740000px;}
.y8b{bottom:657.180000px;}
.y1c9{bottom:657.900000px;}
.y142{bottom:658.620000px;}
.y10b{bottom:659.340000px;}
.y161{bottom:660.780000px;}
.y225{bottom:664.740000px;}
.y27{bottom:665.100000px;}
.y5f{bottom:666.180000px;}
.y197{bottom:666.900000px;}
.y1e7{bottom:668.700000px;}
.ycc{bottom:671.220000px;}
.ye9{bottom:673.020000px;}
.y202{bottom:673.380000px;}
.y178{bottom:674.460000px;}
.yfa{bottom:675.180000px;}
.y24f{bottom:675.540000px;}
.y1c8{bottom:677.700000px;}
.y141{bottom:678.420000px;}
.y10a{bottom:679.140000px;}
.y26{bottom:682.380000px;}
.y224{bottom:684.540000px;}
.y8a{bottom:685.980000px;}
.y5e{bottom:686.340000px;}
.y196{bottom:686.700000px;}
.y1e6{bottom:688.500000px;}
.ycb{bottom:691.020000px;}
.y201{bottom:693.180000px;}
.yf9{bottom:694.980000px;}
.yab{bottom:695.700000px;}
.y160{bottom:696.780000px;}
.y1c7{bottom:697.500000px;}
.y140{bottom:698.220000px;}
.y25{bottom:699.660000px;}
.ye8{bottom:701.850000px;}
.y1b6{bottom:704.010000px;}
.y223{bottom:704.370000px;}
.y5d{bottom:706.170000px;}
.y195{bottom:706.530000px;}
.y109{bottom:707.970000px;}
.y1e5{bottom:708.690000px;}
.y177{bottom:710.490000px;}
.yca{bottom:710.850000px;}
.y200{bottom:713.010000px;}
.y89{bottom:714.810000px;}
.y24{bottom:716.970000px;}
.y13f{bottom:718.050000px;}
.y1c6{bottom:719.490000px;}
.y222{bottom:724.170000px;}
.y5c{bottom:725.970000px;}
.y194{bottom:726.330000px;}
.ye7{bottom:727.410000px;}
.y1b5{bottom:727.770000px;}
.y1e4{bottom:728.490000px;}
.yc9{bottom:730.650000px;}
.y15f{bottom:732.810000px;}
.y24e{bottom:733.170000px;}
.y108{bottom:733.530000px;}
.y88{bottom:734.610000px;}
.y23{bottom:743.250000px;}
.y221{bottom:743.970000px;}
.y5b{bottom:745.770000px;}
.y193{bottom:746.130000px;}
.y176{bottom:746.490000px;}
.y13e{bottom:746.850000px;}
.y1c5{bottom:748.290000px;}
.ya9{bottom:749.010000px;}
.yc8{bottom:750.450000px;}
.y1ff{bottom:752.610000px;}
.y24d{bottom:752.970000px;}
.y87{bottom:754.770000px;}
.yf8{bottom:756.570000px;}
.y22{bottom:760.530000px;}
.y1b4{bottom:763.770000px;}
.y5a{bottom:765.570000px;}
.y192{bottom:765.930000px;}
.y1c4{bottom:768.090000px;}
.y15e{bottom:768.810000px;}
.yc7{bottom:772.050000px;}
.y13d{bottom:772.410000px;}
.y24c{bottom:772.770000px;}
.y86{bottom:774.570000px;}
.y21{bottom:777.810000px;}
.y220{bottom:783.570000px;}
.y59{bottom:785.370000px;}
.y191{bottom:785.730000px;}
.y1c3{bottom:787.890000px;}
.y1fe{bottom:792.210000px;}
.y85{bottom:794.370000px;}
.y20{bottom:795.090000px;}
.y1b3{bottom:799.770000px;}
.y175{bottom:800.130000px;}
.yc6{bottom:801.210000px;}
.y24b{bottom:801.570000px;}
.y15c{bottom:804.810000px;}
.y58{bottom:805.170000px;}
.y190{bottom:805.890000px;}
.y12a{bottom:806.610000px;}
.y1c2{bottom:807.690000px;}
.y1f{bottom:812.370000px;}
.y84{bottom:814.170000px;}
.y174{bottom:818.490000px;}
.ya8{bottom:819.570000px;}
.yc5{bottom:821.010000px;}
.y24a{bottom:821.370000px;}
.y57{bottom:824.970000px;}
.y18f{bottom:825.690000px;}
.y1c1{bottom:827.535000px;}
.y1e{bottom:829.695000px;}
.y26a{bottom:830.415000px;}
.y83{bottom:834.015000px;}
.y1b2{bottom:835.815000px;}
.y173{bottom:838.695000px;}
.yc4{bottom:840.855000px;}
.y56{bottom:844.815000px;}
.y18e{bottom:845.535000px;}
.y1d{bottom:846.615000px;}
.y1c0{bottom:847.335000px;}
.y249{bottom:850.575000px;}
.y82{bottom:853.815000px;}
.y172{bottom:858.495000px;}
.y15b{bottom:858.855000px;}
.y269{bottom:859.575000px;}
.yc3{bottom:861.735000px;}
.y1fd{bottom:862.815000px;}
.y1c{bottom:863.895000px;}
.y55{bottom:864.615000px;}
.y18d{bottom:865.335000px;}
.y1bf{bottom:867.135000px;}
.y248{bottom:870.375000px;}
.y21d{bottom:871.095000px;}
.y1b1{bottom:871.815000px;}
.ya7{bottom:872.895000px;}
.y81{bottom:873.615000px;}
.y171{bottom:878.295000px;}
.y268{bottom:879.375000px;}
.y1b{bottom:881.175000px;}
.yc2{bottom:882.615000px;}
.y54{bottom:884.415000px;}
.y15a{bottom:886.215000px;}
.y1be{bottom:886.935000px;}
.y80{bottom:893.415000px;}
.y18c{bottom:894.135000px;}
.y170{bottom:894.855000px;}
.y247{bottom:899.175000px;}
.y1fc{bottom:902.415000px;}
.yc1{bottom:904.215000px;}
.y53{bottom:904.575000px;}
.y1a{bottom:907.095000px;}
.y1b0{bottom:907.815000px;}
.y267{bottom:908.175000px;}
.y159{bottom:909.975000px;}
.y7f{bottom:913.215000px;}
.y246{bottom:918.975000px;}
.y18b{bottom:919.695000px;}
.y19{bottom:920.775000px;}
.y1fb{bottom:922.215000px;}
.y129{bottom:924.015000px;}
.y52{bottom:924.375000px;}
.ya6{bottom:926.895000px;}
.y7e{bottom:933.015000px;}
.y18{bottom:935.175000px;}
.y266{bottom:936.975000px;}
.y1fa{bottom:942.015000px;}
.y128{bottom:943.815000px;}
.y51{bottom:944.175000px;}
.y158{bottom:945.975000px;}
.y1bd{bottom:946.695000px;}
.y245{bottom:947.775000px;}
.y17{bottom:952.845000px;}
.y7d{bottom:953.205000px;}
.ya5{bottom:954.285000px;}
.y265{bottom:956.805000px;}
.y1f9{bottom:962.205000px;}
.y50{bottom:964.005000px;}
.y1bc{bottom:966.525000px;}
.y244{bottom:967.605000px;}
.y127{bottom:970.125000px;}
.y7c{bottom:973.005000px;}
.y16{bottom:973.365000px;}
.ya4{bottom:978.045000px;}
.y1af{bottom:979.845000px;}
.y157{bottom:982.005000px;}
.y4f{bottom:983.805000px;}
.y264{bottom:985.605000px;}
.y1bb{bottom:986.325000px;}
.y7b{bottom:992.805000px;}
.ye6{bottom:996.045000px;}
.y243{bottom:996.405000px;}
.y15{bottom:1000.725000px;}
.y1f8{bottom:1001.805000px;}
.y4e{bottom:1003.605000px;}
.y107{bottom:1005.045000px;}
.y126{bottom:1005.405000px;}
.y1e3{bottom:1006.125000px;}
.y1ba{bottom:1007.925000px;}
.y7a{bottom:1012.605000px;}
.y242{bottom:1016.205000px;}
.y156{bottom:1018.005000px;}
.y1f7{bottom:1021.605000px;}
.y4d{bottom:1023.405000px;}
.y1e2{bottom:1025.925000px;}
.y14{bottom:1027.365000px;}
.ya3{bottom:1031.325000px;}
.y79{bottom:1032.405000px;}
.y1ae{bottom:1033.125000px;}
.y125{bottom:1034.205000px;}
.y1f6{bottom:1041.405000px;}
.y4c{bottom:1043.205000px;}
.y241{bottom:1045.005000px;}
.y1e1{bottom:1045.725000px;}
.y8{bottom:1047.165000px;}
.y21b{bottom:1048.605000px;}
.yc0{bottom:1052.205000px;}
.y78{bottom:1054.005000px;}
.y1f5{bottom:1061.205000px;}
.y4b{bottom:1063.005000px;}
.y7{bottom:1064.445000px;}
.y240{bottom:1064.805000px;}
.ya1{bottom:1067.325000px;}
.ybf{bottom:1072.005000px;}
.y263{bottom:1073.805000px;}
.y1f4{bottom:1081.050000px;}
.y6{bottom:1082.130000px;}
.y4a{bottom:1082.850000px;}
.y155{bottom:1090.050000px;}
.ybe{bottom:1094.010000px;}
.y21a{bottom:1098.330000px;}
.y1f3{bottom:1100.850000px;}
.y49{bottom:1103.010000px;}
.y10{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y23f{bottom:1113.810000px;}
.ya0{bottom:1120.650000px;}
.y48{bottom:1122.810000px;}
.y4{bottom:1128.210000px;}
.y47{bottom:1142.610000px;}
.y154{bottom:1144.050000px;}
.y3{bottom:1151.610000px;}
.y45{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y44{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y43{bottom:1202.010000px;}
.h5{height:8.640000px;}
.hf{height:15.516000px;}
.h7{height:32.436000px;}
.h12{height:35.280000px;}
.h14{height:35.316000px;}
.he{height:41.696016px;}
.h6{height:48.013594px;}
.h8{height:48.147188px;}
.h11{height:48.601406px;}
.h1c{height:48.636000px;}
.h13{height:52.560000px;}
.h15{height:52.596000px;}
.h4{height:53.067656px;}
.h10{height:53.215313px;}
.hd{height:53.717344px;}
.h1b{height:57.600000px;}
.h18{height:57.960000px;}
.h3{height:58.121719px;}
.hc{height:58.833281px;}
.h2{height:63.949219px;}
.h17{height:69.516000px;}
.h16{height:69.840000px;}
.hb{height:85.691953px;}
.ha{height:95.300859px;}
.h9{height:106.596000px;}
.h1a{height:147.996000px;}
.h1d{height:176.790000px;}
.h19{height:216.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:48.996000px;}
.w13{width:49.356000px;}
.w16{width:54.360000px;}
.w19{width:54.756000px;}
.w11{width:74.520000px;}
.w24{width:83.196000px;}
.w12{width:83.880000px;}
.w27{width:90.036000px;}
.w17{width:112.032000px;}
.w1a{width:126.756000px;}
.wb{width:134.352000px;}
.w15{width:135.072000px;}
.w1e{width:136.872000px;}
.w18{width:140.796000px;}
.w22{width:141.912000px;}
.wd{width:151.635000px;}
.w25{width:154.515000px;}
.w21{width:160.275000px;}
.w1f{width:170.355000px;}
.w1b{width:172.155000px;}
.w26{width:176.475000px;}
.w4{width:181.875000px;}
.wa{width:182.955000px;}
.w10{width:184.755000px;}
.w20{width:186.555000px;}
.w23{width:187.995000px;}
.w1c{width:192.315000px;}
.wf{width:195.555000px;}
.w1d{width:202.035000px;}
.we{width:330.630000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.wc{width:392.910000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x1{left:106.235987px;}
.x1e{left:117.035987px;}
.xe{left:119.915987px;}
.x5{left:127.869000px;}
.x1c{left:133.271987px;}
.xa{left:141.551987px;}
.x1f{left:144.071987px;}
.x7{left:146.595000px;}
.x1d{left:160.274987px;}
.x26{left:169.994987px;}
.x44{left:182.594987px;}
.x39{left:191.235000px;}
.x35{left:196.275000px;}
.x24{left:198.794987px;}
.x22{left:202.034987px;}
.x3d{left:210.314987px;}
.xb{left:219.704987px;}
.x2a{left:224.385000px;}
.x20{left:225.464987px;}
.x28{left:228.704987px;}
.x3f{left:234.464987px;}
.x30{left:242.745000px;}
.x12{left:244.184987px;}
.x38{left:246.704987px;}
.x8{left:248.865000px;}
.xd{left:254.984987px;}
.x17{left:259.305000px;}
.x13{left:290.625000px;}
.x40{left:294.585000px;}
.x11{left:298.230000px;}
.x34{left:301.424987px;}
.xc{left:306.104987px;}
.x6{left:308.664000px;}
.x3c{left:310.829987px;}
.x36{left:332.070000px;}
.x33{left:334.229987px;}
.x2f{left:343.229987px;}
.x46{left:346.110000px;}
.x16{left:373.469987px;}
.x43{left:383.189987px;}
.x3a{left:393.990000px;}
.x2b{left:409.860000px;}
.x15{left:425.700000px;}
.x2{left:446.579987px;}
.xf{left:447.660000px;}
.x10{left:453.420000px;}
.x41{left:455.580000px;}
.x2c{left:485.130000px;}
.x37{left:504.930000px;}
.x47{left:523.290000px;}
.x3b{left:531.570000px;}
.x31{left:552.090000px;}
.x21{left:558.929987px;}
.x2d{left:569.730000px;}
.x18{left:590.655000px;}
.x42{left:598.215000px;}
.x4{left:605.055000px;}
.x32{left:607.575000px;}
.x29{left:611.894987px;}
.x2e{left:619.815000px;}
.x3e{left:647.534987px;}
.x23{left:664.124987px;}
.x45{left:679.244987px;}
.x1a{left:682.484987px;}
.x25{left:686.804987px;}
.x27{left:688.604987px;}
.x48{left:696.165000px;}
.x1b{left:776.489987px;}
.x19{left:787.289987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.376320pt;}
.ls14{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.432533pt;}
.lsf{letter-spacing:0.442667pt;}
.ls0{letter-spacing:0.442880pt;}
.lsc{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls10{letter-spacing:41.385387pt;}
.ls11{letter-spacing:56.745387pt;}
.ls12{letter-spacing:56.862720pt;}
.ls19{letter-spacing:63.145387pt;}
.ls18{letter-spacing:70.825387pt;}
.lsa{letter-spacing:72.222720pt;}
.ls2{letter-spacing:73.502720pt;}
.ws3{word-spacing:-106.240000pt;}
.wsd{word-spacing:-53.760000pt;}
.ws4{word-spacing:-20.823040pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.882667pt;}
.ws10{word-spacing:-13.872533pt;}
.wsc{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.816320pt;}
.ws12{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.025067pt;}
.ws7{word-spacing:-13.007467pt;}
.wsf{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.576000pt;}
.wse{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-3.742293pt;}
._10{margin-left:-2.795520pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.966187pt;}
._f{width:4.446720pt;}
._e{width:5.375147pt;}
._a{width:6.729813pt;}
._9{width:7.731627pt;}
._b{width:9.065813pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._d{width:14.358613pt;}
._c{width:15.360000pt;}
._12{width:16.719360pt;}
._14{width:17.707947pt;}
._16{width:19.244800pt;}
._15{width:20.485973pt;}
._18{width:21.478400pt;}
._19{width:22.818987pt;}
._17{width:24.216320pt;}
._24{width:25.377707pt;}
._25{width:26.685867pt;}
._37{width:28.212053pt;}
._1d{width:30.643200pt;}
._28{width:32.524800pt;}
._29{width:33.845120pt;}
._49{width:35.535360pt;}
._38{width:37.291947pt;}
._3a{width:44.495787pt;}
._31{width:46.469547pt;}
._1a{width:47.416320pt;}
._1b{width:48.437760pt;}
._34{width:50.086827pt;}
._36{width:52.830720pt;}
._35{width:53.905920pt;}
._2d{width:56.146347pt;}
._3d{width:59.458560pt;}
._45{width:61.338027pt;}
._3e{width:62.400000pt;}
._1e{width:63.457707pt;}
._3c{width:71.285760pt;}
._48{width:72.238080pt;}
._23{width:74.350080pt;}
._22{width:75.248640pt;}
._44{width:79.403520pt;}
._3f{width:81.177600pt;}
._2f{width:84.047787pt;}
._2e{width:84.994560pt;}
._41{width:95.800320pt;}
._40{width:97.165227pt;}
._42{width:99.601920pt;}
._32{width:101.859840pt;}
._21{width:107.985920pt;}
._20{width:109.457920pt;}
._4c{width:113.953707pt;}
._4b{width:115.084800pt;}
._43{width:117.987840pt;}
._46{width:120.460800pt;}
._26{width:122.718720pt;}
._27{width:131.105280pt;}
._1c{width:134.453760pt;}
._2c{width:138.109440pt;}
._8{width:140.696747pt;}
._2a{width:153.807360pt;}
._4d{width:158.718293pt;}
._4e{width:160.191147pt;}
._30{width:171.192747pt;}
._39{width:174.343680pt;}
._2b{width:203.986347pt;}
._3b{width:227.855787pt;}
._33{width:236.636160pt;}
._1f{width:298.529280pt;}
._47{width:304.911360pt;}
._2{width:350.186667pt;}
._4a{width:363.740160pt;}
._7{width:611.445333pt;}
._13{width:950.805333pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y13{bottom:5.440000pt;}
.ye{bottom:10.272000pt;}
.y96{bottom:10.880000pt;}
.yad{bottom:10.906667pt;}
.y9d{bottom:10.920000pt;}
.y208{bottom:13.120000pt;}
.yc{bottom:17.632000pt;}
.y219{bottom:23.034667pt;}
.yb1{bottom:25.946667pt;}
.y98{bottom:26.240000pt;}
.yac{bottom:26.266667pt;}
.y9c{bottom:26.280000pt;}
.y212{bottom:30.720000pt;}
.y21c{bottom:30.760000pt;}
.y207{bottom:31.040000pt;}
.y9f{bottom:31.360000pt;}
.y15d{bottom:31.400000pt;}
.y12{bottom:37.120000pt;}
.yf{bottom:38.720000pt;}
.y218{bottom:40.634667pt;}
.yb0{bottom:41.306667pt;}
.yaa{bottom:41.600000pt;}
.ya2{bottom:46.760000pt;}
.y21f{bottom:48.640000pt;}
.y211{bottom:48.666667pt;}
.y217{bottom:58.274667pt;}
.yb{bottom:60.800000pt;}
.y21e{bottom:66.240000pt;}
.y210{bottom:66.266667pt;}
.y11{bottom:68.480000pt;}
.y216{bottom:75.874667pt;}
.y20f{bottom:83.866667pt;}
.y46{bottom:84.192000pt;}
.y215{bottom:93.474667pt;}
.y9{bottom:99.232000pt;}
.y20e{bottom:101.466667pt;}
.y214{bottom:111.074667pt;}
.y16f{bottom:113.312000pt;}
.yf7{bottom:117.792000pt;}
.y213{bottom:118.432000pt;}
.y20d{bottom:119.066667pt;}
.y42{bottom:119.712000pt;}
.ybd{bottom:122.272000pt;}
.y77{bottom:123.872000pt;}
.y124{bottom:125.792000pt;}
.y18a{bottom:126.752000pt;}
.y153{bottom:128.352000pt;}
.y23e{bottom:132.192000pt;}
.y262{bottom:132.512000pt;}
.y1e0{bottom:134.106667pt;}
.y9e{bottom:135.706667pt;}
.y20c{bottom:136.666667pt;}
.y41{bottom:137.306667pt;}
.ye5{bottom:137.946667pt;}
.y1ad{bottom:140.186667pt;}
.yf6{bottom:140.506667pt;}
.y76{bottom:141.466667pt;}
.y123{bottom:143.386667pt;}
.y189{bottom:148.506667pt;}
.y13c{bottom:148.826667pt;}
.y23d{bottom:149.786667pt;}
.y261{bottom:150.106667pt;}
.y1df{bottom:151.706667pt;}
.y152{bottom:153.946667pt;}
.y20b{bottom:154.306667pt;}
.y40{bottom:154.906667pt;}
.ye4{bottom:155.546667pt;}
.y16e{bottom:157.146667pt;}
.y1ac{bottom:157.786667pt;}
.y1f2{bottom:158.426667pt;}
.y75{bottom:159.066667pt;}
.y122{bottom:160.986667pt;}
.y13b{bottom:166.426667pt;}
.y1b9{bottom:167.066667pt;}
.y23c{bottom:167.386667pt;}
.y9b{bottom:167.706667pt;}
.y1de{bottom:169.306667pt;}
.y188{bottom:170.266667pt;}
.y20a{bottom:171.906667pt;}
.y3f{bottom:172.506667pt;}
.ye3{bottom:173.146667pt;}
.y16d{bottom:174.746667pt;}
.y151{bottom:175.066667pt;}
.y1ab{bottom:175.386667pt;}
.y260{bottom:175.746667pt;}
.y1f1{bottom:176.066667pt;}
.y74{bottom:177.026667pt;}
.y121{bottom:178.626667pt;}
.y13a{bottom:184.386667pt;}
.y23b{bottom:185.026667pt;}
.y1dd{bottom:187.266667pt;}
.ybc{bottom:190.146667pt;}
.y3e{bottom:190.466667pt;}
.ye2{bottom:190.786667pt;}
.y16c{bottom:192.386667pt;}
.y25f{bottom:193.346667pt;}
.y1f0{bottom:193.666667pt;}
.y73{bottom:194.626667pt;}
.y120{bottom:196.226667pt;}
.y139{bottom:201.986667pt;}
.y23a{bottom:202.946667pt;}
.y1dc{bottom:204.866667pt;}
.y1aa{bottom:206.466667pt;}
.y150{bottom:207.106667pt;}
.ybb{bottom:207.746667pt;}
.y3d{bottom:208.066667pt;}
.ye1{bottom:208.386667pt;}
.y16b{bottom:209.986667pt;}
.y1ef{bottom:211.266667pt;}
.y72{bottom:212.226667pt;}
.y11f{bottom:213.826667pt;}
.y187{bottom:214.146667pt;}
.y9a{bottom:215.106667pt;}
.y25e{bottom:218.946667pt;}
.y138{bottom:219.586667pt;}
.y239{bottom:220.546667pt;}
.y1db{bottom:222.466667pt;}
.y1a9{bottom:224.066667pt;}
.yba{bottom:225.346667pt;}
.y3c{bottom:225.666667pt;}
.ye0{bottom:227.906667pt;}
.y1ee{bottom:228.866667pt;}
.y71{bottom:229.826667pt;}
.y11e{bottom:231.426667pt;}
.y186{bottom:235.906667pt;}
.y25d{bottom:236.546667pt;}
.y137{bottom:237.186667pt;}
.y238{bottom:238.146667pt;}
.y14f{bottom:239.106667pt;}
.yb9{bottom:240.066667pt;}
.y1a8{bottom:241.666667pt;}
.y3b{bottom:243.266667pt;}
.y1ed{bottom:246.466667pt;}
.y16a{bottom:247.106667pt;}
.y70{bottom:247.426667pt;}
.y11d{bottom:249.026667pt;}
.y209{bottom:250.626667pt;}
.ydf{bottom:253.506667pt;}
.y136{bottom:254.786667pt;}
.y237{bottom:255.746667pt;}
.y185{bottom:257.666667pt;}
.y1a7{bottom:259.266667pt;}
.y3a{bottom:260.866667pt;}
.y25c{bottom:262.146667pt;}
.y99{bottom:262.466667pt;}
.y1ec{bottom:264.066667pt;}
.y6f{bottom:265.026667pt;}
.y11c{bottom:268.546667pt;}
.y14e{bottom:271.106667pt;}
.y135{bottom:272.386667pt;}
.y236{bottom:273.346667pt;}
.y1da{bottom:275.266667pt;}
.y1a6{bottom:276.866667pt;}
.y39{bottom:278.466667pt;}
.yde{bottom:279.106667pt;}
.y25b{bottom:279.746667pt;}
.y169{bottom:280.706667pt;}
.y184{bottom:281.986667pt;}
.y106{bottom:282.626667pt;}
.y6e{bottom:284.226667pt;}
.y1eb{bottom:289.693333pt;}
.y134{bottom:290.013333pt;}
.y235{bottom:290.973333pt;}
.y1d9{bottom:292.893333pt;}
.y11b{bottom:294.173333pt;}
.y97{bottom:294.493333pt;}
.y38{bottom:296.093333pt;}
.ydd{bottom:296.733333pt;}
.y183{bottom:299.613333pt;}
.y105{bottom:300.253333pt;}
.y168{bottom:301.853333pt;}
.y14d{bottom:303.133333pt;}
.y25a{bottom:305.693333pt;}
.y133{bottom:307.613333pt;}
.y234{bottom:308.573333pt;}
.y6d{bottom:310.173333pt;}
.y1d8{bottom:310.493333pt;}
.y11a{bottom:311.773333pt;}
.y1a5{bottom:312.093333pt;}
.y1ea{bottom:312.413333pt;}
.y37{bottom:313.693333pt;}
.ydc{bottom:314.333333pt;}
.y182{bottom:317.213333pt;}
.y104{bottom:317.853333pt;}
.yb8{bottom:320.093333pt;}
.y259{bottom:323.293333pt;}
.y132{bottom:325.213333pt;}
.y233{bottom:326.173333pt;}
.y6c{bottom:327.773333pt;}
.y1d7{bottom:328.093333pt;}
.y119{bottom:329.373333pt;}
.y1a4{bottom:329.693333pt;}
.y36{bottom:331.293333pt;}
.ydb{bottom:331.933333pt;}
.y167{bottom:333.853333pt;}
.y181{bottom:334.813333pt;}
.y14c{bottom:335.133333pt;}
.y103{bottom:337.373333pt;}
.yb7{bottom:337.693333pt;}
.y95{bottom:341.853333pt;}
.y131{bottom:342.813333pt;}
.y232{bottom:343.773333pt;}
.y6b{bottom:345.373333pt;}
.y1d6{bottom:345.693333pt;}
.y118{bottom:346.973333pt;}
.y35{bottom:348.893333pt;}
.yda{bottom:349.533333pt;}
.yb6{bottom:352.413333pt;}
.y1a3{bottom:355.293333pt;}
.y180{bottom:360.413333pt;}
.yf5{bottom:360.733333pt;}
.y231{bottom:361.373333pt;}
.y6a{bottom:362.973333pt;}
.y1d5{bottom:363.613333pt;}
.y117{bottom:364.573333pt;}
.y166{bottom:365.853333pt;}
.y258{bottom:366.493333pt;}
.y34{bottom:366.813333pt;}
.yd9{bottom:367.133333pt;}
.yf4{bottom:377.053333pt;}
.y130{bottom:378.333333pt;}
.y230{bottom:379.293333pt;}
.y69{bottom:380.573333pt;}
.y1a2{bottom:380.893333pt;}
.y116{bottom:382.173333pt;}
.y1d4{bottom:382.813333pt;}
.y14b{bottom:383.453333pt;}
.y33{bottom:384.413333pt;}
.yd8{bottom:384.733333pt;}
.y17f{bottom:386.333333pt;}
.y102{bottom:388.573333pt;}
.y94{bottom:389.853333pt;}
.y257{bottom:392.093333pt;}
.yf3{bottom:394.653333pt;}
.y12f{bottom:395.933333pt;}
.y22f{bottom:396.893333pt;}
.y165{bottom:397.853333pt;}
.y68{bottom:398.173333pt;}
.y1a1{bottom:398.493333pt;}
.y115{bottom:399.813333pt;}
.y32{bottom:402.053333pt;}
.yd7{bottom:402.693333pt;}
.y101{bottom:406.213333pt;}
.y17e{bottom:407.493333pt;}
.y1d3{bottom:408.453333pt;}
.y14a{bottom:409.093333pt;}
.y256{bottom:409.733333pt;}
.yf2{bottom:412.293333pt;}
.yb5{bottom:412.613333pt;}
.y12e{bottom:413.573333pt;}
.y93{bottom:414.213333pt;}
.y22e{bottom:414.533333pt;}
.y67{bottom:415.813333pt;}
.y1a0{bottom:416.453333pt;}
.y1b8{bottom:417.093333pt;}
.y114{bottom:417.733333pt;}
.yd6{bottom:420.293333pt;}
.y100{bottom:423.813333pt;}
.y1d2{bottom:426.053333pt;}
.y149{bottom:426.693333pt;}
.y255{bottom:427.333333pt;}
.y31{bottom:427.653333pt;}
.yf1{bottom:429.893333pt;}
.y12d{bottom:431.173333pt;}
.y92{bottom:431.813333pt;}
.y22d{bottom:432.133333pt;}
.y66{bottom:433.413333pt;}
.y19f{bottom:434.053333pt;}
.y113{bottom:435.333333pt;}
.yd5{bottom:437.893333pt;}
.yb4{bottom:438.533333pt;}
.y17d{bottom:439.493333pt;}
.yff{bottom:441.413333pt;}
.y1d1{bottom:443.653333pt;}
.y148{bottom:444.293333pt;}
.yf0{bottom:447.493333pt;}
.y22c{bottom:449.733333pt;}
.y65{bottom:451.013333pt;}
.y19e{bottom:451.653333pt;}
.y112{bottom:452.933333pt;}
.y30{bottom:453.253333pt;}
.yd4{bottom:455.493333pt;}
.y12c{bottom:456.773333pt;}
.yfe{bottom:459.013333pt;}
.y1d0{bottom:461.253333pt;}
.yb3{bottom:461.573333pt;}
.y147{bottom:461.893333pt;}
.yef{bottom:465.093333pt;}
.y22b{bottom:467.333333pt;}
.y2f{bottom:468.613333pt;}
.y19d{bottom:469.253333pt;}
.y111{bottom:470.533333pt;}
.y17c{bottom:471.493333pt;}
.yd3{bottom:473.093333pt;}
.y91{bottom:476.613333pt;}
.y1cf{bottom:478.853333pt;}
.y12b{bottom:479.493333pt;}
.y2e{bottom:483.973333pt;}
.yee{bottom:484.613333pt;}
.y22a{bottom:484.933333pt;}
.y64{bottom:486.533333pt;}
.y19c{bottom:486.853333pt;}
.yb2{bottom:487.493333pt;}
.y110{bottom:488.133333pt;}
.yd2{bottom:490.693333pt;}
.y90{bottom:494.213333pt;}
.yfd{bottom:494.533333pt;}
.y254{bottom:496.133333pt;}
.y1ce{bottom:496.773333pt;}
.y146{bottom:497.093333pt;}
.y2d{bottom:499.333333pt;}
.y229{bottom:502.533333pt;}
.y17b{bottom:503.493333pt;}
.y63{bottom:504.133333pt;}
.y19b{bottom:506.053333pt;}
.y10f{bottom:507.333333pt;}
.yd1{bottom:508.293333pt;}
.yaf{bottom:508.613333pt;}
.y164{bottom:509.893333pt;}
.yed{bottom:510.213333pt;}
.y206{bottom:511.520000pt;}
.y8f{bottom:511.840000pt;}
.yfc{bottom:512.160000pt;}
.y253{bottom:514.080000pt;}
.y1cd{bottom:514.400000pt;}
.y2c{bottom:514.720000pt;}
.y228{bottom:520.160000pt;}
.y62{bottom:521.760000pt;}
.yd0{bottom:525.920000pt;}
.yec{bottom:527.840000pt;}
.y1b7{bottom:529.440000pt;}
.y8e{bottom:529.760000pt;}
.y2b{bottom:530.080000pt;}
.y1cc{bottom:532.000000pt;}
.y145{bottom:532.640000pt;}
.y10e{bottom:532.960000pt;}
.y163{bottom:534.240000pt;}
.y17a{bottom:535.520000pt;}
.y227{bottom:537.760000pt;}
.y252{bottom:539.680000pt;}
.y19a{bottom:540.000000pt;}
.y61{bottom:540.960000pt;}
.ycf{bottom:543.520000pt;}
.y2a{bottom:545.440000pt;}
.y205{bottom:545.760000pt;}
.y8d{bottom:547.360000pt;}
.y1cb{bottom:549.600000pt;}
.y144{bottom:550.240000pt;}
.y10d{bottom:550.880000pt;}
.y162{bottom:555.360000pt;}
.y251{bottom:557.280000pt;}
.y199{bottom:557.600000pt;}
.y1e9{bottom:560.480000pt;}
.y29{bottom:560.800000pt;}
.yce{bottom:561.120000pt;}
.yeb{bottom:563.040000pt;}
.y204{bottom:563.360000pt;}
.y8c{bottom:564.960000pt;}
.y60{bottom:566.560000pt;}
.y1ca{bottom:567.200000pt;}
.y179{bottom:567.520000pt;}
.y143{bottom:567.840000pt;}
.y10c{bottom:568.480000pt;}
.yae{bottom:571.040000pt;}
.y226{bottom:573.280000pt;}
.y198{bottom:575.200000pt;}
.y28{bottom:575.840000pt;}
.y1e8{bottom:576.800000pt;}
.ycd{bottom:579.040000pt;}
.yea{bottom:580.640000pt;}
.y203{bottom:580.960000pt;}
.yfb{bottom:582.560000pt;}
.y250{bottom:582.880000pt;}
.y8b{bottom:584.160000pt;}
.y1c9{bottom:584.800000pt;}
.y142{bottom:585.440000pt;}
.y10b{bottom:586.080000pt;}
.y161{bottom:587.360000pt;}
.y225{bottom:590.880000pt;}
.y27{bottom:591.200000pt;}
.y5f{bottom:592.160000pt;}
.y197{bottom:592.800000pt;}
.y1e7{bottom:594.400000pt;}
.ycc{bottom:596.640000pt;}
.ye9{bottom:598.240000pt;}
.y202{bottom:598.560000pt;}
.y178{bottom:599.520000pt;}
.yfa{bottom:600.160000pt;}
.y24f{bottom:600.480000pt;}
.y1c8{bottom:602.400000pt;}
.y141{bottom:603.040000pt;}
.y10a{bottom:603.680000pt;}
.y26{bottom:606.560000pt;}
.y224{bottom:608.480000pt;}
.y8a{bottom:609.760000pt;}
.y5e{bottom:610.080000pt;}
.y196{bottom:610.400000pt;}
.y1e6{bottom:612.000000pt;}
.ycb{bottom:614.240000pt;}
.y201{bottom:616.160000pt;}
.yf9{bottom:617.760000pt;}
.yab{bottom:618.400000pt;}
.y160{bottom:619.360000pt;}
.y1c7{bottom:620.000000pt;}
.y140{bottom:620.640000pt;}
.y25{bottom:621.920000pt;}
.ye8{bottom:623.866667pt;}
.y1b6{bottom:625.786667pt;}
.y223{bottom:626.106667pt;}
.y5d{bottom:627.706667pt;}
.y195{bottom:628.026667pt;}
.y109{bottom:629.306667pt;}
.y1e5{bottom:629.946667pt;}
.y177{bottom:631.546667pt;}
.yca{bottom:631.866667pt;}
.y200{bottom:633.786667pt;}
.y89{bottom:635.386667pt;}
.y24{bottom:637.306667pt;}
.y13f{bottom:638.266667pt;}
.y1c6{bottom:639.546667pt;}
.y222{bottom:643.706667pt;}
.y5c{bottom:645.306667pt;}
.y194{bottom:645.626667pt;}
.ye7{bottom:646.586667pt;}
.y1b5{bottom:646.906667pt;}
.y1e4{bottom:647.546667pt;}
.yc9{bottom:649.466667pt;}
.y15f{bottom:651.386667pt;}
.y24e{bottom:651.706667pt;}
.y108{bottom:652.026667pt;}
.y88{bottom:652.986667pt;}
.y23{bottom:660.666667pt;}
.y221{bottom:661.306667pt;}
.y5b{bottom:662.906667pt;}
.y193{bottom:663.226667pt;}
.y176{bottom:663.546667pt;}
.y13e{bottom:663.866667pt;}
.y1c5{bottom:665.146667pt;}
.ya9{bottom:665.786667pt;}
.yc8{bottom:667.066667pt;}
.y1ff{bottom:668.986667pt;}
.y24d{bottom:669.306667pt;}
.y87{bottom:670.906667pt;}
.yf8{bottom:672.506667pt;}
.y22{bottom:676.026667pt;}
.y1b4{bottom:678.906667pt;}
.y5a{bottom:680.506667pt;}
.y192{bottom:680.826667pt;}
.y1c4{bottom:682.746667pt;}
.y15e{bottom:683.386667pt;}
.yc7{bottom:686.266667pt;}
.y13d{bottom:686.586667pt;}
.y24c{bottom:686.906667pt;}
.y86{bottom:688.506667pt;}
.y21{bottom:691.386667pt;}
.y220{bottom:696.506667pt;}
.y59{bottom:698.106667pt;}
.y191{bottom:698.426667pt;}
.y1c3{bottom:700.346667pt;}
.y1fe{bottom:704.186667pt;}
.y85{bottom:706.106667pt;}
.y20{bottom:706.746667pt;}
.y1b3{bottom:710.906667pt;}
.y175{bottom:711.226667pt;}
.yc6{bottom:712.186667pt;}
.y24b{bottom:712.506667pt;}
.y15c{bottom:715.386667pt;}
.y58{bottom:715.706667pt;}
.y190{bottom:716.346667pt;}
.y12a{bottom:716.986667pt;}
.y1c2{bottom:717.946667pt;}
.y1f{bottom:722.106667pt;}
.y84{bottom:723.706667pt;}
.y174{bottom:727.546667pt;}
.ya8{bottom:728.506667pt;}
.yc5{bottom:729.786667pt;}
.y24a{bottom:730.106667pt;}
.y57{bottom:733.306667pt;}
.y18f{bottom:733.946667pt;}
.y1c1{bottom:735.586667pt;}
.y1e{bottom:737.506667pt;}
.y26a{bottom:738.146667pt;}
.y83{bottom:741.346667pt;}
.y1b2{bottom:742.946667pt;}
.y173{bottom:745.506667pt;}
.yc4{bottom:747.426667pt;}
.y56{bottom:750.946667pt;}
.y18e{bottom:751.586667pt;}
.y1d{bottom:752.546667pt;}
.y1c0{bottom:753.186667pt;}
.y249{bottom:756.066667pt;}
.y82{bottom:758.946667pt;}
.y172{bottom:763.106667pt;}
.y15b{bottom:763.426667pt;}
.y269{bottom:764.066667pt;}
.yc3{bottom:765.986667pt;}
.y1fd{bottom:766.946667pt;}
.y1c{bottom:767.906667pt;}
.y55{bottom:768.546667pt;}
.y18d{bottom:769.186667pt;}
.y1bf{bottom:770.786667pt;}
.y248{bottom:773.666667pt;}
.y21d{bottom:774.306667pt;}
.y1b1{bottom:774.946667pt;}
.ya7{bottom:775.906667pt;}
.y81{bottom:776.546667pt;}
.y171{bottom:780.706667pt;}
.y268{bottom:781.666667pt;}
.y1b{bottom:783.266667pt;}
.yc2{bottom:784.546667pt;}
.y54{bottom:786.146667pt;}
.y15a{bottom:787.746667pt;}
.y1be{bottom:788.386667pt;}
.y80{bottom:794.146667pt;}
.y18c{bottom:794.786667pt;}
.y170{bottom:795.426667pt;}
.y247{bottom:799.266667pt;}
.y1fc{bottom:802.146667pt;}
.yc1{bottom:803.746667pt;}
.y53{bottom:804.066667pt;}
.y1a{bottom:806.306667pt;}
.y1b0{bottom:806.946667pt;}
.y267{bottom:807.266667pt;}
.y159{bottom:808.866667pt;}
.y7f{bottom:811.746667pt;}
.y246{bottom:816.866667pt;}
.y18b{bottom:817.506667pt;}
.y19{bottom:818.466667pt;}
.y1fb{bottom:819.746667pt;}
.y129{bottom:821.346667pt;}
.y52{bottom:821.666667pt;}
.ya6{bottom:823.906667pt;}
.y7e{bottom:829.346667pt;}
.y18{bottom:831.266667pt;}
.y266{bottom:832.866667pt;}
.y1fa{bottom:837.346667pt;}
.y128{bottom:838.946667pt;}
.y51{bottom:839.266667pt;}
.y158{bottom:840.866667pt;}
.y1bd{bottom:841.506667pt;}
.y245{bottom:842.466667pt;}
.y17{bottom:846.973333pt;}
.y7d{bottom:847.293333pt;}
.ya5{bottom:848.253333pt;}
.y265{bottom:850.493333pt;}
.y1f9{bottom:855.293333pt;}
.y50{bottom:856.893333pt;}
.y1bc{bottom:859.133333pt;}
.y244{bottom:860.093333pt;}
.y127{bottom:862.333333pt;}
.y7c{bottom:864.893333pt;}
.y16{bottom:865.213333pt;}
.ya4{bottom:869.373333pt;}
.y1af{bottom:870.973333pt;}
.y157{bottom:872.893333pt;}
.y4f{bottom:874.493333pt;}
.y264{bottom:876.093333pt;}
.y1bb{bottom:876.733333pt;}
.y7b{bottom:882.493333pt;}
.ye6{bottom:885.373333pt;}
.y243{bottom:885.693333pt;}
.y15{bottom:889.533333pt;}
.y1f8{bottom:890.493333pt;}
.y4e{bottom:892.093333pt;}
.y107{bottom:893.373333pt;}
.y126{bottom:893.693333pt;}
.y1e3{bottom:894.333333pt;}
.y1ba{bottom:895.933333pt;}
.y7a{bottom:900.093333pt;}
.y242{bottom:903.293333pt;}
.y156{bottom:904.893333pt;}
.y1f7{bottom:908.093333pt;}
.y4d{bottom:909.693333pt;}
.y1e2{bottom:911.933333pt;}
.y14{bottom:913.213333pt;}
.ya3{bottom:916.733333pt;}
.y79{bottom:917.693333pt;}
.y1ae{bottom:918.333333pt;}
.y125{bottom:919.293333pt;}
.y1f6{bottom:925.693333pt;}
.y4c{bottom:927.293333pt;}
.y241{bottom:928.893333pt;}
.y1e1{bottom:929.533333pt;}
.y8{bottom:930.813333pt;}
.y21b{bottom:932.093333pt;}
.yc0{bottom:935.293333pt;}
.y78{bottom:936.893333pt;}
.y1f5{bottom:943.293333pt;}
.y4b{bottom:944.893333pt;}
.y7{bottom:946.173333pt;}
.y240{bottom:946.493333pt;}
.ya1{bottom:948.733333pt;}
.ybf{bottom:952.893333pt;}
.y263{bottom:954.493333pt;}
.y1f4{bottom:960.933333pt;}
.y6{bottom:961.893333pt;}
.y4a{bottom:962.533333pt;}
.y155{bottom:968.933333pt;}
.ybe{bottom:972.453333pt;}
.y21a{bottom:976.293333pt;}
.y1f3{bottom:978.533333pt;}
.y49{bottom:980.453333pt;}
.y10{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y23f{bottom:990.053333pt;}
.ya0{bottom:996.133333pt;}
.y48{bottom:998.053333pt;}
.y4{bottom:1002.853333pt;}
.y47{bottom:1015.653333pt;}
.y154{bottom:1016.933333pt;}
.y3{bottom:1023.653333pt;}
.y45{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y44{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y43{bottom:1068.453333pt;}
.h5{height:7.680000pt;}
.hf{height:13.792000pt;}
.h7{height:28.832000pt;}
.h12{height:31.360000pt;}
.h14{height:31.392000pt;}
.he{height:37.063125pt;}
.h6{height:42.678750pt;}
.h8{height:42.797500pt;}
.h11{height:43.201250pt;}
.h1c{height:43.232000pt;}
.h13{height:46.720000pt;}
.h15{height:46.752000pt;}
.h4{height:47.171250pt;}
.h10{height:47.302500pt;}
.hd{height:47.748750pt;}
.h1b{height:51.200000pt;}
.h18{height:51.520000pt;}
.h3{height:51.663750pt;}
.hc{height:52.296250pt;}
.h2{height:56.843750pt;}
.h17{height:61.792000pt;}
.h16{height:62.080000pt;}
.hb{height:76.170625pt;}
.ha{height:84.711875pt;}
.h9{height:94.752000pt;}
.h1a{height:131.552000pt;}
.h1d{height:157.146667pt;}
.h19{height:192.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:43.552000pt;}
.w13{width:43.872000pt;}
.w16{width:48.320000pt;}
.w19{width:48.672000pt;}
.w11{width:66.240000pt;}
.w24{width:73.952000pt;}
.w12{width:74.560000pt;}
.w27{width:80.032000pt;}
.w17{width:99.584000pt;}
.w1a{width:112.672000pt;}
.wb{width:119.424000pt;}
.w15{width:120.064000pt;}
.w1e{width:121.664000pt;}
.w18{width:125.152000pt;}
.w22{width:126.144000pt;}
.wd{width:134.786667pt;}
.w25{width:137.346667pt;}
.w21{width:142.466667pt;}
.w1f{width:151.426667pt;}
.w1b{width:153.026667pt;}
.w26{width:156.866667pt;}
.w4{width:161.666667pt;}
.wa{width:162.626667pt;}
.w10{width:164.226667pt;}
.w20{width:165.826667pt;}
.w23{width:167.106667pt;}
.w1c{width:170.946667pt;}
.wf{width:173.826667pt;}
.w1d{width:179.586667pt;}
.we{width:293.893333pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.wc{width:349.253333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x1{left:94.431988pt;}
.x1e{left:104.031988pt;}
.xe{left:106.591988pt;}
.x5{left:113.661333pt;}
.x1c{left:118.463988pt;}
.xa{left:125.823988pt;}
.x1f{left:128.063988pt;}
.x7{left:130.306667pt;}
.x1d{left:142.466655pt;}
.x26{left:151.106655pt;}
.x44{left:162.306655pt;}
.x39{left:169.986667pt;}
.x35{left:174.466667pt;}
.x24{left:176.706655pt;}
.x22{left:179.586655pt;}
.x3d{left:186.946655pt;}
.xb{left:195.293322pt;}
.x2a{left:199.453333pt;}
.x20{left:200.413322pt;}
.x28{left:203.293322pt;}
.x3f{left:208.413322pt;}
.x30{left:215.773333pt;}
.x12{left:217.053322pt;}
.x38{left:219.293322pt;}
.x8{left:221.213333pt;}
.xd{left:226.653322pt;}
.x17{left:230.493333pt;}
.x13{left:258.333333pt;}
.x40{left:261.853333pt;}
.x11{left:265.093333pt;}
.x34{left:267.933322pt;}
.xc{left:272.093322pt;}
.x6{left:274.368000pt;}
.x3c{left:276.293322pt;}
.x36{left:295.173333pt;}
.x33{left:297.093322pt;}
.x2f{left:305.093322pt;}
.x46{left:307.653333pt;}
.x16{left:331.973322pt;}
.x43{left:340.613322pt;}
.x3a{left:350.213333pt;}
.x2b{left:364.320000pt;}
.x15{left:378.400000pt;}
.x2{left:396.959988pt;}
.xf{left:397.920000pt;}
.x10{left:403.040000pt;}
.x41{left:404.960000pt;}
.x2c{left:431.226667pt;}
.x37{left:448.826667pt;}
.x47{left:465.146667pt;}
.x3b{left:472.506667pt;}
.x31{left:490.746667pt;}
.x21{left:496.826655pt;}
.x2d{left:506.426667pt;}
.x18{left:525.026667pt;}
.x42{left:531.746667pt;}
.x4{left:537.826667pt;}
.x32{left:540.066667pt;}
.x29{left:543.906655pt;}
.x2e{left:550.946667pt;}
.x3e{left:575.586655pt;}
.x23{left:590.333322pt;}
.x45{left:603.773322pt;}
.x1a{left:606.653322pt;}
.x25{left:610.493322pt;}
.x27{left:612.093322pt;}
.x48{left:618.813333pt;}
.x1b{left:690.213322pt;}
.x19{left:699.813322pt;}
}




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