
    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_3d5845194d4914317470ec88.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b29fdb4267d53e2acc41d461.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c3a3a6dcfec25b1f04a5c804.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2824d252a663e73af91ebe7d.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_736f9618fcf04214448a69d3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5a9973b3a9bbed9ad1daed9f.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_50eb15f089f19da5ad7dd7c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_43bd551764e1c6394db8c719.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1a248553f2524b9afb772208.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.649414;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_f4aecce6c5d08e42cb634524.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.149414;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v6{vertical-align:-77.220000px;}
.v1{vertical-align:-63.360000px;}
.v7{vertical-align:-14.400000px;}
.v2{vertical-align:-9.360000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v8{vertical-align:14.400000px;}
.va{vertical-align:36.000000px;}
.v9{vertical-align:42.480000px;}
.vb{vertical-align:56.880000px;}
.ls32{letter-spacing:-0.738000px;}
.lsc{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.457800px;}
.ls2a{letter-spacing:-0.414600px;}
.ls2d{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.305400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls36{letter-spacing:-0.252000px;}
.ls31{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.109200px;}
.ls1d{letter-spacing:-0.091200px;}
.ls21{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.018000px;}
.ls19{letter-spacing:-0.001440px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.089400px;}
.ls35{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.109440px;}
.ls1f{letter-spacing:0.120000px;}
.ls2f{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.226080px;}
.lsa{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.318000px;}
.ls24{letter-spacing:0.346080px;}
.ls2{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.900000px;}
.ls28{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.640240px;}
.ls1e{letter-spacing:2.880000px;}
.ls3{letter-spacing:3.780000px;}
.ls16{letter-spacing:5.760000px;}
.lse{letter-spacing:7.200000px;}
.ls17{letter-spacing:7.920000px;}
.ls27{letter-spacing:8.640000px;}
.ls30{letter-spacing:10.956000px;}
.ls33{letter-spacing:22.500000px;}
.ls11{letter-spacing:23.660640px;}
.ls20{letter-spacing:89.280000px;}
.lsf{letter-spacing:90.720000px;}
.ls14{letter-spacing:198.000000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws16{word-spacing:-51.624000px;}
.ws10{word-spacing:-51.444000px;}
.ws14{word-spacing:-51.438000px;}
.ws11{word-spacing:-51.120000px;}
.ws13{word-spacing:-49.680000px;}
.ws17{word-spacing:-32.812560px;}
.ws12{word-spacing:-30.094800px;}
.ws15{word-spacing:-28.596960px;}
.ws2{word-spacing:-27.036000px;}
.ws4{word-spacing:-27.000000px;}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.280000px;}
.ws19{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.450800px;}
.ws18{word-spacing:-16.297800px;}
.ws22{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.102200px;}
.wsd{word-spacing:-14.220000px;}
.ws25{word-spacing:-13.860000px;}
.ws29{word-spacing:-13.626000px;}
.ws2c{word-spacing:-13.608000px;}
.ws28{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws2a{word-spacing:-13.284000px;}
.ws2d{word-spacing:-13.248000px;}
.ws27{word-spacing:-13.140000px;}
.ws26{word-spacing:-12.798000px;}
.ws2b{word-spacing:-12.762000px;}
.ws20{word-spacing:-12.402000px;}
.ws1a{word-spacing:-12.236544px;}
.ws1f{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws21{word-spacing:-12.024000px;}
.wse{word-spacing:-10.529400px;}
.wsb{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws1d{word-spacing:-8.928000px;}
.ws1e{word-spacing:-8.172000px;}
.ws23{word-spacing:-8.064000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:326.658000px;}
.ws1c{word-spacing:326.778000px;}
._18{margin-left:-68.260080px;}
._11{margin-left:-4.540560px;}
._2{margin-left:-3.186000px;}
._e{margin-left:-2.132160px;}
._0{margin-left:-1.080000px;}
._1{width:1.434000px;}
._6{width:3.042000px;}
._9{width:4.086000px;}
._8{width:5.406000px;}
._5{width:7.152000px;}
._4{width:8.208000px;}
._d{width:9.812640px;}
._7{width:11.448000px;}
._f{width:12.620400px;}
._10{width:13.736400px;}
._12{width:14.742000px;}
._15{width:15.820080px;}
._1f{width:17.667840px;}
._a{width:18.872400px;}
._1b{width:20.203200px;}
._2b{width:21.762000px;}
._29{width:22.788000px;}
._28{width:23.814000px;}
._24{width:25.488000px;}
._c{width:26.966400px;}
._b{width:28.842960px;}
._23{width:29.879760px;}
._2d{width:32.184000px;}
._2e{width:33.462000px;}
._2a{width:36.210000px;}
._21{width:37.458000px;}
._22{width:54.289200px;}
._13{width:56.568960px;}
._14{width:57.575040px;}
._27{width:59.400000px;}
._16{width:99.835440px;}
._2c{width:118.422000px;}
._1d{width:144.030000px;}
._19{width:194.214000px;}
._1a{width:196.664160px;}
._17{width:198.000000px;}
._25{width:247.458000px;}
._26{width:248.598000px;}
._1e{width:288.276000px;}
._1c{width:375.162000px;}
._20{width:847.596000px;}
._3{width:1046.286000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fsf{font-size:54.144000px;}
.fsb{font-size:56.880000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:2.520000px;}
.y29{bottom:3.600000px;}
.y34{bottom:3.636000px;}
.y30{bottom:3.960000px;}
.y184{bottom:6.120000px;}
.y187{bottom:6.300000px;}
.y181{bottom:6.330000px;}
.y36{bottom:7.920000px;}
.y118{bottom:8.820000px;}
.y11d{bottom:9.030000px;}
.y13e{bottom:9.180000px;}
.y2d{bottom:9.720000px;}
.yb5{bottom:11.154000px;}
.y99{bottom:11.160000px;}
.yac{bottom:11.205000px;}
.y96{bottom:11.340000px;}
.y158{bottom:12.960000px;}
.y13b{bottom:15.300000px;}
.y10c{bottom:15.405000px;}
.yd6{bottom:17.640000px;}
.yee{bottom:17.715000px;}
.y11a{bottom:19.980000px;}
.y179{bottom:20.025000px;}
.y28{bottom:20.160000px;}
.y174{bottom:20.190000px;}
.y183{bottom:25.020000px;}
.y185{bottom:25.200000px;}
.y180{bottom:25.230000px;}
.y2c{bottom:26.280000px;}
.y156{bottom:29.520000px;}
.y33{bottom:35.856000px;}
.y6{bottom:35.925007px;}
.y27{bottom:36.540000px;}
.y161{bottom:36.570000px;}
.y15b{bottom:36.585000px;}
.y15f{bottom:36.720000px;}
.y2b{bottom:39.060000px;}
.y13a{bottom:40.605000px;}
.y10b{bottom:40.710000px;}
.y32{bottom:51.336000px;}
.y26{bottom:53.130000px;}
.y37{bottom:57.780000px;}
.y5{bottom:66.525004px;}
.y139{bottom:66.810000px;}
.y10a{bottom:66.930000px;}
.y25{bottom:69.510000px;}
.y35{bottom:74.520000px;}
.ycf{bottom:79.635000px;}
.ye8{bottom:79.710000px;}
.y4{bottom:97.125005px;}
.y31{bottom:97.740000px;}
.y133{bottom:98.970000px;}
.y100{bottom:99.075000px;}
.ye9{bottom:105.660000px;}
.y94{bottom:112.356000px;}
.y1c9{bottom:114.696000px;}
.yd0{bottom:115.845000px;}
.y17e{bottom:116.136000px;}
.y101{bottom:116.460000px;}
.y192{bottom:117.216000px;}
.y170{bottom:117.756000px;}
.y7d{bottom:119.016000px;}
.y12b{bottom:120.816000px;}
.y134{bottom:121.035000px;}
.y1fc{bottom:123.696000px;}
.yb6{bottom:127.656000px;}
.y21b{bottom:128.916000px;}
.y1c8{bottom:130.176000px;}
.y1aa{bottom:130.536000px;}
.yea{bottom:131.610000px;}
.y131{bottom:131.976000px;}
.y74{bottom:132.336000px;}
.ye6{bottom:133.596000px;}
.y102{bottom:133.845000px;}
.yd1{bottom:133.995000px;}
.y93{bottom:137.016000px;}
.yfe{bottom:137.196000px;}
.y1fb{bottom:139.176000px;}
.y23{bottom:139.264499px;}
.yb3{bottom:140.976000px;}
.y191{bottom:141.876000px;}
.y16f{bottom:142.416000px;}
.y135{bottom:143.100000px;}
.y7c{bottom:143.676000px;}
.y21a{bottom:144.396000px;}
.ycd{bottom:144.936000px;}
.y12a{bottom:145.476000px;}
.y1c7{bottom:145.656000px;}
.y103{bottom:151.200000px;}
.yd2{bottom:152.100000px;}
.y1fa{bottom:154.650000px;}
.y17d{bottom:154.830000px;}
.y1a9{bottom:155.190000px;}
.y130{bottom:156.630000px;}
.y73{bottom:156.990000px;}
.yeb{bottom:157.605000px;}
.ye5{bottom:159.510000px;}
.y219{bottom:159.870000px;}
.y1c6{bottom:161.130000px;}
.y92{bottom:161.670000px;}
.yfd{bottom:161.850000px;}
.y2f{bottom:162.390000px;}
.yb2{bottom:164.190000px;}
.y136{bottom:165.165000px;}
.ycc{bottom:165.810000px;}
.y190{bottom:166.530000px;}
.y16e{bottom:167.070000px;}
.y17c{bottom:168.150000px;}
.y7b{bottom:168.330000px;}
.y104{bottom:168.585000px;}
.y129{bottom:170.130000px;}
.yd3{bottom:170.250000px;}
.y1f9{bottom:170.310000px;}
.y218{bottom:175.350000px;}
.y1c5{bottom:176.790000px;}
.y1a8{bottom:179.850000px;}
.ycb{bottom:181.290000px;}
.y72{bottom:181.650000px;}
.yce{bottom:181.980000px;}
.yec{bottom:183.570000px;}
.ye4{bottom:184.170000px;}
.y1f8{bottom:185.790000px;}
.y105{bottom:185.970000px;}
.y91{bottom:186.510000px;}
.y137{bottom:187.230000px;}
.yb1{bottom:187.410000px;}
.yd4{bottom:188.355000px;}
.y217{bottom:191.010000px;}
.y18f{bottom:191.190000px;}
.y16d{bottom:191.730000px;}
.y1c4{bottom:192.270000px;}
.y7a{bottom:192.990000px;}
.y128{bottom:194.790000px;}
.y1a{bottom:196.933500px;}
.y1f7{bottom:201.270000px;}
.y17b{bottom:201.810000px;}
.y106{bottom:203.370000px;}
.y1a7{bottom:204.510000px;}
.y12f{bottom:205.950000px;}
.y71{bottom:206.310000px;}
.yd5{bottom:206.460000px;}
.y216{bottom:206.490000px;}
.y155{bottom:207.570000px;}
.y1c3{bottom:207.750000px;}
.ye3{bottom:208.830000px;}
.y138{bottom:209.310000px;}
.y22{bottom:209.518500px;}
.yed{bottom:209.520000px;}
.y19{bottom:209.533503px;}
.yb0{bottom:210.630000px;}
.y90{bottom:211.170000px;}
.y18e{bottom:215.850000px;}
.y16c{bottom:216.390000px;}
.y1f6{bottom:216.750000px;}
.y79{bottom:217.650000px;}
.y127{bottom:219.450000px;}
.y107{bottom:220.755000px;}
.y215{bottom:221.970000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1c2{bottom:223.230000px;}
.y1a6{bottom:229.170000px;}
.y12e{bottom:230.610000px;}
.y70{bottom:230.970000px;}
.y154{bottom:232.050000px;}
.y1f5{bottom:232.410000px;}
.ye2{bottom:233.490000px;}
.yaf{bottom:234.030000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y8f{bottom:235.830000px;}
.y214{bottom:237.450000px;}
.y108{bottom:238.140000px;}
.y1c1{bottom:238.710000px;}
.y18d{bottom:240.510000px;}
.y16b{bottom:241.050000px;}
.y78{bottom:242.310000px;}
.y126{bottom:244.110000px;}
.y1f4{bottom:247.890000px;}
.y12d{bottom:251.310000px;}
.y17a{bottom:252.030000px;}
.y213{bottom:253.110000px;}
.y1a5{bottom:253.830000px;}
.y1c0{bottom:254.370000px;}
.y109{bottom:255.525000px;}
.y6f{bottom:255.630000px;}
.y153{bottom:256.710000px;}
.yae{bottom:257.250000px;}
.y8e{bottom:257.610000px;}
.ye1{bottom:258.150000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yfc{bottom:260.490000px;}
.y18c{bottom:263.010000px;}
.y1f3{bottom:263.370000px;}
.y16a{bottom:265.710000px;}
.y77{bottom:266.970000px;}
.y212{bottom:268.590000px;}
.y125{bottom:268.770000px;}
.y132{bottom:269.280000px;}
.y1bf{bottom:269.850000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1a4{bottom:278.490000px;}
.y1f2{bottom:278.850000px;}
.y8d{bottom:279.390000px;}
.y6e{bottom:280.290000px;}
.yad{bottom:280.470000px;}
.y152{bottom:281.370000px;}
.ye0{bottom:282.810000px;}
.y211{bottom:284.070000px;}
.y18b{bottom:284.970000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yfb{bottom:285.150000px;}
.y1be{bottom:285.330000px;}
.y169{bottom:290.370000px;}
.y124{bottom:293.430000px;}
.y1f1{bottom:294.510000px;}
.y210{bottom:299.550000px;}
.y1bd{bottom:300.810000px;}
.y8c{bottom:301.170000px;}
.y178{bottom:302.250000px;}
.y18a{bottom:302.970000px;}
.y1a3{bottom:303.150000px;}
.yab{bottom:303.690000px;}
.y6d{bottom:304.950000px;}
.y151{bottom:306.030000px;}
.ydf{bottom:307.515000px;}
.yfa{bottom:309.855000px;}
.y1f0{bottom:310.035000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y76{bottom:310.935000px;}
.y168{bottom:315.075000px;}
.y123{bottom:315.255000px;}
.y189{bottom:316.335000px;}
.y1bc{bottom:316.515000px;}
.y53{bottom:318.315000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y8b{bottom:322.995000px;}
.y1ef{bottom:325.515000px;}
.yaa{bottom:326.955000px;}
.y1a2{bottom:327.855000px;}
.y6c{bottom:329.655000px;}
.y75{bottom:329.835000px;}
.y150{bottom:330.735000px;}
.y1bb{bottom:331.995000px;}
.yde{bottom:332.175000px;}
.yf9{bottom:334.515000px;}
.y122{bottom:335.955000px;}
.y52{bottom:336.675000px;}
.y167{bottom:339.735000px;}
.y1ee{bottom:340.995000px;}
.y8a{bottom:344.955000px;}
.y20f{bottom:346.215000px;}
.y1ba{bottom:347.475000px;}
.y11{bottom:348.133500px;}
.y121{bottom:349.275000px;}
.ya9{bottom:350.175000px;}
.y51{bottom:352.155000px;}
.y177{bottom:352.515000px;}
.y6b{bottom:354.315000px;}
.y188{bottom:354.855000px;}
.y14f{bottom:355.395000px;}
.y1ed{bottom:356.655000px;}
.ydd{bottom:356.835000px;}
.yf8{bottom:359.175000px;}
.y20e{bottom:362.415000px;}
.y1b9{bottom:362.955000px;}
.y166{bottom:364.395000px;}
.y89{bottom:366.735000px;}
.y50{bottom:367.635000px;}
.y1ec{bottom:372.135000px;}
.ya8{bottom:373.575000px;}
.y1a1{bottom:377.175000px;}
.y1b8{bottom:378.615000px;}
.y6a{bottom:378.975000px;}
.y14e{bottom:380.055000px;}
.y20d{bottom:380.775000px;}
.ydc{bottom:381.495000px;}
.y4f{bottom:383.115000px;}
.yf7{bottom:383.835000px;}
.y165{bottom:386.175000px;}
.y10{bottom:386.785499px;}
.y1eb{bottom:387.615000px;}
.y88{bottom:388.515000px;}
.y186{bottom:393.555000px;}
.y1b7{bottom:394.095000px;}
.y20c{bottom:396.255000px;}
.ya7{bottom:396.795000px;}
.y4e{bottom:398.775000px;}
.y1a0{bottom:401.835000px;}
.y176{bottom:402.735000px;}
.y1ea{bottom:403.095000px;}
.y69{bottom:403.635000px;}
.y14d{bottom:404.715000px;}
.ydb{bottom:406.155000px;}
.y164{bottom:406.875000px;}
.yf{bottom:408.044999px;}
.yf6{bottom:408.495000px;}
.y1b6{bottom:409.575000px;}
.y87{bottom:410.295000px;}
.y20b{bottom:411.735000px;}
.y4d{bottom:414.255000px;}
.yca{bottom:415.155000px;}
.y120{bottom:416.775000px;}
.y1e9{bottom:418.575000px;}
.ya6{bottom:420.015000px;}
.y163{bottom:424.695000px;}
.y1b5{bottom:425.055000px;}
.y19f{bottom:426.495000px;}
.y20a{bottom:427.215000px;}
.y68{bottom:428.295000px;}
.y14c{bottom:429.375000px;}
.y4c{bottom:429.735000px;}
.yda{bottom:430.815000px;}
.y86{bottom:432.255000px;}
.yf5{bottom:433.155000px;}
.y1e8{bottom:434.235000px;}
.yc9{bottom:436.935000px;}
.y162{bottom:438.195000px;}
.y11f{bottom:439.275000px;}
.y1b4{bottom:440.715000px;}
.y209{bottom:442.875000px;}
.ya5{bottom:443.235000px;}
.y4b{bottom:445.215000px;}
.y1e7{bottom:449.715000px;}
.y19e{bottom:451.155000px;}
.yd9{bottom:451.515000px;}
.y175{bottom:452.775000px;}
.y67{bottom:452.955000px;}
.y85{bottom:454.035000px;}
.y1b3{bottom:456.195000px;}
.yf4{bottom:457.815000px;}
.y208{bottom:458.355000px;}
.yc8{bottom:458.715000px;}
.y4a{bottom:460.875000px;}
.y1e6{bottom:465.195000px;}
.ya4{bottom:466.455000px;}
.yd8{bottom:467.175000px;}
.ye7{bottom:469.260000px;}
.y182{bottom:470.955000px;}
.y1b2{bottom:471.675000px;}
.y11e{bottom:472.935000px;}
.y207{bottom:473.835000px;}
.y84{bottom:475.815000px;}
.y49{bottom:476.355000px;}
.y66{bottom:477.615000px;}
.y14b{bottom:478.695000px;}
.y1e5{bottom:480.675000px;}
.y160{bottom:481.395000px;}
.yf3{bottom:482.475000px;}
.yc7{bottom:483.375000px;}
.ye{bottom:484.864502px;}
.y1b1{bottom:487.155000px;}
.y206{bottom:489.315000px;}
.ya3{bottom:489.675000px;}
.y48{bottom:491.835000px;}
.y21c{bottom:493.635000px;}
.y1e4{bottom:496.335000px;}
.y83{bottom:497.595000px;}
.y19d{bottom:500.475000px;}
.y65{bottom:502.455000px;}
.y1b0{bottom:502.815000px;}
.yd{bottom:502.864502px;}
.y173{bottom:502.995000px;}
.y14a{bottom:503.355000px;}
.y205{bottom:504.975000px;}
.y12c{bottom:505.155000px;}
.y11c{bottom:506.595000px;}
.yf2{bottom:507.135000px;}
.y47{bottom:507.315000px;}
.yc6{bottom:508.035000px;}
.y17f{bottom:509.475000px;}
.y1e3{bottom:511.815000px;}
.ya2{bottom:513.105000px;}
.y1af{bottom:518.325000px;}
.y82{bottom:519.405000px;}
.y204{bottom:520.485000px;}
.yc{bottom:520.864502px;}
.y46{bottom:523.005000px;}
.y149{bottom:525.165000px;}
.y64{bottom:527.145000px;}
.y1e2{bottom:527.325000px;}
.y11b{bottom:529.125000px;}
.y15e{bottom:531.465000px;}
.yf1{bottom:531.825000px;}
.yc5{bottom:532.725000px;}
.y1ae{bottom:534.525000px;}
.y203{bottom:535.965000px;}
.ya1{bottom:536.325000px;}
.y45{bottom:538.485000px;}
.yb{bottom:538.864499px;}
.y81{bottom:541.365000px;}
.y1e1{bottom:542.805000px;}
.y148{bottom:544.425000px;}
.y19c{bottom:549.825000px;}
.y202{bottom:551.445000px;}
.y63{bottom:551.805000px;}
.y172{bottom:553.245000px;}
.y44{bottom:553.965000px;}
.yf0{bottom:554.505000px;}
.y1ad{bottom:556.125000px;}
.ya{bottom:556.864499px;}
.yc4{bottom:557.385000px;}
.y1e0{bottom:558.465000px;}
.ya0{bottom:559.545000px;}
.y119{bottom:562.965000px;}
.y147{bottom:563.325000px;}
.y80{bottom:563.865000px;}
.y201{bottom:567.105000px;}
.y43{bottom:569.445000px;}
.y1df{bottom:573.945000px;}
.y19b{bottom:574.485000px;}
.y62{bottom:576.465000px;}
.y1ac{bottom:580.065000px;}
.y15d{bottom:581.685000px;}
.yc3{bottom:582.045000px;}
.y146{bottom:582.405000px;}
.y200{bottom:582.585000px;}
.y9f{bottom:582.765000px;}
.y7f{bottom:584.925000px;}
.y42{bottom:585.105000px;}
.y1de{bottom:589.425000px;}
.yef{bottom:592.125000px;}
.yff{bottom:593.100000px;}
.y7e{bottom:593.925000px;}
.y117{bottom:596.625000px;}
.y1ff{bottom:598.785000px;}
.y19a{bottom:599.145000px;}
.y41{bottom:600.585000px;}
.y61{bottom:601.125000px;}
.y145{bottom:601.305000px;}
.y1ab{bottom:602.565000px;}
.y171{bottom:603.825000px;}
.y1dd{bottom:604.905000px;}
.y9e{bottom:605.985000px;}
.yc2{bottom:606.705000px;}
.y40{bottom:616.065000px;}
.y1fe{bottom:616.965000px;}
.y1dc{bottom:620.565000px;}
.y144{bottom:621.825000px;}
.y116{bottom:622.725000px;}
.y199{bottom:623.805000px;}
.y60{bottom:625.785000px;}
.y9d{bottom:629.205000px;}
.yc1{bottom:631.365000px;}
.y3f{bottom:631.545000px;}
.y15c{bottom:631.905000px;}
.y1fd{bottom:633.345000px;}
.y143{bottom:635.145000px;}
.y1db{bottom:636.045000px;}
.y115{bottom:641.985000px;}
.y9{bottom:645.510000px;}
.y3e{bottom:647.205000px;}
.y198{bottom:648.465000px;}
.y5f{bottom:650.445000px;}
.y1da{bottom:651.525000px;}
.y9c{bottom:652.605000px;}
.yc0{bottom:656.025000px;}
.y142{bottom:657.645000px;}
.y3d{bottom:662.685000px;}
.y8{bottom:666.771000px;}
.y1d9{bottom:667.005000px;}
.y114{bottom:667.905000px;}
.y197{bottom:673.125000px;}
.y5e{bottom:675.105000px;}
.y9b{bottom:675.825000px;}
.y141{bottom:680.145000px;}
.ybf{bottom:680.685000px;}
.y15a{bottom:682.125000px;}
.y1d8{bottom:682.665000px;}
.y3c{bottom:684.465000px;}
.y196{bottom:692.385000px;}
.y113{bottom:692.565000px;}
.y1d7{bottom:698.145000px;}
.y9a{bottom:699.045000px;}
.y5d{bottom:699.765000px;}
.y140{bottom:702.645000px;}
.ybe{bottom:705.345000px;}
.y3b{bottom:709.125000px;}
.y195{bottom:711.285000px;}
.y1d6{bottom:713.625000px;}
.y112{bottom:717.405000px;}
.y98{bottom:722.310000px;}
.y5c{bottom:724.470000px;}
.y13f{bottom:725.190000px;}
.y7{bottom:726.298500px;}
.yd7{bottom:727.350000px;}
.y1d5{bottom:729.150000px;}
.ybd{bottom:730.050000px;}
.y194{bottom:730.230000px;}
.y159{bottom:732.390000px;}
.y3a{bottom:739.770000px;}
.y111{bottom:742.110000px;}
.y1d4{bottom:744.810000px;}
.y97{bottom:745.530000px;}
.y13d{bottom:747.690000px;}
.y5b{bottom:749.130000px;}
.y193{bottom:749.310000px;}
.y3{bottom:752.599495px;}
.ybc{bottom:754.710000px;}
.y1d3{bottom:760.290000px;}
.y95{bottom:768.750000px;}
.y5a{bottom:773.790000px;}
.y1d2{bottom:775.770000px;}
.y13c{bottom:776.670000px;}
.ybb{bottom:779.370000px;}
.y39{bottom:780.090000px;}
.y157{bottom:782.610000px;}
.y110{bottom:786.210000px;}
.y1d1{bottom:791.250000px;}
.y59{bottom:798.450000px;}
.yba{bottom:804.210000px;}
.y10f{bottom:806.550000px;}
.y1d0{bottom:806.910000px;}
.y38{bottom:820.590000px;}
.y1cf{bottom:822.390000px;}
.y58{bottom:823.110000px;}
.y10e{bottom:825.810000px;}
.yb9{bottom:828.870000px;}
.y1ce{bottom:837.870000px;}
.y10d{bottom:846.510000px;}
.y57{bottom:847.770000px;}
.y2e{bottom:850.650000px;}
.y1cd{bottom:853.350000px;}
.yb8{bottom:853.530000px;}
.y2a{bottom:867.750000px;}
.y1cc{bottom:869.010000px;}
.y56{bottom:872.430000px;}
.yb7{bottom:875.310000px;}
.y2{bottom:879.369000px;}
.y24{bottom:884.130000px;}
.y1cb{bottom:884.490000px;}
.y55{bottom:897.090000px;}
.y1ca{bottom:899.970000px;}
.y54{bottom:949.860000px;}
.y1{bottom:966.726000px;}
.hf{height:16.380000px;}
.h11{height:20.700000px;}
.h2a{height:21.780000px;}
.h2d{height:21.816000px;}
.h21{height:22.500000px;}
.h24{height:22.536000px;}
.h15{height:23.220000px;}
.h8{height:32.130000px;}
.h2b{height:32.940000px;}
.h2c{height:33.120000px;}
.h9{height:35.826000px;}
.h36{height:37.800000px;}
.h37{height:37.980000px;}
.h34{height:38.016000px;}
.h2f{height:42.300000px;}
.h23{height:47.344922px;}
.h39{height:47.381836px;}
.h3{height:48.195000px;}
.h22{height:48.616875px;}
.h30{height:49.320000px;}
.h33{height:49.356000px;}
.h32{height:49.500000px;}
.h31{height:49.536000px;}
.h7{height:51.180000px;}
.h1a{height:52.971680px;}
.h14{height:52.998047px;}
.hd{height:53.709961px;}
.h6{height:53.739000px;}
.h26{height:53.853187px;}
.h19{height:54.421875px;}
.h35{height:55.291992px;}
.h1c{height:58.121719px;}
.h38{height:58.651172px;}
.h2{height:61.416000px;}
.h13{height:63.936000px;}
.h1b{height:64.978594px;}
.h16{height:65.010937px;}
.h18{height:66.757500px;}
.h12{height:70.664062px;}
.h10{height:71.613281px;}
.h27{height:72.562500px;}
.h20{height:79.980469px;}
.hc{height:82.476000px;}
.h5{height:87.006000px;}
.he{height:98.856000px;}
.h1d{height:99.266133px;}
.h17{height:105.996094px;}
.h1f{height:115.980469px;}
.h4{height:119.055004px;}
.h1e{height:135.266133px;}
.h25{height:226.800000px;}
.h2e{height:229.680000px;}
.h28{height:229.860000px;}
.h29{height:275.940000px;}
.ha{height:1020.600000px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2a{width:36.540000px;}
.w25{width:43.200000px;}
.w27{width:45.540000px;}
.w29{width:45.576000px;}
.w28{width:45.720000px;}
.w26{width:45.756000px;}
.w20{width:46.080000px;}
.w1f{width:46.116000px;}
.w2b{width:46.620000px;}
.w2d{width:46.800000px;}
.w2c{width:46.836000px;}
.w22{width:48.960000px;}
.w23{width:48.996000px;}
.w21{width:49.176000px;}
.w24{width:51.480000px;}
.w16{width:52.020000px;}
.w17{width:52.056000px;}
.w14{width:52.200000px;}
.w15{width:52.236000px;}
.w1d{width:65.196000px;}
.w1b{width:65.520000px;}
.w1c{width:65.556000px;}
.w1a{width:65.736000px;}
.w1e{width:70.920000px;}
.wc{width:72.396000px;}
.wa{width:73.800000px;}
.we{width:89.496000px;}
.wd{width:93.240000px;}
.w19{width:95.580000px;}
.wb{width:118.116000px;}
.wf{width:121.536000px;}
.w13{width:136.476000px;}
.w5{width:280.515000px;}
.w6{width:280.695000px;}
.w18{width:553.860000px;}
.w11{width:559.800000px;}
.w12{width:563.940000px;}
.w10{width:565.920000px;}
.w8{width:582.990000px;}
.w9{width:590.010000px;}
.w2{width:637.794021px;}
.w7{width:722.879989px;}
.w3{width:722.880000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:4.860000px;}
.xa{left:8.100000px;}
.x1d{left:9.792000px;}
.x54{left:10.980000px;}
.x3e{left:13.680000px;}
.x1c{left:16.632000px;}
.x6b{left:18.534000px;}
.x52{left:20.925000px;}
.x6a{left:21.954000px;}
.x20{left:23.472000px;}
.x5d{left:24.660000px;}
.x5f{left:27.540000px;}
.x69{left:28.794000px;}
.x1b{left:30.312000px;}
.x5e{left:31.500000px;}
.x5c{left:34.200000px;}
.x3f{left:37.152000px;}
.x13{left:70.776000px;}
.x5{left:81.036000px;}
.x23{left:82.725000px;}
.x40{left:89.175000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:107.855989px;}
.x41{left:111.240000px;}
.x6c{left:119.016000px;}
.x24{left:128.520000px;}
.x42{left:133.350000px;}
.x4f{left:138.780000px;}
.x9{left:143.685000px;}
.x15{left:144.936000px;}
.x25{left:151.410000px;}
.x53{left:153.390000px;}
.x8{left:155.205000px;}
.x10{left:162.749989px;}
.x6d{left:166.530000px;}
.x21{left:170.970000px;}
.x26{left:174.315000px;}
.x43{left:177.510000px;}
.x1e{left:181.830000px;}
.x27{left:197.250000px;}
.x44{left:199.620000px;}
.x4{left:203.484001px;}
.x11{left:213.554989px;}
.x37{left:218.955000px;}
.x28{left:220.140000px;}
.x45{left:221.730000px;}
.x60{left:224.355000px;}
.x29{left:243.030000px;}
.x50{left:244.515000px;}
.x55{left:247.035000px;}
.x6e{left:261.615000px;}
.x16{left:263.415000px;}
.x2a{left:265.935000px;}
.x61{left:270.615000px;}
.x38{left:271.875000px;}
.x7{left:280.515000px;}
.x2b{left:288.825000px;}
.x56{left:293.835000px;}
.x46{left:310.110000px;}
.x2c{left:311.730000px;}
.x62{left:317.055000px;}
.x39{left:324.825000px;}
.xb{left:331.809000px;}
.x2d{left:334.650000px;}
.x17{left:336.165000px;}
.x57{left:343.725000px;}
.x12{left:354.524989px;}
.x2e{left:357.555000px;}
.x6{left:361.545000px;}
.x63{left:363.525000px;}
.x47{left:376.380000px;}
.x3a{left:377.565000px;}
.x2f{left:380.445000px;}
.x58{left:393.405000px;}
.x48{left:398.490000px;}
.x30{left:403.350000px;}
.x64{left:409.965000px;}
.x49{left:420.585000px;}
.x31{left:426.240000px;}
.x18{left:429.945000px;}
.x4a{left:442.650000px;}
.x32{left:449.175000px;}
.x6f{left:451.905000px;}
.x3{left:454.959000px;}
.x65{left:456.450000px;}
.x4b{left:464.760000px;}
.x33{left:472.065000px;}
.xd{left:481.469989px;}
.x3b{left:483.450000px;}
.x4c{left:486.870000px;}
.x59{left:492.990000px;}
.x34{left:494.970000px;}
.x70{left:499.470000px;}
.x66{left:502.890000px;}
.x4d{left:508.935000px;}
.x35{left:517.860000px;}
.x19{left:519.810000px;}
.x4e{left:531.030000px;}
.x3c{left:536.370000px;}
.x36{left:540.750000px;}
.x5a{left:542.670000px;}
.x71{left:546.990000px;}
.x67{left:549.150000px;}
.x51{left:576.150000px;}
.xc{left:581.904000px;}
.x3d{left:589.140000px;}
.x5b{left:592.380000px;}
.x72{left:594.540000px;}
.x68{left:595.620000px;}
.xf{left:624.059989px;}
.x1f{left:641.339989px;}
.x22{left:645.839989px;}
.x1a{left:648.179989px;}
@media print{
.v6{vertical-align:-68.640000pt;}
.v1{vertical-align:-56.320000pt;}
.v7{vertical-align:-12.800000pt;}
.v2{vertical-align:-8.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v8{vertical-align:12.800000pt;}
.va{vertical-align:32.000000pt;}
.v9{vertical-align:37.760000pt;}
.vb{vertical-align:50.560000pt;}
.ls32{letter-spacing:-0.656000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls2a{letter-spacing:-0.368533pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls36{letter-spacing:-0.224000pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.097067pt;}
.ls1d{letter-spacing:-0.081067pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls19{letter-spacing:-0.001280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.079467pt;}
.ls35{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.097280pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls2f{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.200960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.282667pt;}
.ls24{letter-spacing:0.307627pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.800000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.346880pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls3{letter-spacing:3.360000pt;}
.ls16{letter-spacing:5.120000pt;}
.lse{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls27{letter-spacing:7.680000pt;}
.ls30{letter-spacing:9.738667pt;}
.ls33{letter-spacing:20.000000pt;}
.ls11{letter-spacing:21.031680pt;}
.ls20{letter-spacing:79.360000pt;}
.lsf{letter-spacing:80.640000pt;}
.ls14{letter-spacing:176.000000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws16{word-spacing:-45.888000pt;}
.ws10{word-spacing:-45.728000pt;}
.ws14{word-spacing:-45.722667pt;}
.ws11{word-spacing:-45.440000pt;}
.ws13{word-spacing:-44.160000pt;}
.ws17{word-spacing:-29.166720pt;}
.ws12{word-spacing:-26.750933pt;}
.ws15{word-spacing:-25.419520pt;}
.ws2{word-spacing:-24.032000pt;}
.ws4{word-spacing:-24.000000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws19{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.622933pt;}
.ws18{word-spacing:-14.486933pt;}
.ws22{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.313067pt;}
.wsd{word-spacing:-12.640000pt;}
.ws25{word-spacing:-12.320000pt;}
.ws29{word-spacing:-12.112000pt;}
.ws2c{word-spacing:-12.096000pt;}
.ws28{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws2a{word-spacing:-11.808000pt;}
.ws2d{word-spacing:-11.776000pt;}
.ws27{word-spacing:-11.680000pt;}
.ws26{word-spacing:-11.376000pt;}
.ws2b{word-spacing:-11.344000pt;}
.ws20{word-spacing:-11.024000pt;}
.ws1a{word-spacing:-10.876928pt;}
.ws1f{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws21{word-spacing:-10.688000pt;}
.wse{word-spacing:-9.359467pt;}
.wsb{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-7.936000pt;}
.ws1e{word-spacing:-7.264000pt;}
.ws23{word-spacing:-7.168000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:290.362667pt;}
.ws1c{word-spacing:290.469333pt;}
._18{margin-left:-60.675627pt;}
._11{margin-left:-4.036053pt;}
._2{margin-left:-2.832000pt;}
._e{margin-left:-1.895253pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.274667pt;}
._6{width:2.704000pt;}
._9{width:3.632000pt;}
._8{width:4.805333pt;}
._5{width:6.357333pt;}
._4{width:7.296000pt;}
._d{width:8.722347pt;}
._7{width:10.176000pt;}
._f{width:11.218133pt;}
._10{width:12.210133pt;}
._12{width:13.104000pt;}
._15{width:14.062293pt;}
._1f{width:15.704747pt;}
._a{width:16.775467pt;}
._1b{width:17.958400pt;}
._2b{width:19.344000pt;}
._29{width:20.256000pt;}
._28{width:21.168000pt;}
._24{width:22.656000pt;}
._c{width:23.970133pt;}
._b{width:25.638187pt;}
._23{width:26.559787pt;}
._2d{width:28.608000pt;}
._2e{width:29.744000pt;}
._2a{width:32.186667pt;}
._21{width:33.296000pt;}
._22{width:48.257067pt;}
._13{width:50.283520pt;}
._14{width:51.177813pt;}
._27{width:52.800000pt;}
._16{width:88.742613pt;}
._2c{width:105.264000pt;}
._1d{width:128.026667pt;}
._19{width:172.634667pt;}
._1a{width:174.812587pt;}
._17{width:176.000000pt;}
._25{width:219.962667pt;}
._26{width:220.976000pt;}
._1e{width:256.245333pt;}
._1c{width:333.477333pt;}
._20{width:753.418667pt;}
._3{width:930.032000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fsf{font-size:48.128000pt;}
.fsb{font-size:50.560000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.240000pt;}
.y29{bottom:3.200000pt;}
.y34{bottom:3.232000pt;}
.y30{bottom:3.520000pt;}
.y184{bottom:5.440000pt;}
.y187{bottom:5.600000pt;}
.y181{bottom:5.626667pt;}
.y36{bottom:7.040000pt;}
.y118{bottom:7.840000pt;}
.y11d{bottom:8.026667pt;}
.y13e{bottom:8.160000pt;}
.y2d{bottom:8.640000pt;}
.yb5{bottom:9.914667pt;}
.y99{bottom:9.920000pt;}
.yac{bottom:9.960000pt;}
.y96{bottom:10.080000pt;}
.y158{bottom:11.520000pt;}
.y13b{bottom:13.600000pt;}
.y10c{bottom:13.693333pt;}
.yd6{bottom:15.680000pt;}
.yee{bottom:15.746667pt;}
.y11a{bottom:17.760000pt;}
.y179{bottom:17.800000pt;}
.y28{bottom:17.920000pt;}
.y174{bottom:17.946667pt;}
.y183{bottom:22.240000pt;}
.y185{bottom:22.400000pt;}
.y180{bottom:22.426667pt;}
.y2c{bottom:23.360000pt;}
.y156{bottom:26.240000pt;}
.y33{bottom:31.872000pt;}
.y6{bottom:31.933340pt;}
.y27{bottom:32.480000pt;}
.y161{bottom:32.506667pt;}
.y15b{bottom:32.520000pt;}
.y15f{bottom:32.640000pt;}
.y2b{bottom:34.720000pt;}
.y13a{bottom:36.093333pt;}
.y10b{bottom:36.186667pt;}
.y32{bottom:45.632000pt;}
.y26{bottom:47.226667pt;}
.y37{bottom:51.360000pt;}
.y5{bottom:59.133337pt;}
.y139{bottom:59.386667pt;}
.y10a{bottom:59.493333pt;}
.y25{bottom:61.786667pt;}
.y35{bottom:66.240000pt;}
.ycf{bottom:70.786667pt;}
.ye8{bottom:70.853333pt;}
.y4{bottom:86.333337pt;}
.y31{bottom:86.880000pt;}
.y133{bottom:87.973333pt;}
.y100{bottom:88.066667pt;}
.ye9{bottom:93.920000pt;}
.y94{bottom:99.872000pt;}
.y1c9{bottom:101.952000pt;}
.yd0{bottom:102.973333pt;}
.y17e{bottom:103.232000pt;}
.y101{bottom:103.520000pt;}
.y192{bottom:104.192000pt;}
.y170{bottom:104.672000pt;}
.y7d{bottom:105.792000pt;}
.y12b{bottom:107.392000pt;}
.y134{bottom:107.586667pt;}
.y1fc{bottom:109.952000pt;}
.yb6{bottom:113.472000pt;}
.y21b{bottom:114.592000pt;}
.y1c8{bottom:115.712000pt;}
.y1aa{bottom:116.032000pt;}
.yea{bottom:116.986667pt;}
.y131{bottom:117.312000pt;}
.y74{bottom:117.632000pt;}
.ye6{bottom:118.752000pt;}
.y102{bottom:118.973333pt;}
.yd1{bottom:119.106667pt;}
.y93{bottom:121.792000pt;}
.yfe{bottom:121.952000pt;}
.y1fb{bottom:123.712000pt;}
.y23{bottom:123.790666pt;}
.yb3{bottom:125.312000pt;}
.y191{bottom:126.112000pt;}
.y16f{bottom:126.592000pt;}
.y135{bottom:127.200000pt;}
.y7c{bottom:127.712000pt;}
.y21a{bottom:128.352000pt;}
.ycd{bottom:128.832000pt;}
.y12a{bottom:129.312000pt;}
.y1c7{bottom:129.472000pt;}
.y103{bottom:134.400000pt;}
.yd2{bottom:135.200000pt;}
.y1fa{bottom:137.466667pt;}
.y17d{bottom:137.626667pt;}
.y1a9{bottom:137.946667pt;}
.y130{bottom:139.226667pt;}
.y73{bottom:139.546667pt;}
.yeb{bottom:140.093333pt;}
.ye5{bottom:141.786667pt;}
.y219{bottom:142.106667pt;}
.y1c6{bottom:143.226667pt;}
.y92{bottom:143.706667pt;}
.yfd{bottom:143.866667pt;}
.y2f{bottom:144.346667pt;}
.yb2{bottom:145.946667pt;}
.y136{bottom:146.813333pt;}
.ycc{bottom:147.386667pt;}
.y190{bottom:148.026667pt;}
.y16e{bottom:148.506667pt;}
.y17c{bottom:149.466667pt;}
.y7b{bottom:149.626667pt;}
.y104{bottom:149.853333pt;}
.y129{bottom:151.226667pt;}
.yd3{bottom:151.333333pt;}
.y1f9{bottom:151.386667pt;}
.y218{bottom:155.866667pt;}
.y1c5{bottom:157.146667pt;}
.y1a8{bottom:159.866667pt;}
.ycb{bottom:161.146667pt;}
.y72{bottom:161.466667pt;}
.yce{bottom:161.760000pt;}
.yec{bottom:163.173333pt;}
.ye4{bottom:163.706667pt;}
.y1f8{bottom:165.146667pt;}
.y105{bottom:165.306667pt;}
.y91{bottom:165.786667pt;}
.y137{bottom:166.426667pt;}
.yb1{bottom:166.586667pt;}
.yd4{bottom:167.426667pt;}
.y217{bottom:169.786667pt;}
.y18f{bottom:169.946667pt;}
.y16d{bottom:170.426667pt;}
.y1c4{bottom:170.906667pt;}
.y7a{bottom:171.546667pt;}
.y128{bottom:173.146667pt;}
.y1a{bottom:175.052000pt;}
.y1f7{bottom:178.906667pt;}
.y17b{bottom:179.386667pt;}
.y106{bottom:180.773333pt;}
.y1a7{bottom:181.786667pt;}
.y12f{bottom:183.066667pt;}
.y71{bottom:183.386667pt;}
.yd5{bottom:183.520000pt;}
.y216{bottom:183.546667pt;}
.y155{bottom:184.506667pt;}
.y1c3{bottom:184.666667pt;}
.ye3{bottom:185.626667pt;}
.y138{bottom:186.053333pt;}
.y22{bottom:186.238666pt;}
.yed{bottom:186.240000pt;}
.y19{bottom:186.252002pt;}
.yb0{bottom:187.226667pt;}
.y90{bottom:187.706667pt;}
.y18e{bottom:191.866667pt;}
.y16c{bottom:192.346667pt;}
.y1f6{bottom:192.666667pt;}
.y79{bottom:193.466667pt;}
.y127{bottom:195.066667pt;}
.y107{bottom:196.226667pt;}
.y215{bottom:197.306667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1c2{bottom:198.426667pt;}
.y1a6{bottom:203.706667pt;}
.y12e{bottom:204.986667pt;}
.y70{bottom:205.306667pt;}
.y154{bottom:206.266667pt;}
.y1f5{bottom:206.586667pt;}
.ye2{bottom:207.546667pt;}
.yaf{bottom:208.026667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y8f{bottom:209.626667pt;}
.y214{bottom:211.066667pt;}
.y108{bottom:211.680000pt;}
.y1c1{bottom:212.186667pt;}
.y18d{bottom:213.786667pt;}
.y16b{bottom:214.266667pt;}
.y78{bottom:215.386667pt;}
.y126{bottom:216.986667pt;}
.y1f4{bottom:220.346667pt;}
.y12d{bottom:223.386667pt;}
.y17a{bottom:224.026667pt;}
.y213{bottom:224.986667pt;}
.y1a5{bottom:225.626667pt;}
.y1c0{bottom:226.106667pt;}
.y109{bottom:227.133333pt;}
.y6f{bottom:227.226667pt;}
.y153{bottom:228.186667pt;}
.yae{bottom:228.666667pt;}
.y8e{bottom:228.986667pt;}
.ye1{bottom:229.466667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yfc{bottom:231.546667pt;}
.y18c{bottom:233.786667pt;}
.y1f3{bottom:234.106667pt;}
.y16a{bottom:236.186667pt;}
.y77{bottom:237.306667pt;}
.y212{bottom:238.746667pt;}
.y125{bottom:238.906667pt;}
.y132{bottom:239.360000pt;}
.y1bf{bottom:239.866667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1a4{bottom:247.546667pt;}
.y1f2{bottom:247.866667pt;}
.y8d{bottom:248.346667pt;}
.y6e{bottom:249.146667pt;}
.yad{bottom:249.306667pt;}
.y152{bottom:250.106667pt;}
.ye0{bottom:251.386667pt;}
.y211{bottom:252.506667pt;}
.y18b{bottom:253.306667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yfb{bottom:253.466667pt;}
.y1be{bottom:253.626667pt;}
.y169{bottom:258.106667pt;}
.y124{bottom:260.826667pt;}
.y1f1{bottom:261.786667pt;}
.y210{bottom:266.266667pt;}
.y1bd{bottom:267.386667pt;}
.y8c{bottom:267.706667pt;}
.y178{bottom:268.666667pt;}
.y18a{bottom:269.306667pt;}
.y1a3{bottom:269.466667pt;}
.yab{bottom:269.946667pt;}
.y6d{bottom:271.066667pt;}
.y151{bottom:272.026667pt;}
.ydf{bottom:273.346667pt;}
.yfa{bottom:275.426667pt;}
.y1f0{bottom:275.586667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y76{bottom:276.386667pt;}
.y168{bottom:280.066667pt;}
.y123{bottom:280.226667pt;}
.y189{bottom:281.186667pt;}
.y1bc{bottom:281.346667pt;}
.y53{bottom:282.946667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y8b{bottom:287.106667pt;}
.y1ef{bottom:289.346667pt;}
.yaa{bottom:290.626667pt;}
.y1a2{bottom:291.426667pt;}
.y6c{bottom:293.026667pt;}
.y75{bottom:293.186667pt;}
.y150{bottom:293.986667pt;}
.y1bb{bottom:295.106667pt;}
.yde{bottom:295.266667pt;}
.yf9{bottom:297.346667pt;}
.y122{bottom:298.626667pt;}
.y52{bottom:299.266667pt;}
.y167{bottom:301.986667pt;}
.y1ee{bottom:303.106667pt;}
.y8a{bottom:306.626667pt;}
.y20f{bottom:307.746667pt;}
.y1ba{bottom:308.866667pt;}
.y11{bottom:309.452000pt;}
.y121{bottom:310.466667pt;}
.ya9{bottom:311.266667pt;}
.y51{bottom:313.026667pt;}
.y177{bottom:313.346667pt;}
.y6b{bottom:314.946667pt;}
.y188{bottom:315.426667pt;}
.y14f{bottom:315.906667pt;}
.y1ed{bottom:317.026667pt;}
.ydd{bottom:317.186667pt;}
.yf8{bottom:319.266667pt;}
.y20e{bottom:322.146667pt;}
.y1b9{bottom:322.626667pt;}
.y166{bottom:323.906667pt;}
.y89{bottom:325.986667pt;}
.y50{bottom:326.786667pt;}
.y1ec{bottom:330.786667pt;}
.ya8{bottom:332.066667pt;}
.y1a1{bottom:335.266667pt;}
.y1b8{bottom:336.546667pt;}
.y6a{bottom:336.866667pt;}
.y14e{bottom:337.826667pt;}
.y20d{bottom:338.466667pt;}
.ydc{bottom:339.106667pt;}
.y4f{bottom:340.546667pt;}
.yf7{bottom:341.186667pt;}
.y165{bottom:343.266667pt;}
.y10{bottom:343.809333pt;}
.y1eb{bottom:344.546667pt;}
.y88{bottom:345.346667pt;}
.y186{bottom:349.826667pt;}
.y1b7{bottom:350.306667pt;}
.y20c{bottom:352.226667pt;}
.ya7{bottom:352.706667pt;}
.y4e{bottom:354.466667pt;}
.y1a0{bottom:357.186667pt;}
.y176{bottom:357.986667pt;}
.y1ea{bottom:358.306667pt;}
.y69{bottom:358.786667pt;}
.y14d{bottom:359.746667pt;}
.ydb{bottom:361.026667pt;}
.y164{bottom:361.666667pt;}
.yf{bottom:362.706666pt;}
.yf6{bottom:363.106667pt;}
.y1b6{bottom:364.066667pt;}
.y87{bottom:364.706667pt;}
.y20b{bottom:365.986667pt;}
.y4d{bottom:368.226667pt;}
.yca{bottom:369.026667pt;}
.y120{bottom:370.466667pt;}
.y1e9{bottom:372.066667pt;}
.ya6{bottom:373.346667pt;}
.y163{bottom:377.506667pt;}
.y1b5{bottom:377.826667pt;}
.y19f{bottom:379.106667pt;}
.y20a{bottom:379.746667pt;}
.y68{bottom:380.706667pt;}
.y14c{bottom:381.666667pt;}
.y4c{bottom:381.986667pt;}
.yda{bottom:382.946667pt;}
.y86{bottom:384.226667pt;}
.yf5{bottom:385.026667pt;}
.y1e8{bottom:385.986667pt;}
.yc9{bottom:388.386667pt;}
.y162{bottom:389.506667pt;}
.y11f{bottom:390.466667pt;}
.y1b4{bottom:391.746667pt;}
.y209{bottom:393.666667pt;}
.ya5{bottom:393.986667pt;}
.y4b{bottom:395.746667pt;}
.y1e7{bottom:399.746667pt;}
.y19e{bottom:401.026667pt;}
.yd9{bottom:401.346667pt;}
.y175{bottom:402.466667pt;}
.y67{bottom:402.626667pt;}
.y85{bottom:403.586667pt;}
.y1b3{bottom:405.506667pt;}
.yf4{bottom:406.946667pt;}
.y208{bottom:407.426667pt;}
.yc8{bottom:407.746667pt;}
.y4a{bottom:409.666667pt;}
.y1e6{bottom:413.506667pt;}
.ya4{bottom:414.626667pt;}
.yd8{bottom:415.266667pt;}
.ye7{bottom:417.120000pt;}
.y182{bottom:418.626667pt;}
.y1b2{bottom:419.266667pt;}
.y11e{bottom:420.386667pt;}
.y207{bottom:421.186667pt;}
.y84{bottom:422.946667pt;}
.y49{bottom:423.426667pt;}
.y66{bottom:424.546667pt;}
.y14b{bottom:425.506667pt;}
.y1e5{bottom:427.266667pt;}
.y160{bottom:427.906667pt;}
.yf3{bottom:428.866667pt;}
.yc7{bottom:429.666667pt;}
.ye{bottom:430.990669pt;}
.y1b1{bottom:433.026667pt;}
.y206{bottom:434.946667pt;}
.ya3{bottom:435.266667pt;}
.y48{bottom:437.186667pt;}
.y21c{bottom:438.786667pt;}
.y1e4{bottom:441.186667pt;}
.y83{bottom:442.306667pt;}
.y19d{bottom:444.866667pt;}
.y65{bottom:446.626667pt;}
.y1b0{bottom:446.946667pt;}
.yd{bottom:446.990669pt;}
.y173{bottom:447.106667pt;}
.y14a{bottom:447.426667pt;}
.y205{bottom:448.866667pt;}
.y12c{bottom:449.026667pt;}
.y11c{bottom:450.306667pt;}
.yf2{bottom:450.786667pt;}
.y47{bottom:450.946667pt;}
.yc6{bottom:451.586667pt;}
.y17f{bottom:452.866667pt;}
.y1e3{bottom:454.946667pt;}
.ya2{bottom:456.093333pt;}
.y1af{bottom:460.733333pt;}
.y82{bottom:461.693333pt;}
.y204{bottom:462.653333pt;}
.yc{bottom:462.990669pt;}
.y46{bottom:464.893333pt;}
.y149{bottom:466.813333pt;}
.y64{bottom:468.573333pt;}
.y1e2{bottom:468.733333pt;}
.y11b{bottom:470.333333pt;}
.y15e{bottom:472.413333pt;}
.yf1{bottom:472.733333pt;}
.yc5{bottom:473.533333pt;}
.y1ae{bottom:475.133333pt;}
.y203{bottom:476.413333pt;}
.ya1{bottom:476.733333pt;}
.y45{bottom:478.653333pt;}
.yb{bottom:478.990666pt;}
.y81{bottom:481.213333pt;}
.y1e1{bottom:482.493333pt;}
.y148{bottom:483.933333pt;}
.y19c{bottom:488.733333pt;}
.y202{bottom:490.173333pt;}
.y63{bottom:490.493333pt;}
.y172{bottom:491.773333pt;}
.y44{bottom:492.413333pt;}
.yf0{bottom:492.893333pt;}
.y1ad{bottom:494.333333pt;}
.ya{bottom:494.990666pt;}
.yc4{bottom:495.453333pt;}
.y1e0{bottom:496.413333pt;}
.ya0{bottom:497.373333pt;}
.y119{bottom:500.413333pt;}
.y147{bottom:500.733333pt;}
.y80{bottom:501.213333pt;}
.y201{bottom:504.093333pt;}
.y43{bottom:506.173333pt;}
.y1df{bottom:510.173333pt;}
.y19b{bottom:510.653333pt;}
.y62{bottom:512.413333pt;}
.y1ac{bottom:515.613333pt;}
.y15d{bottom:517.053333pt;}
.yc3{bottom:517.373333pt;}
.y146{bottom:517.693333pt;}
.y200{bottom:517.853333pt;}
.y9f{bottom:518.013333pt;}
.y7f{bottom:519.933333pt;}
.y42{bottom:520.093333pt;}
.y1de{bottom:523.933333pt;}
.yef{bottom:526.333333pt;}
.yff{bottom:527.200000pt;}
.y7e{bottom:527.933333pt;}
.y117{bottom:530.333333pt;}
.y1ff{bottom:532.253333pt;}
.y19a{bottom:532.573333pt;}
.y41{bottom:533.853333pt;}
.y61{bottom:534.333333pt;}
.y145{bottom:534.493333pt;}
.y1ab{bottom:535.613333pt;}
.y171{bottom:536.733333pt;}
.y1dd{bottom:537.693333pt;}
.y9e{bottom:538.653333pt;}
.yc2{bottom:539.293333pt;}
.y40{bottom:547.613333pt;}
.y1fe{bottom:548.413333pt;}
.y1dc{bottom:551.613333pt;}
.y144{bottom:552.733333pt;}
.y116{bottom:553.533333pt;}
.y199{bottom:554.493333pt;}
.y60{bottom:556.253333pt;}
.y9d{bottom:559.293333pt;}
.yc1{bottom:561.213333pt;}
.y3f{bottom:561.373333pt;}
.y15c{bottom:561.693333pt;}
.y1fd{bottom:562.973333pt;}
.y143{bottom:564.573333pt;}
.y1db{bottom:565.373333pt;}
.y115{bottom:570.653333pt;}
.y9{bottom:573.786667pt;}
.y3e{bottom:575.293333pt;}
.y198{bottom:576.413333pt;}
.y5f{bottom:578.173333pt;}
.y1da{bottom:579.133333pt;}
.y9c{bottom:580.093333pt;}
.yc0{bottom:583.133333pt;}
.y142{bottom:584.573333pt;}
.y3d{bottom:589.053333pt;}
.y8{bottom:592.685334pt;}
.y1d9{bottom:592.893333pt;}
.y114{bottom:593.693333pt;}
.y197{bottom:598.333333pt;}
.y5e{bottom:600.093333pt;}
.y9b{bottom:600.733333pt;}
.y141{bottom:604.573333pt;}
.ybf{bottom:605.053333pt;}
.y15a{bottom:606.333333pt;}
.y1d8{bottom:606.813333pt;}
.y3c{bottom:608.413333pt;}
.y196{bottom:615.453333pt;}
.y113{bottom:615.613333pt;}
.y1d7{bottom:620.573333pt;}
.y9a{bottom:621.373333pt;}
.y5d{bottom:622.013333pt;}
.y140{bottom:624.573333pt;}
.ybe{bottom:626.973333pt;}
.y3b{bottom:630.333333pt;}
.y195{bottom:632.253333pt;}
.y1d6{bottom:634.333333pt;}
.y112{bottom:637.693333pt;}
.y98{bottom:642.053333pt;}
.y5c{bottom:643.973333pt;}
.y13f{bottom:644.613333pt;}
.y7{bottom:645.598667pt;}
.yd7{bottom:646.533333pt;}
.y1d5{bottom:648.133333pt;}
.ybd{bottom:648.933333pt;}
.y194{bottom:649.093333pt;}
.y159{bottom:651.013333pt;}
.y3a{bottom:657.573333pt;}
.y111{bottom:659.653333pt;}
.y1d4{bottom:662.053333pt;}
.y97{bottom:662.693333pt;}
.y13d{bottom:664.613333pt;}
.y5b{bottom:665.893333pt;}
.y193{bottom:666.053333pt;}
.y3{bottom:668.977329pt;}
.ybc{bottom:670.853333pt;}
.y1d3{bottom:675.813333pt;}
.y95{bottom:683.333333pt;}
.y5a{bottom:687.813333pt;}
.y1d2{bottom:689.573333pt;}
.y13c{bottom:690.373333pt;}
.ybb{bottom:692.773333pt;}
.y39{bottom:693.413333pt;}
.y157{bottom:695.653333pt;}
.y110{bottom:698.853333pt;}
.y1d1{bottom:703.333333pt;}
.y59{bottom:709.733333pt;}
.yba{bottom:714.853333pt;}
.y10f{bottom:716.933333pt;}
.y1d0{bottom:717.253333pt;}
.y38{bottom:729.413333pt;}
.y1cf{bottom:731.013333pt;}
.y58{bottom:731.653333pt;}
.y10e{bottom:734.053333pt;}
.yb9{bottom:736.773333pt;}
.y1ce{bottom:744.773333pt;}
.y10d{bottom:752.453333pt;}
.y57{bottom:753.573333pt;}
.y2e{bottom:756.133333pt;}
.y1cd{bottom:758.533333pt;}
.yb8{bottom:758.693333pt;}
.y2a{bottom:771.333333pt;}
.y1cc{bottom:772.453333pt;}
.y56{bottom:775.493333pt;}
.yb7{bottom:778.053333pt;}
.y2{bottom:781.661334pt;}
.y24{bottom:785.893333pt;}
.y1cb{bottom:786.213333pt;}
.y55{bottom:797.413333pt;}
.y1ca{bottom:799.973333pt;}
.y54{bottom:844.320000pt;}
.y1{bottom:859.312000pt;}
.hf{height:14.560000pt;}
.h11{height:18.400000pt;}
.h2a{height:19.360000pt;}
.h2d{height:19.392000pt;}
.h21{height:20.000000pt;}
.h24{height:20.032000pt;}
.h15{height:20.640000pt;}
.h8{height:28.560000pt;}
.h2b{height:29.280000pt;}
.h2c{height:29.440000pt;}
.h9{height:31.845333pt;}
.h36{height:33.600000pt;}
.h37{height:33.760000pt;}
.h34{height:33.792000pt;}
.h2f{height:37.600000pt;}
.h23{height:42.084375pt;}
.h39{height:42.117188pt;}
.h3{height:42.840000pt;}
.h22{height:43.215000pt;}
.h30{height:43.840000pt;}
.h33{height:43.872000pt;}
.h32{height:44.000000pt;}
.h31{height:44.032000pt;}
.h7{height:45.493333pt;}
.h1a{height:47.085938pt;}
.h14{height:47.109375pt;}
.hd{height:47.742188pt;}
.h6{height:47.768000pt;}
.h26{height:47.869500pt;}
.h19{height:48.375000pt;}
.h35{height:49.148438pt;}
.h1c{height:51.663750pt;}
.h38{height:52.134375pt;}
.h2{height:54.592000pt;}
.h13{height:56.832000pt;}
.h1b{height:57.758750pt;}
.h16{height:57.787500pt;}
.h18{height:59.340000pt;}
.h12{height:62.812500pt;}
.h10{height:63.656250pt;}
.h27{height:64.500000pt;}
.h20{height:71.093750pt;}
.hc{height:73.312000pt;}
.h5{height:77.338667pt;}
.he{height:87.872000pt;}
.h1d{height:88.236563pt;}
.h17{height:94.218750pt;}
.h1f{height:103.093750pt;}
.h4{height:105.826671pt;}
.h1e{height:120.236563pt;}
.h25{height:201.600000pt;}
.h2e{height:204.160000pt;}
.h28{height:204.320000pt;}
.h29{height:245.280000pt;}
.ha{height:907.200000pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2a{width:32.480000pt;}
.w25{width:38.400000pt;}
.w27{width:40.480000pt;}
.w29{width:40.512000pt;}
.w28{width:40.640000pt;}
.w26{width:40.672000pt;}
.w20{width:40.960000pt;}
.w1f{width:40.992000pt;}
.w2b{width:41.440000pt;}
.w2d{width:41.600000pt;}
.w2c{width:41.632000pt;}
.w22{width:43.520000pt;}
.w23{width:43.552000pt;}
.w21{width:43.712000pt;}
.w24{width:45.760000pt;}
.w16{width:46.240000pt;}
.w17{width:46.272000pt;}
.w14{width:46.400000pt;}
.w15{width:46.432000pt;}
.w1d{width:57.952000pt;}
.w1b{width:58.240000pt;}
.w1c{width:58.272000pt;}
.w1a{width:58.432000pt;}
.w1e{width:63.040000pt;}
.wc{width:64.352000pt;}
.wa{width:65.600000pt;}
.we{width:79.552000pt;}
.wd{width:82.880000pt;}
.w19{width:84.960000pt;}
.wb{width:104.992000pt;}
.wf{width:108.032000pt;}
.w13{width:121.312000pt;}
.w5{width:249.346667pt;}
.w6{width:249.506667pt;}
.w18{width:492.320000pt;}
.w11{width:497.600000pt;}
.w12{width:501.280000pt;}
.w10{width:503.040000pt;}
.w8{width:518.213333pt;}
.w9{width:524.453333pt;}
.w2{width:566.928019pt;}
.w7{width:642.559990pt;}
.w3{width:642.560000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.320000pt;}
.xa{left:7.200000pt;}
.x1d{left:8.704000pt;}
.x54{left:9.760000pt;}
.x3e{left:12.160000pt;}
.x1c{left:14.784000pt;}
.x6b{left:16.474667pt;}
.x52{left:18.600000pt;}
.x6a{left:19.514667pt;}
.x20{left:20.864000pt;}
.x5d{left:21.920000pt;}
.x5f{left:24.480000pt;}
.x69{left:25.594667pt;}
.x1b{left:26.944000pt;}
.x5e{left:28.000000pt;}
.x5c{left:30.400000pt;}
.x3f{left:33.024000pt;}
.x13{left:62.912000pt;}
.x5{left:72.032000pt;}
.x23{left:73.533333pt;}
.x40{left:79.266667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:95.871990pt;}
.x41{left:98.880000pt;}
.x6c{left:105.792000pt;}
.x24{left:114.240000pt;}
.x42{left:118.533333pt;}
.x4f{left:123.360000pt;}
.x9{left:127.720000pt;}
.x15{left:128.832000pt;}
.x25{left:134.586667pt;}
.x53{left:136.346667pt;}
.x8{left:137.960000pt;}
.x10{left:144.666657pt;}
.x6d{left:148.026667pt;}
.x21{left:151.973333pt;}
.x26{left:154.946667pt;}
.x43{left:157.786667pt;}
.x1e{left:161.626667pt;}
.x27{left:175.333333pt;}
.x44{left:177.440000pt;}
.x4{left:180.874667pt;}
.x11{left:189.826657pt;}
.x37{left:194.626667pt;}
.x28{left:195.680000pt;}
.x45{left:197.093333pt;}
.x60{left:199.426667pt;}
.x29{left:216.026667pt;}
.x50{left:217.346667pt;}
.x55{left:219.586667pt;}
.x6e{left:232.546667pt;}
.x16{left:234.146667pt;}
.x2a{left:236.386667pt;}
.x61{left:240.546667pt;}
.x38{left:241.666667pt;}
.x7{left:249.346667pt;}
.x2b{left:256.733333pt;}
.x56{left:261.186667pt;}
.x46{left:275.653333pt;}
.x2c{left:277.093333pt;}
.x62{left:281.826667pt;}
.x39{left:288.733333pt;}
.xb{left:294.941333pt;}
.x2d{left:297.466667pt;}
.x17{left:298.813333pt;}
.x57{left:305.533333pt;}
.x12{left:315.133324pt;}
.x2e{left:317.826667pt;}
.x6{left:321.373333pt;}
.x63{left:323.133333pt;}
.x47{left:334.560000pt;}
.x3a{left:335.613333pt;}
.x2f{left:338.173333pt;}
.x58{left:349.693333pt;}
.x48{left:354.213333pt;}
.x30{left:358.533333pt;}
.x64{left:364.413333pt;}
.x49{left:373.853333pt;}
.x31{left:378.880000pt;}
.x18{left:382.173333pt;}
.x4a{left:393.466667pt;}
.x32{left:399.266667pt;}
.x6f{left:401.693333pt;}
.x3{left:404.408000pt;}
.x65{left:405.733333pt;}
.x4b{left:413.120000pt;}
.x33{left:419.613333pt;}
.xd{left:427.973324pt;}
.x3b{left:429.733333pt;}
.x4c{left:432.773333pt;}
.x59{left:438.213333pt;}
.x34{left:439.973333pt;}
.x70{left:443.973333pt;}
.x66{left:447.013333pt;}
.x4d{left:452.386667pt;}
.x35{left:460.320000pt;}
.x19{left:462.053333pt;}
.x4e{left:472.026667pt;}
.x3c{left:476.773333pt;}
.x36{left:480.666667pt;}
.x5a{left:482.373333pt;}
.x71{left:486.213333pt;}
.x67{left:488.133333pt;}
.x51{left:512.133333pt;}
.xc{left:517.248000pt;}
.x3d{left:523.680000pt;}
.x5b{left:526.560000pt;}
.x72{left:528.480000pt;}
.x68{left:529.440000pt;}
.xf{left:554.719990pt;}
.x1f{left:570.079990pt;}
.x22{left:574.079990pt;}
.x1a{left:576.159990pt;}
}




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