
    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_d24c918020883e8a4cf6a876.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d039df4119af5d330a1ecd0a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf7068f9624f328bcd8da3be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_740157a8728e3b10725e6d15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_c5c0b177be105878295cb11f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_39b98b21c0e366939ebeac64.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_9bcfc9e6e94c16ffff44ab77.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_342e01abea1e4a61034c33ce.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_426915fdd6b2f506541be6cc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.125760px;}
.ls19{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.234000px;}
.ls8{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.ls1c{letter-spacing:1.080000px;}
.lsc{letter-spacing:25.308000px;}
.ls15{letter-spacing:52.668000px;}
.ls3{letter-spacing:71.280000px;}
.ls4{letter-spacing:72.000000px;}
.lse{letter-spacing:92.988000px;}
.ls12{letter-spacing:93.132000px;}
.ls1a{letter-spacing:111.780000px;}
.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;}
}
.ws11{word-spacing:-36.450000px;}
.ws5{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.976000px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.824000px;}
.wsf{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.500000px;}
.wse{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.798000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
.ws2{word-spacing:60.840000px;}
._e{margin-left:-10.673280px;}
._41{margin-left:-2.250000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._7{width:2.432640px;}
._8{width:3.437760px;}
._a{width:4.623120px;}
._c{width:6.248400px;}
._b{width:7.350480px;}
._6{width:8.724960px;}
._9{width:9.916080px;}
._d{width:11.892240px;}
._19{width:14.634000px;}
._11{width:15.714000px;}
._12{width:16.956000px;}
._1a{width:18.438000px;}
._10{width:20.034000px;}
._14{width:21.438000px;}
._1b{width:23.106000px;}
._f{width:24.516000px;}
._18{width:26.460000px;}
._16{width:28.296000px;}
._15{width:29.808000px;}
._17{width:30.942000px;}
._21{width:32.562000px;}
._13{width:34.182000px;}
._20{width:35.208000px;}
._1d{width:36.990000px;}
._1c{width:38.286000px;}
._28{width:39.654000px;}
._27{width:40.716000px;}
._2f{width:41.796000px;}
._30{width:43.008000px;}
._23{width:44.118000px;}
._2b{width:45.144000px;}
._26{width:47.166000px;}
._1f{width:51.300000px;}
._1e{width:52.542000px;}
._40{width:53.622000px;}
._29{width:55.134000px;}
._3c{width:57.510000px;}
._2a{width:58.806000px;}
._2e{width:60.534000px;}
._39{width:62.208000px;}
._38{width:63.396000px;}
._22{width:66.528000px;}
._2c{width:69.984000px;}
._37{width:72.576000px;}
._31{width:74.070000px;}
._3{width:78.192000px;}
._24{width:90.306000px;}
._36{width:96.120000px;}
._2d{width:110.940000px;}
._3b{width:128.088000px;}
._3a{width:129.168000px;}
._33{width:147.378000px;}
._34{width:148.446000px;}
._4{width:157.860000px;}
._3f{width:194.508000px;}
._3e{width:195.588000px;}
._25{width:202.500000px;}
._3d{width:335.934000px;}
._32{width:767.502000px;}
._35{width:1006.182000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y3b{bottom:-10.440000px;}
.y1b6{bottom:-3.420000px;}
.y1ae{bottom:-3.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y1bf{bottom:5.760000px;}
.y1e0{bottom:10.080000px;}
.y206{bottom:10.290000px;}
.y209{bottom:10.440000px;}
.y1aa{bottom:11.505000px;}
.y1af{bottom:11.520000px;}
.y1d0{bottom:11.685000px;}
.y1ac{bottom:11.700000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y20d{bottom:19.080000px;}
.y1a8{bottom:20.505000px;}
.y1b2{bottom:20.520000px;}
.y1bd{bottom:20.700000px;}
.y20b{bottom:27.900000px;}
.y1a9{bottom:29.505000px;}
.y1b3{bottom:29.520000px;}
.y1bc{bottom:29.565000px;}
.y39{bottom:37.110000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y36{bottom:85.710000px;}
.y1b0{bottom:102.780000px;}
.y35{bottom:105.690000px;}
.yc1{bottom:107.100000px;}
.y295{bottom:107.460000px;}
.y237{bottom:107.640000px;}
.y77{bottom:108.180000px;}
.y254{bottom:109.080000px;}
.y118{bottom:116.100000px;}
.y27{bottom:117.000000px;}
.y1dd{bottom:124.020000px;}
.yf0{bottom:124.560000px;}
.y14c{bottom:124.920000px;}
.yc0{bottom:125.100000px;}
.y294{bottom:125.280000px;}
.y236{bottom:125.460000px;}
.y34{bottom:125.490000px;}
.y76{bottom:126.000000px;}
.y253{bottom:127.080000px;}
.y195{bottom:133.560000px;}
.y117{bottom:133.920000px;}
.y179{bottom:134.640000px;}
.yb1{bottom:135.000000px;}
.y1ad{bottom:138.780000px;}
.y204{bottom:139.680000px;}
.y1dc{bottom:141.840000px;}
.yef{bottom:142.380000px;}
.y14b{bottom:142.740000px;}
.ybf{bottom:142.920000px;}
.y293{bottom:143.100000px;}
.y235{bottom:143.280000px;}
.y75{bottom:144.000000px;}
.y252{bottom:144.900000px;}
.y274{bottom:145.080000px;}
.y33{bottom:145.290000px;}
.y194{bottom:151.380000px;}
.y116{bottom:151.740000px;}
.y11d{bottom:151.920000px;}
.yb0{bottom:152.460000px;}
.y203{bottom:157.680000px;}
.y1db{bottom:159.660000px;}
.yee{bottom:160.200000px;}
.y14a{bottom:160.560000px;}
.ybe{bottom:160.740000px;}
.y292{bottom:161.100000px;}
.y234{bottom:161.280000px;}
.y74{bottom:161.820000px;}
.y251{bottom:162.720000px;}
.y273{bottom:162.900000px;}
.y32{bottom:165.090000px;}
.y193{bottom:169.200000px;}
.y115{bottom:169.560000px;}
.y26{bottom:169.740000px;}
.yaf{bottom:170.280000px;}
.y1ab{bottom:174.600000px;}
.y202{bottom:175.500000px;}
.y28{bottom:178.020000px;}
.yed{bottom:178.200000px;}
.y149{bottom:178.380000px;}
.ybd{bottom:178.560000px;}
.y291{bottom:178.920000px;}
.y233{bottom:179.100000px;}
.y73{bottom:179.640000px;}
.y250{bottom:180.540000px;}
.y272{bottom:180.720000px;}
.y31{bottom:184.890000px;}
.y1da{bottom:186.480000px;}
.y192{bottom:187.200000px;}
.y114{bottom:187.380000px;}
.y11c{bottom:187.560000px;}
.y178{bottom:188.280000px;}
.yae{bottom:190.440000px;}
.y201{bottom:193.320000px;}
.y3a{bottom:195.300000px;}
.yec{bottom:196.020000px;}
.y148{bottom:196.200000px;}
.ybc{bottom:196.380000px;}
.y290{bottom:196.740000px;}
.y232{bottom:196.920000px;}
.y24f{bottom:198.360000px;}
.y271{bottom:198.540000px;}
.y1d9{bottom:204.480000px;}
.y30{bottom:204.870000px;}
.y191{bottom:205.020000px;}
.y113{bottom:205.200000px;}
.y11b{bottom:205.410000px;}
.y177{bottom:206.130000px;}
.y72{bottom:206.490000px;}
.y1a7{bottom:210.465000px;}
.yeb{bottom:213.870000px;}
.y12e{bottom:214.230000px;}
.y28f{bottom:214.590000px;}
.y231{bottom:214.770000px;}
.y38{bottom:215.130000px;}
.y24e{bottom:216.210000px;}
.y270{bottom:216.390000px;}
.y200{bottom:220.170000px;}
.y1d8{bottom:222.330000px;}
.y25{bottom:222.510000px;}
.y190{bottom:222.870000px;}
.yad{bottom:223.230000px;}
.y176{bottom:223.950000px;}
.y71{bottom:224.310000px;}
.y2f{bottom:224.670000px;}
.yea{bottom:231.690000px;}
.y147{bottom:232.050000px;}
.y152{bottom:232.230000px;}
.y28e{bottom:232.410000px;}
.y230{bottom:232.590000px;}
.y24d{bottom:234.210000px;}
.y112{bottom:241.050000px;}
.yac{bottom:241.230000px;}
.y175{bottom:241.770000px;}
.y70{bottom:242.310000px;}
.y37{bottom:243.930000px;}
.y2e{bottom:244.470000px;}
.y1ff{bottom:246.285000px;}
.y1d7{bottom:249.150000px;}
.ye9{bottom:249.510000px;}
.y18f{bottom:249.690000px;}
.y146{bottom:249.870000px;}
.y151{bottom:250.050000px;}
.y28d{bottom:250.230000px;}
.y22f{bottom:250.410000px;}
.y24c{bottom:252.030000px;}
.y26f{bottom:252.210000px;}
.y111{bottom:258.510000px;}
.yab{bottom:259.050000px;}
.y174{bottom:259.590000px;}
.y6f{bottom:260.130000px;}
.y2d{bottom:264.270000px;}
.y18e{bottom:267.510000px;}
.y145{bottom:267.690000px;}
.y150{bottom:267.870000px;}
.y28c{bottom:268.230000px;}
.y22e{bottom:268.410000px;}
.y1a6{bottom:268.590000px;}
.y24b{bottom:269.850000px;}
.y26e{bottom:270.030000px;}
.y24{bottom:275.430000px;}
.y1d6{bottom:275.970000px;}
.ye8{bottom:276.510000px;}
.yaa{bottom:276.870000px;}
.y173{bottom:277.410000px;}
.y6e{bottom:277.950000px;}
.y1fe{bottom:282.105000px;}
.y2c{bottom:284.115000px;}
.y144{bottom:285.510000px;}
.y110{bottom:285.690000px;}
.y28b{bottom:286.050000px;}
.y1a5{bottom:286.410000px;}
.y24a{bottom:287.670000px;}
.y26d{bottom:287.850000px;}
.y1d5{bottom:293.790000px;}
.ye7{bottom:294.330000px;}
.ya9{bottom:294.690000px;}
.y22d{bottom:295.230000px;}
.y172{bottom:295.410000px;}
.y6d{bottom:295.770000px;}
.y18d{bottom:303.330000px;}
.y10f{bottom:303.510000px;}
.y28a{bottom:303.870000px;}
.y2b{bottom:304.095000px;}
.y249{bottom:305.490000px;}
.y26c{bottom:305.670000px;}
.y1d4{bottom:311.790000px;}
.ye6{bottom:312.150000px;}
.ya8{bottom:312.510000px;}
.y22c{bottom:313.050000px;}
.y1a4{bottom:313.410000px;}
.y6c{bottom:313.590000px;}
.y1fd{bottom:318.105000px;}
.y18c{bottom:321.150000px;}
.y143{bottom:321.330000px;}
.y10e{bottom:321.510000px;}
.y289{bottom:321.690000px;}
.y171{bottom:322.230000px;}
.y248{bottom:323.490000px;}
.y2a{bottom:323.895000px;}
.y22{bottom:328.170000px;}
.y1d3{bottom:329.610000px;}
.ye5{bottom:329.970000px;}
.ya7{bottom:330.510000px;}
.y22b{bottom:330.870000px;}
.y1a3{bottom:331.230000px;}
.y6b{bottom:331.410000px;}
.y18b{bottom:338.970000px;}
.y142{bottom:339.150000px;}
.y10d{bottom:339.330000px;}
.y288{bottom:339.510000px;}
.y170{bottom:339.690000px;}
.y247{bottom:341.310000px;}
.y26b{bottom:341.490000px;}
.ye4{bottom:347.430000px;}
.ya6{bottom:348.330000px;}
.y22a{bottom:348.690000px;}
.y1a2{bottom:349.050000px;}
.y6a{bottom:349.410000px;}
.y1fc{bottom:353.925000px;}
.y29{bottom:354.135000px;}
.y1d2{bottom:356.430000px;}
.y18a{bottom:356.790000px;}
.y141{bottom:356.970000px;}
.y10c{bottom:357.150000px;}
.y287{bottom:357.510000px;}
.y246{bottom:359.130000px;}
.y26a{bottom:359.310000px;}
.y21{bottom:362.910000px;}
.ya5{bottom:366.150000px;}
.y229{bottom:366.690000px;}
.y16f{bottom:366.870000px;}
.y69{bottom:367.230000px;}
.y23{bottom:368.490000px;}
.ye3{bottom:374.610000px;}
.y140{bottom:374.790000px;}
.y10b{bottom:374.970000px;}
.y286{bottom:375.330000px;}
.y245{bottom:376.950000px;}
.y269{bottom:377.130000px;}
.y1d1{bottom:382.545000px;}
.ya4{bottom:383.970000px;}
.y1a1{bottom:384.330000px;}
.y228{bottom:384.510000px;}
.y16e{bottom:384.690000px;}
.y68{bottom:385.050000px;}
.ye2{bottom:392.610000px;}
.y10a{bottom:392.790000px;}
.y285{bottom:393.150000px;}
.y1fb{bottom:394.230000px;}
.y244{bottom:394.770000px;}
.y268{bottom:394.950000px;}
.y20{bottom:397.650000px;}
.ya3{bottom:401.790000px;}
.y227{bottom:402.330000px;}
.y67{bottom:402.870000px;}
.y1a0{bottom:404.670000px;}
.ye1{bottom:410.430000px;}
.y109{bottom:410.610000px;}
.y12d{bottom:410.790000px;}
.y284{bottom:410.970000px;}
.y16d{bottom:411.690000px;}
.y1fa{bottom:412.050000px;}
.y243{bottom:412.590000px;}
.y267{bottom:412.770000px;}
.y1cf{bottom:418.365000px;}
.ya2{bottom:419.610000px;}
.y226{bottom:419.790000px;}
.y66{bottom:420.690000px;}
.y189{bottom:427.890000px;}
.ye0{bottom:428.250000px;}
.y13f{bottom:428.430000px;}
.y12c{bottom:428.610000px;}
.y283{bottom:428.790000px;}
.y16c{bottom:429.510000px;}
.y1e{bottom:430.590000px;}
.y19f{bottom:437.430000px;}
.ybb{bottom:437.610000px;}
.y65{bottom:438.690000px;}
.y1f9{bottom:438.870000px;}
.ydf{bottom:446.115000px;}
.y13e{bottom:446.295000px;}
.y14f{bottom:446.475000px;}
.ya1{bottom:446.655000px;}
.y225{bottom:447.015000px;}
.y16b{bottom:447.375000px;}
.y242{bottom:448.455000px;}
.y266{bottom:448.635000px;}
.y1ce{bottom:454.215000px;}
.y188{bottom:455.115000px;}
.y19e{bottom:455.295000px;}
.yba{bottom:455.475000px;}
.y64{bottom:456.555000px;}
.y1f8{bottom:456.735000px;}
.y1d{bottom:457.455000px;}
.yde{bottom:463.935000px;}
.y13d{bottom:464.115000px;}
.y14e{bottom:464.295000px;}
.ya0{bottom:464.475000px;}
.y282{bottom:464.655000px;}
.y224{bottom:464.835000px;}
.y16a{bottom:465.195000px;}
.y241{bottom:466.275000px;}
.y265{bottom:466.455000px;}
.y187{bottom:472.935000px;}
.y19d{bottom:473.115000px;}
.yb9{bottom:473.295000px;}
.y1f7{bottom:474.735000px;}
.ydd{bottom:481.575000px;}
.y13c{bottom:481.935000px;}
.y9f{bottom:482.295000px;}
.y281{bottom:482.475000px;}
.y169{bottom:483.015000px;}
.y63{bottom:483.375000px;}
.y240{bottom:484.095000px;}
.y1c{bottom:484.275000px;}
.y1cd{bottom:490.215000px;}
.yb8{bottom:490.755000px;}
.y186{bottom:490.935000px;}
.y108{bottom:491.115000px;}
.y223{bottom:491.835000px;}
.y1f6{bottom:492.555000px;}
.y19c{bottom:499.935000px;}
.y9e{bottom:500.115000px;}
.y280{bottom:500.295000px;}
.y168{bottom:500.835000px;}
.y62{bottom:501.195000px;}
.y264{bottom:502.095000px;}
.y23f{bottom:503.895000px;}
.ydc{bottom:508.755000px;}
.y107{bottom:508.935000px;}
.y1f5{bottom:510.015000px;}
.y1b{bottom:511.095000px;}
.y185{bottom:517.755000px;}
.y9d{bottom:517.935000px;}
.y27f{bottom:518.115000px;}
.y222{bottom:518.655000px;}
.y61{bottom:519.015000px;}
.y263{bottom:519.915000px;}
.ydb{bottom:526.575000px;}
.y13b{bottom:526.755000px;}
.y106{bottom:526.935000px;}
.y167{bottom:527.835000px;}
.y1cc{bottom:530.535000px;}
.y184{bottom:535.575000px;}
.y19b{bottom:535.755000px;}
.y9c{bottom:535.935000px;}
.y221{bottom:536.475000px;}
.y60{bottom:536.835000px;}
.y1a{bottom:537.915000px;}
.y262{bottom:539.895000px;}
.y13a{bottom:544.215000px;}
.y105{bottom:544.755000px;}
.y166{bottom:545.295000px;}
.yda{bottom:553.395000px;}
.y19a{bottom:553.575000px;}
.y9b{bottom:553.755000px;}
.y27e{bottom:553.935000px;}
.y23e{bottom:554.655000px;}
.y5f{bottom:554.835000px;}
.y1f4{bottom:555.015000px;}
.y1cb{bottom:557.355000px;}
.y104{bottom:562.575000px;}
.y220{bottom:563.295000px;}
.y19{bottom:564.555000px;}
.y1f{bottom:564.915000px;}
.yd9{bottom:571.215000px;}
.y139{bottom:571.395000px;}
.y9a{bottom:571.575000px;}
.y27d{bottom:571.755000px;}
.y165{bottom:572.475000px;}
.y5e{bottom:572.655000px;}
.y1f3{bottom:572.835000px;}
.y1ca{bottom:575.175000px;}
.y103{bottom:580.395000px;}
.y183{bottom:589.035000px;}
.y138{bottom:589.215000px;}
.y99{bottom:589.395000px;}
.y27c{bottom:589.575000px;}
.y21f{bottom:590.115000px;}
.y164{bottom:590.295000px;}
.y5d{bottom:590.475000px;}
.y1f2{bottom:590.835000px;}
.y18{bottom:592.995000px;}
.yd8{bottom:598.035000px;}
.y102{bottom:598.215000px;}
.y137{bottom:607.035000px;}
.y98{bottom:607.215000px;}
.y27b{bottom:607.395000px;}
.y21e{bottom:607.935000px;}
.y163{bottom:608.115000px;}
.y5c{bottom:608.295000px;}
.y1f1{bottom:608.655000px;}
.y1c9{bottom:610.455000px;}
.yd7{bottom:616.035000px;}
.y17{bottom:619.275000px;}
.y182{bottom:624.855000px;}
.y97{bottom:625.035000px;}
.y27a{bottom:625.215000px;}
.y5b{bottom:626.115000px;}
.y1f0{bottom:626.475000px;}
.yd6{bottom:633.855000px;}
.y101{bottom:634.035000px;}
.y21d{bottom:634.935000px;}
.y1c8{bottom:637.815000px;}
.y181{bottom:642.675000px;}
.y136{bottom:642.855000px;}
.y96{bottom:643.035000px;}
.y162{bottom:643.935000px;}
.y5a{bottom:644.115000px;}
.y1ef{bottom:644.295000px;}
.y16{bottom:650.055000px;}
.y100{bottom:651.855000px;}
.y21c{bottom:652.755000px;}
.y1c7{bottom:655.635000px;}
.y180{bottom:660.495000px;}
.yd5{bottom:660.675000px;}
.y95{bottom:660.855000px;}
.y279{bottom:661.035000px;}
.y161{bottom:661.755000px;}
.y59{bottom:661.935000px;}
.y1ee{bottom:662.115000px;}
.yff{bottom:669.675000px;}
.y21b{bottom:670.575000px;}
.y1c6{bottom:673.455000px;}
.yd4{bottom:678.525000px;}
.y94{bottom:678.705000px;}
.y278{bottom:678.885000px;}
.y160{bottom:679.605000px;}
.y58{bottom:679.785000px;}
.y1ed{bottom:680.145000px;}
.y297{bottom:684.645000px;}
.y17f{bottom:687.345000px;}
.yfe{bottom:687.525000px;}
.y21a{bottom:688.425000px;}
.y1c5{bottom:691.305000px;}
.y199{bottom:695.985000px;}
.y135{bottom:696.345000px;}
.y93{bottom:696.525000px;}
.y277{bottom:696.705000px;}
.y23d{bottom:697.425000px;}
.y57{bottom:697.605000px;}
.y1ec{bottom:697.965000px;}
.y15{bottom:698.865000px;}
.y17e{bottom:704.805000px;}
.yfd{bottom:704.985000px;}
.yd3{bottom:705.345000px;}
.y12b{bottom:705.525000px;}
.y219{bottom:706.245000px;}
.y15f{bottom:706.425000px;}
.y1c4{bottom:709.125000px;}
.yb7{bottom:713.985000px;}
.y134{bottom:714.165000px;}
.y92{bottom:714.345000px;}
.y276{bottom:714.525000px;}
.y296{bottom:714.705000px;}
.y23c{bottom:715.245000px;}
.y56{bottom:715.425000px;}
.yd2{bottom:722.805000px;}
.y14d{bottom:723.165000px;}
.y11a{bottom:723.345000px;}
.y15e{bottom:724.245000px;}
.y1c3{bottom:726.945000px;}
.y91{bottom:732.165000px;}
.y275{bottom:732.345000px;}
.y55{bottom:733.245000px;}
.yb6{bottom:741.165000px;}
.y218{bottom:742.065000px;}
.y15d{bottom:742.245000px;}
.y1eb{bottom:742.605000px;}
.y1c2{bottom:744.945000px;}
.y14{bottom:747.465000px;}
.y17d{bottom:749.985000px;}
.y90{bottom:750.165000px;}
.y23b{bottom:751.065000px;}
.y54{bottom:751.245000px;}
.yd1{bottom:758.985000px;}
.yb5{bottom:759.165000px;}
.y217{bottom:759.885000px;}
.y15c{bottom:760.065000px;}
.y1ea{bottom:760.425000px;}
.y17c{bottom:767.805000px;}
.yfc{bottom:767.985000px;}
.y12a{bottom:768.165000px;}
.y23a{bottom:768.885000px;}
.y53{bottom:769.065000px;}
.y1c1{bottom:771.765000px;}
.yd0{bottom:776.805000px;}
.y8f{bottom:776.985000px;}
.y216{bottom:777.705000px;}
.y15b{bottom:777.885000px;}
.y1e9{bottom:778.245000px;}
.yfb{bottom:785.805000px;}
.y129{bottom:785.985000px;}
.y239{bottom:786.705000px;}
.y52{bottom:786.885000px;}
.ycf{bottom:794.625000px;}
.y8e{bottom:794.805000px;}
.y215{bottom:795.525000px;}
.y15a{bottom:795.705000px;}
.y1e8{bottom:796.245000px;}
.y1c0{bottom:797.865000px;}
.y13{bottom:800.565000px;}
.yfa{bottom:803.625000px;}
.y128{bottom:803.805000px;}
.y51{bottom:804.705000px;}
.y238{bottom:806.505000px;}
.yce{bottom:812.445000px;}
.y8d{bottom:812.625000px;}
.y159{bottom:813.165000px;}
.y214{bottom:813.345000px;}
.y1e7{bottom:814.065000px;}
.yf9{bottom:821.445000px;}
.y127{bottom:821.625000px;}
.y50{bottom:822.525000px;}
.y261{bottom:824.505000px;}
.y12{bottom:828.465000px;}
.y8c{bottom:830.445000px;}
.y213{bottom:831.345000px;}
.y1e6{bottom:831.885000px;}
.y1be{bottom:833.685000px;}
.yf8{bottom:839.445000px;}
.y4f{bottom:840.345000px;}
.y260{bottom:845.745000px;}
.ycd{bottom:848.265000px;}
.y8b{bottom:848.445000px;}
.yf7{bottom:857.265000px;}
.y126{bottom:857.445000px;}
.y212{bottom:858.165000px;}
.y158{bottom:858.345000px;}
.y1e5{bottom:858.705000px;}
.ycc{bottom:866.085000px;}
.y8a{bottom:866.265000px;}
.y4e{bottom:867.345000px;}
.y11{bottom:874.545000px;}
.yf6{bottom:875.085000px;}
.y125{bottom:875.265000px;}
.y211{bottom:875.985000px;}
.y157{bottom:876.165000px;}
.ycb{bottom:883.905000px;}
.y89{bottom:884.085000px;}
.y1e4{bottom:884.805000px;}
.y4d{bottom:885.165000px;}
.y1bb{bottom:887.325000px;}
.yf5{bottom:892.905000px;}
.y124{bottom:893.085000px;}
.y210{bottom:893.805000px;}
.y156{bottom:893.985000px;}
.y10{bottom:899.745000px;}
.y198{bottom:901.365000px;}
.yca{bottom:901.725000px;}
.y88{bottom:901.905000px;}
.y4c{bottom:902.985000px;}
.yf4{bottom:910.770000px;}
.y123{bottom:910.950000px;}
.y20f{bottom:911.670000px;}
.y155{bottom:911.850000px;}
.y1e3{bottom:917.790000px;}
.yf{bottom:919.590000px;}
.y87{bottom:919.770000px;}
.y4b{bottom:920.850000px;}
.yf3{bottom:928.590000px;}
.y122{bottom:928.770000px;}
.y154{bottom:929.670000px;}
.y86{bottom:937.590000px;}
.y4a{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y1ba{bottom:941.190000px;}
.yf2{bottom:946.230000px;}
.y121{bottom:946.590000px;}
.y20e{bottom:947.490000px;}
.y25f{bottom:947.670000px;}
.y1e2{bottom:950.550000px;}
.yc9{bottom:955.410000px;}
.y85{bottom:955.590000px;}
.y49{bottom:956.670000px;}
.yd{bottom:959.010000px;}
.y133{bottom:964.410000px;}
.y120{bottom:964.590000px;}
.y25e{bottom:965.490000px;}
.yc8{bottom:973.230000px;}
.y84{bottom:973.410000px;}
.y20c{bottom:973.590000px;}
.y48{bottom:974.490000px;}
.y1b9{bottom:977.010000px;}
.yc{bottom:979.170000px;}
.y132{bottom:982.230000px;}
.y11f{bottom:982.410000px;}
.y25d{bottom:983.310000px;}
.y1e1{bottom:983.490000px;}
.yb4{bottom:990.870000px;}
.y17b{bottom:991.050000px;}
.y83{bottom:991.230000px;}
.y47{bottom:992.310000px;}
.yc7{bottom:1000.050000px;}
.y11e{bottom:1000.230000px;}
.y25c{bottom:1001.130000px;}
.y82{bottom:1009.050000px;}
.y46{bottom:1010.130000px;}
.y1b8{bottom:1012.830000px;}
.y1df{bottom:1016.250000px;}
.yc6{bottom:1017.870000px;}
.yb3{bottom:1018.050000px;}
.y25b{bottom:1018.950000px;}
.yb{bottom:1019.130000px;}
.y20a{bottom:1024.350000px;}
.y81{bottom:1026.870000px;}
.y45{bottom:1027.950000px;}
.ya{bottom:1031.190000px;}
.y17a{bottom:1035.510000px;}
.yb2{bottom:1035.870000px;}
.y25a{bottom:1036.770000px;}
.y9{bottom:1043.250000px;}
.yf1{bottom:1044.870000px;}
.y44{bottom:1045.770000px;}
.y1b7{bottom:1048.650000px;}
.yc5{bottom:1053.690000px;}
.y80{bottom:1053.870000px;}
.y259{bottom:1054.770000px;}
.y8{bottom:1055.310000px;}
.y131{bottom:1062.690000px;}
.y43{bottom:1063.770000px;}
.y7{bottom:1069.890000px;}
.yc4{bottom:1071.510000px;}
.y7f{bottom:1071.690000px;}
.y258{bottom:1072.590000px;}
.y208{bottom:1074.930000px;}
.y130{bottom:1080.510000px;}
.y42{bottom:1081.590000px;}
.y1b5{bottom:1084.650000px;}
.y7e{bottom:1089.510000px;}
.y257{bottom:1090.410000px;}
.y6{bottom:1095.450000px;}
.yc3{bottom:1098.330000px;}
.y41{bottom:1099.410000px;}
.y7d{bottom:1107.330000px;}
.y256{bottom:1108.230000px;}
.y207{bottom:1108.590000px;}
.yc2{bottom:1115.790000px;}
.y12f{bottom:1116.150000px;}
.y40{bottom:1117.230000px;}
.y1b4{bottom:1120.470000px;}
.y7c{bottom:1125.150000px;}
.y255{bottom:1126.050000px;}
.y1de{bottom:1133.610000px;}
.y197{bottom:1133.970000px;}
.y3f{bottom:1135.050000px;}
.y205{bottom:1141.350000px;}
.y7b{bottom:1142.970000px;}
.y196{bottom:1151.640000px;}
.y3e{bottom:1153.080000px;}
.y1b1{bottom:1156.320000px;}
.y7a{bottom:1161.000000px;}
.y153{bottom:1170.540000px;}
.y3d{bottom:1170.900000px;}
.y79{bottom:1178.820000px;}
.y3c{bottom:1190.700000px;}
.y119{bottom:1196.280000px;}
.y78{bottom:1196.640000px;}
.h22{height:26.820000px;}
.h23{height:26.856000px;}
.h24{height:27.022500px;}
.h25{height:27.720000px;}
.h27{height:29.678906px;}
.h1f{height:29.685000px;}
.h19{height:29.695500px;}
.h1d{height:29.700000px;}
.h20{height:29.865000px;}
.h1a{height:29.875500px;}
.h18{height:29.880000px;}
.h21{height:29.901000px;}
.h1c{height:29.902500px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h26{height:44.640000px;}
.h17{height:47.685000px;}
.h1b{height:47.700000px;}
.h1e{height:47.736000px;}
.h28{height:52.971680px;}
.h3{height:52.998047px;}
.he{height:54.421875px;}
.h16{height:55.503491px;}
.h15{height:56.214844px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h9{height:60.226875px;}
.h13{height:60.372000px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.hb{height:72.326250px;}
.hf{height:78.367500px;}
.h14{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h10{height:381.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:23.220000px;}
.w19{width:52.380000px;}
.w17{width:63.720000px;}
.w1a{width:73.980000px;}
.wb{width:77.616000px;}
.w7{width:77.745000px;}
.w3{width:80.310000px;}
.wa{width:82.260000px;}
.w6{width:82.281000px;}
.w8{width:84.090000px;}
.wc{width:84.240000px;}
.w11{width:87.105000px;}
.w12{width:94.710000px;}
.we{width:96.336000px;}
.wf{width:104.580000px;}
.w15{width:109.290000px;}
.w9{width:112.342500px;}
.w5{width:112.485000px;}
.w13{width:123.645000px;}
.w14{width:123.861000px;}
.w16{width:140.962500px;}
.wd{width:162.385500px;}
.w10{width:177.495000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:1.075500px;}
.x34{left:2.880000px;}
.x3e{left:3.960000px;}
.x30{left:5.040000px;}
.x46{left:7.200000px;}
.x3{left:8.635500px;}
.x12{left:10.800000px;}
.x25{left:12.420000px;}
.x21{left:16.365000px;}
.x31{left:19.260000px;}
.x2a{left:21.225000px;}
.x33{left:22.500000px;}
.x2b{left:24.105000px;}
.x27{left:27.165000px;}
.x28{left:28.800000px;}
.x23{left:31.140000px;}
.x1f{left:32.925000px;}
.x26{left:36.165000px;}
.x11{left:38.340000px;}
.x3f{left:39.405000px;}
.x39{left:40.500000px;}
.x41{left:42.840000px;}
.x1{left:45.364500px;}
.x32{left:46.831500px;}
.x13{left:49.140000px;}
.x40{left:50.250000px;}
.x35{left:51.304500px;}
.x2c{left:52.924500px;}
.x5{left:54.000000px;}
.x29{left:56.145000px;}
.xb{left:60.480000px;}
.x1c{left:67.140000px;}
.x1b{left:70.200000px;}
.x1d{left:73.800000px;}
.x14{left:80.856000px;}
.x1a{left:108.036000px;}
.xe{left:146.916000px;}
.xd{left:148.536000px;}
.x2d{left:169.050000px;}
.x42{left:197.670000px;}
.x37{left:217.470000px;}
.x2{left:222.370500px;}
.xc{left:250.770000px;}
.x2e{left:255.090000px;}
.x43{left:265.215000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x44{left:292.215000px;}
.x9{left:297.795000px;}
.xf{left:314.355000px;}
.x38{left:317.595000px;}
.x2f{left:336.495000px;}
.x45{left:348.375000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x1e{left:472.440000px;}
.x10{left:473.505000px;}
.x19{left:485.925000px;}
.x18{left:489.705000px;}
.x16{left:493.305000px;}
.x15{left:500.505000px;}
.x17{left:527.505000px;}
.x20{left:588.720000px;}
.x3c{left:601.680000px;}
.x3a{left:654.270000px;}
.x22{left:674.610000px;}
.x3d{left:729.150000px;}
.x3b{left:745.170000px;}
.x24{left:756.150000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.111787pt;}
.ls19{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.208000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.960000pt;}
.lsc{letter-spacing:22.496000pt;}
.ls15{letter-spacing:46.816000pt;}
.ls3{letter-spacing:63.360000pt;}
.ls4{letter-spacing:64.000000pt;}
.lse{letter-spacing:82.656000pt;}
.ls12{letter-spacing:82.784000pt;}
.ls1a{letter-spacing:99.360000pt;}
.ws11{word-spacing:-32.400000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.312000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.288000pt;}
.wsf{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
.ws2{word-spacing:54.080000pt;}
._e{margin-left:-9.487360pt;}
._41{margin-left:-2.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._7{width:2.162347pt;}
._8{width:3.055787pt;}
._a{width:4.109440pt;}
._c{width:5.554133pt;}
._b{width:6.533760pt;}
._6{width:7.755520pt;}
._9{width:8.814293pt;}
._d{width:10.570880pt;}
._19{width:13.008000pt;}
._11{width:13.968000pt;}
._12{width:15.072000pt;}
._1a{width:16.389333pt;}
._10{width:17.808000pt;}
._14{width:19.056000pt;}
._1b{width:20.538667pt;}
._f{width:21.792000pt;}
._18{width:23.520000pt;}
._16{width:25.152000pt;}
._15{width:26.496000pt;}
._17{width:27.504000pt;}
._21{width:28.944000pt;}
._13{width:30.384000pt;}
._20{width:31.296000pt;}
._1d{width:32.880000pt;}
._1c{width:34.032000pt;}
._28{width:35.248000pt;}
._27{width:36.192000pt;}
._2f{width:37.152000pt;}
._30{width:38.229333pt;}
._23{width:39.216000pt;}
._2b{width:40.128000pt;}
._26{width:41.925333pt;}
._1f{width:45.600000pt;}
._1e{width:46.704000pt;}
._40{width:47.664000pt;}
._29{width:49.008000pt;}
._3c{width:51.120000pt;}
._2a{width:52.272000pt;}
._2e{width:53.808000pt;}
._39{width:55.296000pt;}
._38{width:56.352000pt;}
._22{width:59.136000pt;}
._2c{width:62.208000pt;}
._37{width:64.512000pt;}
._31{width:65.840000pt;}
._3{width:69.504000pt;}
._24{width:80.272000pt;}
._36{width:85.440000pt;}
._2d{width:98.613333pt;}
._3b{width:113.856000pt;}
._3a{width:114.816000pt;}
._33{width:131.002667pt;}
._34{width:131.952000pt;}
._4{width:140.320000pt;}
._3f{width:172.896000pt;}
._3e{width:173.856000pt;}
._25{width:180.000000pt;}
._3d{width:298.608000pt;}
._32{width:682.224000pt;}
._35{width:894.384000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y3b{bottom:-9.280000pt;}
.y1b6{bottom:-3.040000pt;}
.y1ae{bottom:-2.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y1bf{bottom:5.120000pt;}
.y1e0{bottom:8.960000pt;}
.y206{bottom:9.146667pt;}
.y209{bottom:9.280000pt;}
.y1aa{bottom:10.226667pt;}
.y1af{bottom:10.240000pt;}
.y1d0{bottom:10.386667pt;}
.y1ac{bottom:10.400000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y20d{bottom:16.960000pt;}
.y1a8{bottom:18.226667pt;}
.y1b2{bottom:18.240000pt;}
.y1bd{bottom:18.400000pt;}
.y20b{bottom:24.800000pt;}
.y1a9{bottom:26.226667pt;}
.y1b3{bottom:26.240000pt;}
.y1bc{bottom:26.280000pt;}
.y39{bottom:32.986667pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y36{bottom:76.186667pt;}
.y1b0{bottom:91.360000pt;}
.y35{bottom:93.946667pt;}
.yc1{bottom:95.200000pt;}
.y295{bottom:95.520000pt;}
.y237{bottom:95.680000pt;}
.y77{bottom:96.160000pt;}
.y254{bottom:96.960000pt;}
.y118{bottom:103.200000pt;}
.y27{bottom:104.000000pt;}
.y1dd{bottom:110.240000pt;}
.yf0{bottom:110.720000pt;}
.y14c{bottom:111.040000pt;}
.yc0{bottom:111.200000pt;}
.y294{bottom:111.360000pt;}
.y236{bottom:111.520000pt;}
.y34{bottom:111.546667pt;}
.y76{bottom:112.000000pt;}
.y253{bottom:112.960000pt;}
.y195{bottom:118.720000pt;}
.y117{bottom:119.040000pt;}
.y179{bottom:119.680000pt;}
.yb1{bottom:120.000000pt;}
.y1ad{bottom:123.360000pt;}
.y204{bottom:124.160000pt;}
.y1dc{bottom:126.080000pt;}
.yef{bottom:126.560000pt;}
.y14b{bottom:126.880000pt;}
.ybf{bottom:127.040000pt;}
.y293{bottom:127.200000pt;}
.y235{bottom:127.360000pt;}
.y75{bottom:128.000000pt;}
.y252{bottom:128.800000pt;}
.y274{bottom:128.960000pt;}
.y33{bottom:129.146667pt;}
.y194{bottom:134.560000pt;}
.y116{bottom:134.880000pt;}
.y11d{bottom:135.040000pt;}
.yb0{bottom:135.520000pt;}
.y203{bottom:140.160000pt;}
.y1db{bottom:141.920000pt;}
.yee{bottom:142.400000pt;}
.y14a{bottom:142.720000pt;}
.ybe{bottom:142.880000pt;}
.y292{bottom:143.200000pt;}
.y234{bottom:143.360000pt;}
.y74{bottom:143.840000pt;}
.y251{bottom:144.640000pt;}
.y273{bottom:144.800000pt;}
.y32{bottom:146.746667pt;}
.y193{bottom:150.400000pt;}
.y115{bottom:150.720000pt;}
.y26{bottom:150.880000pt;}
.yaf{bottom:151.360000pt;}
.y1ab{bottom:155.200000pt;}
.y202{bottom:156.000000pt;}
.y28{bottom:158.240000pt;}
.yed{bottom:158.400000pt;}
.y149{bottom:158.560000pt;}
.ybd{bottom:158.720000pt;}
.y291{bottom:159.040000pt;}
.y233{bottom:159.200000pt;}
.y73{bottom:159.680000pt;}
.y250{bottom:160.480000pt;}
.y272{bottom:160.640000pt;}
.y31{bottom:164.346667pt;}
.y1da{bottom:165.760000pt;}
.y192{bottom:166.400000pt;}
.y114{bottom:166.560000pt;}
.y11c{bottom:166.720000pt;}
.y178{bottom:167.360000pt;}
.yae{bottom:169.280000pt;}
.y201{bottom:171.840000pt;}
.y3a{bottom:173.600000pt;}
.yec{bottom:174.240000pt;}
.y148{bottom:174.400000pt;}
.ybc{bottom:174.560000pt;}
.y290{bottom:174.880000pt;}
.y232{bottom:175.040000pt;}
.y24f{bottom:176.320000pt;}
.y271{bottom:176.480000pt;}
.y1d9{bottom:181.760000pt;}
.y30{bottom:182.106667pt;}
.y191{bottom:182.240000pt;}
.y113{bottom:182.400000pt;}
.y11b{bottom:182.586667pt;}
.y177{bottom:183.226667pt;}
.y72{bottom:183.546667pt;}
.y1a7{bottom:187.080000pt;}
.yeb{bottom:190.106667pt;}
.y12e{bottom:190.426667pt;}
.y28f{bottom:190.746667pt;}
.y231{bottom:190.906667pt;}
.y38{bottom:191.226667pt;}
.y24e{bottom:192.186667pt;}
.y270{bottom:192.346667pt;}
.y200{bottom:195.706667pt;}
.y1d8{bottom:197.626667pt;}
.y25{bottom:197.786667pt;}
.y190{bottom:198.106667pt;}
.yad{bottom:198.426667pt;}
.y176{bottom:199.066667pt;}
.y71{bottom:199.386667pt;}
.y2f{bottom:199.706667pt;}
.yea{bottom:205.946667pt;}
.y147{bottom:206.266667pt;}
.y152{bottom:206.426667pt;}
.y28e{bottom:206.586667pt;}
.y230{bottom:206.746667pt;}
.y24d{bottom:208.186667pt;}
.y112{bottom:214.266667pt;}
.yac{bottom:214.426667pt;}
.y175{bottom:214.906667pt;}
.y70{bottom:215.386667pt;}
.y37{bottom:216.826667pt;}
.y2e{bottom:217.306667pt;}
.y1ff{bottom:218.920000pt;}
.y1d7{bottom:221.466667pt;}
.ye9{bottom:221.786667pt;}
.y18f{bottom:221.946667pt;}
.y146{bottom:222.106667pt;}
.y151{bottom:222.266667pt;}
.y28d{bottom:222.426667pt;}
.y22f{bottom:222.586667pt;}
.y24c{bottom:224.026667pt;}
.y26f{bottom:224.186667pt;}
.y111{bottom:229.786667pt;}
.yab{bottom:230.266667pt;}
.y174{bottom:230.746667pt;}
.y6f{bottom:231.226667pt;}
.y2d{bottom:234.906667pt;}
.y18e{bottom:237.786667pt;}
.y145{bottom:237.946667pt;}
.y150{bottom:238.106667pt;}
.y28c{bottom:238.426667pt;}
.y22e{bottom:238.586667pt;}
.y1a6{bottom:238.746667pt;}
.y24b{bottom:239.866667pt;}
.y26e{bottom:240.026667pt;}
.y24{bottom:244.826667pt;}
.y1d6{bottom:245.306667pt;}
.ye8{bottom:245.786667pt;}
.yaa{bottom:246.106667pt;}
.y173{bottom:246.586667pt;}
.y6e{bottom:247.066667pt;}
.y1fe{bottom:250.760000pt;}
.y2c{bottom:252.546667pt;}
.y144{bottom:253.786667pt;}
.y110{bottom:253.946667pt;}
.y28b{bottom:254.266667pt;}
.y1a5{bottom:254.586667pt;}
.y24a{bottom:255.706667pt;}
.y26d{bottom:255.866667pt;}
.y1d5{bottom:261.146667pt;}
.ye7{bottom:261.626667pt;}
.ya9{bottom:261.946667pt;}
.y22d{bottom:262.426667pt;}
.y172{bottom:262.586667pt;}
.y6d{bottom:262.906667pt;}
.y18d{bottom:269.626667pt;}
.y10f{bottom:269.786667pt;}
.y28a{bottom:270.106667pt;}
.y2b{bottom:270.306667pt;}
.y249{bottom:271.546667pt;}
.y26c{bottom:271.706667pt;}
.y1d4{bottom:277.146667pt;}
.ye6{bottom:277.466667pt;}
.ya8{bottom:277.786667pt;}
.y22c{bottom:278.266667pt;}
.y1a4{bottom:278.586667pt;}
.y6c{bottom:278.746667pt;}
.y1fd{bottom:282.760000pt;}
.y18c{bottom:285.466667pt;}
.y143{bottom:285.626667pt;}
.y10e{bottom:285.786667pt;}
.y289{bottom:285.946667pt;}
.y171{bottom:286.426667pt;}
.y248{bottom:287.546667pt;}
.y2a{bottom:287.906667pt;}
.y22{bottom:291.706667pt;}
.y1d3{bottom:292.986667pt;}
.ye5{bottom:293.306667pt;}
.ya7{bottom:293.786667pt;}
.y22b{bottom:294.106667pt;}
.y1a3{bottom:294.426667pt;}
.y6b{bottom:294.586667pt;}
.y18b{bottom:301.306667pt;}
.y142{bottom:301.466667pt;}
.y10d{bottom:301.626667pt;}
.y288{bottom:301.786667pt;}
.y170{bottom:301.946667pt;}
.y247{bottom:303.386667pt;}
.y26b{bottom:303.546667pt;}
.ye4{bottom:308.826667pt;}
.ya6{bottom:309.626667pt;}
.y22a{bottom:309.946667pt;}
.y1a2{bottom:310.266667pt;}
.y6a{bottom:310.586667pt;}
.y1fc{bottom:314.600000pt;}
.y29{bottom:314.786667pt;}
.y1d2{bottom:316.826667pt;}
.y18a{bottom:317.146667pt;}
.y141{bottom:317.306667pt;}
.y10c{bottom:317.466667pt;}
.y287{bottom:317.786667pt;}
.y246{bottom:319.226667pt;}
.y26a{bottom:319.386667pt;}
.y21{bottom:322.586667pt;}
.ya5{bottom:325.466667pt;}
.y229{bottom:325.946667pt;}
.y16f{bottom:326.106667pt;}
.y69{bottom:326.426667pt;}
.y23{bottom:327.546667pt;}
.ye3{bottom:332.986667pt;}
.y140{bottom:333.146667pt;}
.y10b{bottom:333.306667pt;}
.y286{bottom:333.626667pt;}
.y245{bottom:335.066667pt;}
.y269{bottom:335.226667pt;}
.y1d1{bottom:340.040000pt;}
.ya4{bottom:341.306667pt;}
.y1a1{bottom:341.626667pt;}
.y228{bottom:341.786667pt;}
.y16e{bottom:341.946667pt;}
.y68{bottom:342.266667pt;}
.ye2{bottom:348.986667pt;}
.y10a{bottom:349.146667pt;}
.y285{bottom:349.466667pt;}
.y1fb{bottom:350.426667pt;}
.y244{bottom:350.906667pt;}
.y268{bottom:351.066667pt;}
.y20{bottom:353.466667pt;}
.ya3{bottom:357.146667pt;}
.y227{bottom:357.626667pt;}
.y67{bottom:358.106667pt;}
.y1a0{bottom:359.706667pt;}
.ye1{bottom:364.826667pt;}
.y109{bottom:364.986667pt;}
.y12d{bottom:365.146667pt;}
.y284{bottom:365.306667pt;}
.y16d{bottom:365.946667pt;}
.y1fa{bottom:366.266667pt;}
.y243{bottom:366.746667pt;}
.y267{bottom:366.906667pt;}
.y1cf{bottom:371.880000pt;}
.ya2{bottom:372.986667pt;}
.y226{bottom:373.146667pt;}
.y66{bottom:373.946667pt;}
.y189{bottom:380.346667pt;}
.ye0{bottom:380.666667pt;}
.y13f{bottom:380.826667pt;}
.y12c{bottom:380.986667pt;}
.y283{bottom:381.146667pt;}
.y16c{bottom:381.786667pt;}
.y1e{bottom:382.746667pt;}
.y19f{bottom:388.826667pt;}
.ybb{bottom:388.986667pt;}
.y65{bottom:389.946667pt;}
.y1f9{bottom:390.106667pt;}
.ydf{bottom:396.546667pt;}
.y13e{bottom:396.706667pt;}
.y14f{bottom:396.866667pt;}
.ya1{bottom:397.026667pt;}
.y225{bottom:397.346667pt;}
.y16b{bottom:397.666667pt;}
.y242{bottom:398.626667pt;}
.y266{bottom:398.786667pt;}
.y1ce{bottom:403.746667pt;}
.y188{bottom:404.546667pt;}
.y19e{bottom:404.706667pt;}
.yba{bottom:404.866667pt;}
.y64{bottom:405.826667pt;}
.y1f8{bottom:405.986667pt;}
.y1d{bottom:406.626667pt;}
.yde{bottom:412.386667pt;}
.y13d{bottom:412.546667pt;}
.y14e{bottom:412.706667pt;}
.ya0{bottom:412.866667pt;}
.y282{bottom:413.026667pt;}
.y224{bottom:413.186667pt;}
.y16a{bottom:413.506667pt;}
.y241{bottom:414.466667pt;}
.y265{bottom:414.626667pt;}
.y187{bottom:420.386667pt;}
.y19d{bottom:420.546667pt;}
.yb9{bottom:420.706667pt;}
.y1f7{bottom:421.986667pt;}
.ydd{bottom:428.066667pt;}
.y13c{bottom:428.386667pt;}
.y9f{bottom:428.706667pt;}
.y281{bottom:428.866667pt;}
.y169{bottom:429.346667pt;}
.y63{bottom:429.666667pt;}
.y240{bottom:430.306667pt;}
.y1c{bottom:430.466667pt;}
.y1cd{bottom:435.746667pt;}
.yb8{bottom:436.226667pt;}
.y186{bottom:436.386667pt;}
.y108{bottom:436.546667pt;}
.y223{bottom:437.186667pt;}
.y1f6{bottom:437.826667pt;}
.y19c{bottom:444.386667pt;}
.y9e{bottom:444.546667pt;}
.y280{bottom:444.706667pt;}
.y168{bottom:445.186667pt;}
.y62{bottom:445.506667pt;}
.y264{bottom:446.306667pt;}
.y23f{bottom:447.906667pt;}
.ydc{bottom:452.226667pt;}
.y107{bottom:452.386667pt;}
.y1f5{bottom:453.346667pt;}
.y1b{bottom:454.306667pt;}
.y185{bottom:460.226667pt;}
.y9d{bottom:460.386667pt;}
.y27f{bottom:460.546667pt;}
.y222{bottom:461.026667pt;}
.y61{bottom:461.346667pt;}
.y263{bottom:462.146667pt;}
.ydb{bottom:468.066667pt;}
.y13b{bottom:468.226667pt;}
.y106{bottom:468.386667pt;}
.y167{bottom:469.186667pt;}
.y1cc{bottom:471.586667pt;}
.y184{bottom:476.066667pt;}
.y19b{bottom:476.226667pt;}
.y9c{bottom:476.386667pt;}
.y221{bottom:476.866667pt;}
.y60{bottom:477.186667pt;}
.y1a{bottom:478.146667pt;}
.y262{bottom:479.906667pt;}
.y13a{bottom:483.746667pt;}
.y105{bottom:484.226667pt;}
.y166{bottom:484.706667pt;}
.yda{bottom:491.906667pt;}
.y19a{bottom:492.066667pt;}
.y9b{bottom:492.226667pt;}
.y27e{bottom:492.386667pt;}
.y23e{bottom:493.026667pt;}
.y5f{bottom:493.186667pt;}
.y1f4{bottom:493.346667pt;}
.y1cb{bottom:495.426667pt;}
.y104{bottom:500.066667pt;}
.y220{bottom:500.706667pt;}
.y19{bottom:501.826667pt;}
.y1f{bottom:502.146667pt;}
.yd9{bottom:507.746667pt;}
.y139{bottom:507.906667pt;}
.y9a{bottom:508.066667pt;}
.y27d{bottom:508.226667pt;}
.y165{bottom:508.866667pt;}
.y5e{bottom:509.026667pt;}
.y1f3{bottom:509.186667pt;}
.y1ca{bottom:511.266667pt;}
.y103{bottom:515.906667pt;}
.y183{bottom:523.586667pt;}
.y138{bottom:523.746667pt;}
.y99{bottom:523.906667pt;}
.y27c{bottom:524.066667pt;}
.y21f{bottom:524.546667pt;}
.y164{bottom:524.706667pt;}
.y5d{bottom:524.866667pt;}
.y1f2{bottom:525.186667pt;}
.y18{bottom:527.106667pt;}
.yd8{bottom:531.586667pt;}
.y102{bottom:531.746667pt;}
.y137{bottom:539.586667pt;}
.y98{bottom:539.746667pt;}
.y27b{bottom:539.906667pt;}
.y21e{bottom:540.386667pt;}
.y163{bottom:540.546667pt;}
.y5c{bottom:540.706667pt;}
.y1f1{bottom:541.026667pt;}
.y1c9{bottom:542.626667pt;}
.yd7{bottom:547.586667pt;}
.y17{bottom:550.466667pt;}
.y182{bottom:555.426667pt;}
.y97{bottom:555.586667pt;}
.y27a{bottom:555.746667pt;}
.y5b{bottom:556.546667pt;}
.y1f0{bottom:556.866667pt;}
.yd6{bottom:563.426667pt;}
.y101{bottom:563.586667pt;}
.y21d{bottom:564.386667pt;}
.y1c8{bottom:566.946667pt;}
.y181{bottom:571.266667pt;}
.y136{bottom:571.426667pt;}
.y96{bottom:571.586667pt;}
.y162{bottom:572.386667pt;}
.y5a{bottom:572.546667pt;}
.y1ef{bottom:572.706667pt;}
.y16{bottom:577.826667pt;}
.y100{bottom:579.426667pt;}
.y21c{bottom:580.226667pt;}
.y1c7{bottom:582.786667pt;}
.y180{bottom:587.106667pt;}
.yd5{bottom:587.266667pt;}
.y95{bottom:587.426667pt;}
.y279{bottom:587.586667pt;}
.y161{bottom:588.226667pt;}
.y59{bottom:588.386667pt;}
.y1ee{bottom:588.546667pt;}
.yff{bottom:595.266667pt;}
.y21b{bottom:596.066667pt;}
.y1c6{bottom:598.626667pt;}
.yd4{bottom:603.133333pt;}
.y94{bottom:603.293333pt;}
.y278{bottom:603.453333pt;}
.y160{bottom:604.093333pt;}
.y58{bottom:604.253333pt;}
.y1ed{bottom:604.573333pt;}
.y297{bottom:608.573333pt;}
.y17f{bottom:610.973333pt;}
.yfe{bottom:611.133333pt;}
.y21a{bottom:611.933333pt;}
.y1c5{bottom:614.493333pt;}
.y199{bottom:618.653333pt;}
.y135{bottom:618.973333pt;}
.y93{bottom:619.133333pt;}
.y277{bottom:619.293333pt;}
.y23d{bottom:619.933333pt;}
.y57{bottom:620.093333pt;}
.y1ec{bottom:620.413333pt;}
.y15{bottom:621.213333pt;}
.y17e{bottom:626.493333pt;}
.yfd{bottom:626.653333pt;}
.yd3{bottom:626.973333pt;}
.y12b{bottom:627.133333pt;}
.y219{bottom:627.773333pt;}
.y15f{bottom:627.933333pt;}
.y1c4{bottom:630.333333pt;}
.yb7{bottom:634.653333pt;}
.y134{bottom:634.813333pt;}
.y92{bottom:634.973333pt;}
.y276{bottom:635.133333pt;}
.y296{bottom:635.293333pt;}
.y23c{bottom:635.773333pt;}
.y56{bottom:635.933333pt;}
.yd2{bottom:642.493333pt;}
.y14d{bottom:642.813333pt;}
.y11a{bottom:642.973333pt;}
.y15e{bottom:643.773333pt;}
.y1c3{bottom:646.173333pt;}
.y91{bottom:650.813333pt;}
.y275{bottom:650.973333pt;}
.y55{bottom:651.773333pt;}
.yb6{bottom:658.813333pt;}
.y218{bottom:659.613333pt;}
.y15d{bottom:659.773333pt;}
.y1eb{bottom:660.093333pt;}
.y1c2{bottom:662.173333pt;}
.y14{bottom:664.413333pt;}
.y17d{bottom:666.653333pt;}
.y90{bottom:666.813333pt;}
.y23b{bottom:667.613333pt;}
.y54{bottom:667.773333pt;}
.yd1{bottom:674.653333pt;}
.yb5{bottom:674.813333pt;}
.y217{bottom:675.453333pt;}
.y15c{bottom:675.613333pt;}
.y1ea{bottom:675.933333pt;}
.y17c{bottom:682.493333pt;}
.yfc{bottom:682.653333pt;}
.y12a{bottom:682.813333pt;}
.y23a{bottom:683.453333pt;}
.y53{bottom:683.613333pt;}
.y1c1{bottom:686.013333pt;}
.yd0{bottom:690.493333pt;}
.y8f{bottom:690.653333pt;}
.y216{bottom:691.293333pt;}
.y15b{bottom:691.453333pt;}
.y1e9{bottom:691.773333pt;}
.yfb{bottom:698.493333pt;}
.y129{bottom:698.653333pt;}
.y239{bottom:699.293333pt;}
.y52{bottom:699.453333pt;}
.ycf{bottom:706.333333pt;}
.y8e{bottom:706.493333pt;}
.y215{bottom:707.133333pt;}
.y15a{bottom:707.293333pt;}
.y1e8{bottom:707.773333pt;}
.y1c0{bottom:709.213333pt;}
.y13{bottom:711.613333pt;}
.yfa{bottom:714.333333pt;}
.y128{bottom:714.493333pt;}
.y51{bottom:715.293333pt;}
.y238{bottom:716.893333pt;}
.yce{bottom:722.173333pt;}
.y8d{bottom:722.333333pt;}
.y159{bottom:722.813333pt;}
.y214{bottom:722.973333pt;}
.y1e7{bottom:723.613333pt;}
.yf9{bottom:730.173333pt;}
.y127{bottom:730.333333pt;}
.y50{bottom:731.133333pt;}
.y261{bottom:732.893333pt;}
.y12{bottom:736.413333pt;}
.y8c{bottom:738.173333pt;}
.y213{bottom:738.973333pt;}
.y1e6{bottom:739.453333pt;}
.y1be{bottom:741.053333pt;}
.yf8{bottom:746.173333pt;}
.y4f{bottom:746.973333pt;}
.y260{bottom:751.773333pt;}
.ycd{bottom:754.013333pt;}
.y8b{bottom:754.173333pt;}
.yf7{bottom:762.013333pt;}
.y126{bottom:762.173333pt;}
.y212{bottom:762.813333pt;}
.y158{bottom:762.973333pt;}
.y1e5{bottom:763.293333pt;}
.ycc{bottom:769.853333pt;}
.y8a{bottom:770.013333pt;}
.y4e{bottom:770.973333pt;}
.y11{bottom:777.373333pt;}
.yf6{bottom:777.853333pt;}
.y125{bottom:778.013333pt;}
.y211{bottom:778.653333pt;}
.y157{bottom:778.813333pt;}
.ycb{bottom:785.693333pt;}
.y89{bottom:785.853333pt;}
.y1e4{bottom:786.493333pt;}
.y4d{bottom:786.813333pt;}
.y1bb{bottom:788.733333pt;}
.yf5{bottom:793.693333pt;}
.y124{bottom:793.853333pt;}
.y210{bottom:794.493333pt;}
.y156{bottom:794.653333pt;}
.y10{bottom:799.773333pt;}
.y198{bottom:801.213333pt;}
.yca{bottom:801.533333pt;}
.y88{bottom:801.693333pt;}
.y4c{bottom:802.653333pt;}
.yf4{bottom:809.573333pt;}
.y123{bottom:809.733333pt;}
.y20f{bottom:810.373333pt;}
.y155{bottom:810.533333pt;}
.y1e3{bottom:815.813333pt;}
.yf{bottom:817.413333pt;}
.y87{bottom:817.573333pt;}
.y4b{bottom:818.533333pt;}
.yf3{bottom:825.413333pt;}
.y122{bottom:825.573333pt;}
.y154{bottom:826.373333pt;}
.y86{bottom:833.413333pt;}
.y4a{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y1ba{bottom:836.613333pt;}
.yf2{bottom:841.093333pt;}
.y121{bottom:841.413333pt;}
.y20e{bottom:842.213333pt;}
.y25f{bottom:842.373333pt;}
.y1e2{bottom:844.933333pt;}
.yc9{bottom:849.253333pt;}
.y85{bottom:849.413333pt;}
.y49{bottom:850.373333pt;}
.yd{bottom:852.453333pt;}
.y133{bottom:857.253333pt;}
.y120{bottom:857.413333pt;}
.y25e{bottom:858.213333pt;}
.yc8{bottom:865.093333pt;}
.y84{bottom:865.253333pt;}
.y20c{bottom:865.413333pt;}
.y48{bottom:866.213333pt;}
.y1b9{bottom:868.453333pt;}
.yc{bottom:870.373333pt;}
.y132{bottom:873.093333pt;}
.y11f{bottom:873.253333pt;}
.y25d{bottom:874.053333pt;}
.y1e1{bottom:874.213333pt;}
.yb4{bottom:880.773333pt;}
.y17b{bottom:880.933333pt;}
.y83{bottom:881.093333pt;}
.y47{bottom:882.053333pt;}
.yc7{bottom:888.933333pt;}
.y11e{bottom:889.093333pt;}
.y25c{bottom:889.893333pt;}
.y82{bottom:896.933333pt;}
.y46{bottom:897.893333pt;}
.y1b8{bottom:900.293333pt;}
.y1df{bottom:903.333333pt;}
.yc6{bottom:904.773333pt;}
.yb3{bottom:904.933333pt;}
.y25b{bottom:905.733333pt;}
.yb{bottom:905.893333pt;}
.y20a{bottom:910.533333pt;}
.y81{bottom:912.773333pt;}
.y45{bottom:913.733333pt;}
.ya{bottom:916.613333pt;}
.y17a{bottom:920.453333pt;}
.yb2{bottom:920.773333pt;}
.y25a{bottom:921.573333pt;}
.y9{bottom:927.333333pt;}
.yf1{bottom:928.773333pt;}
.y44{bottom:929.573333pt;}
.y1b7{bottom:932.133333pt;}
.yc5{bottom:936.613333pt;}
.y80{bottom:936.773333pt;}
.y259{bottom:937.573333pt;}
.y8{bottom:938.053333pt;}
.y131{bottom:944.613333pt;}
.y43{bottom:945.573333pt;}
.y7{bottom:951.013333pt;}
.yc4{bottom:952.453333pt;}
.y7f{bottom:952.613333pt;}
.y258{bottom:953.413333pt;}
.y208{bottom:955.493333pt;}
.y130{bottom:960.453333pt;}
.y42{bottom:961.413333pt;}
.y1b5{bottom:964.133333pt;}
.y7e{bottom:968.453333pt;}
.y257{bottom:969.253333pt;}
.y6{bottom:973.733333pt;}
.yc3{bottom:976.293333pt;}
.y41{bottom:977.253333pt;}
.y7d{bottom:984.293333pt;}
.y256{bottom:985.093333pt;}
.y207{bottom:985.413333pt;}
.yc2{bottom:991.813333pt;}
.y12f{bottom:992.133333pt;}
.y40{bottom:993.093333pt;}
.y1b4{bottom:995.973333pt;}
.y7c{bottom:1000.133333pt;}
.y255{bottom:1000.933333pt;}
.y1de{bottom:1007.653333pt;}
.y197{bottom:1007.973333pt;}
.y3f{bottom:1008.933333pt;}
.y205{bottom:1014.533333pt;}
.y7b{bottom:1015.973333pt;}
.y196{bottom:1023.680000pt;}
.y3e{bottom:1024.960000pt;}
.y1b1{bottom:1027.840000pt;}
.y7a{bottom:1032.000000pt;}
.y153{bottom:1040.480000pt;}
.y3d{bottom:1040.800000pt;}
.y79{bottom:1047.840000pt;}
.y3c{bottom:1058.400000pt;}
.y119{bottom:1063.360000pt;}
.y78{bottom:1063.680000pt;}
.h22{height:23.840000pt;}
.h23{height:23.872000pt;}
.h24{height:24.020000pt;}
.h25{height:24.640000pt;}
.h27{height:26.381250pt;}
.h1f{height:26.386667pt;}
.h19{height:26.396000pt;}
.h1d{height:26.400000pt;}
.h20{height:26.546667pt;}
.h1a{height:26.556000pt;}
.h18{height:26.560000pt;}
.h21{height:26.578667pt;}
.h1c{height:26.580000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h26{height:39.680000pt;}
.h17{height:42.386667pt;}
.h1b{height:42.400000pt;}
.h1e{height:42.432000pt;}
.h28{height:47.085938pt;}
.h3{height:47.109375pt;}
.he{height:48.375000pt;}
.h16{height:49.336436pt;}
.h15{height:49.968750pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h9{height:53.535000pt;}
.h13{height:53.664000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.hb{height:64.290000pt;}
.hf{height:69.660000pt;}
.h14{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h10{height:339.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:20.640000pt;}
.w19{width:46.560000pt;}
.w17{width:56.640000pt;}
.w1a{width:65.760000pt;}
.wb{width:68.992000pt;}
.w7{width:69.106667pt;}
.w3{width:71.386667pt;}
.wa{width:73.120000pt;}
.w6{width:73.138667pt;}
.w8{width:74.746667pt;}
.wc{width:74.880000pt;}
.w11{width:77.426667pt;}
.w12{width:84.186667pt;}
.we{width:85.632000pt;}
.wf{width:92.960000pt;}
.w15{width:97.146667pt;}
.w9{width:99.860000pt;}
.w5{width:99.986667pt;}
.w13{width:109.906667pt;}
.w14{width:110.098667pt;}
.w16{width:125.300000pt;}
.wd{width:144.342667pt;}
.w10{width:157.773333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:0.956000pt;}
.x34{left:2.560000pt;}
.x3e{left:3.520000pt;}
.x30{left:4.480000pt;}
.x46{left:6.400000pt;}
.x3{left:7.676000pt;}
.x12{left:9.600000pt;}
.x25{left:11.040000pt;}
.x21{left:14.546667pt;}
.x31{left:17.120000pt;}
.x2a{left:18.866667pt;}
.x33{left:20.000000pt;}
.x2b{left:21.426667pt;}
.x27{left:24.146667pt;}
.x28{left:25.600000pt;}
.x23{left:27.680000pt;}
.x1f{left:29.266667pt;}
.x26{left:32.146667pt;}
.x11{left:34.080000pt;}
.x3f{left:35.026667pt;}
.x39{left:36.000000pt;}
.x41{left:38.080000pt;}
.x1{left:40.324000pt;}
.x32{left:41.628000pt;}
.x13{left:43.680000pt;}
.x40{left:44.666667pt;}
.x35{left:45.604000pt;}
.x2c{left:47.044000pt;}
.x5{left:48.000000pt;}
.x29{left:49.906667pt;}
.xb{left:53.760000pt;}
.x1c{left:59.680000pt;}
.x1b{left:62.400000pt;}
.x1d{left:65.600000pt;}
.x14{left:71.872000pt;}
.x1a{left:96.032000pt;}
.xe{left:130.592000pt;}
.xd{left:132.032000pt;}
.x2d{left:150.266667pt;}
.x42{left:175.706667pt;}
.x37{left:193.306667pt;}
.x2{left:197.662667pt;}
.xc{left:222.906667pt;}
.x2e{left:226.746667pt;}
.x43{left:235.746667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x44{left:259.746667pt;}
.x9{left:264.706667pt;}
.xf{left:279.426667pt;}
.x38{left:282.306667pt;}
.x2f{left:299.106667pt;}
.x45{left:309.666667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x1e{left:419.946667pt;}
.x10{left:420.893333pt;}
.x19{left:431.933333pt;}
.x18{left:435.293333pt;}
.x16{left:438.493333pt;}
.x15{left:444.893333pt;}
.x17{left:468.893333pt;}
.x20{left:523.306667pt;}
.x3c{left:534.826667pt;}
.x3a{left:581.573333pt;}
.x22{left:599.653333pt;}
.x3d{left:648.133333pt;}
.x3b{left:662.373333pt;}
.x24{left:672.133333pt;}
.x4{left:682.213333pt;}
}




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