
    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_a384b2d75071cb0a55a141cd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_caa951d1838f7e92a3670cca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_ef733a90e9284f53bffa81ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084473;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_011b1271ffe0213e862bbb50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_cbb38ca9a17c11b9f9f1b824.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.108887;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_2059589746ad7e433ed73d97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108887;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_71b915af22ce16a4875e64cb.woff2')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_924c7d04b823170c6bda2d8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls21{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.858000px;}
.ls1f{letter-spacing:-0.852000px;}
.ls23{letter-spacing:-0.535800px;}
.ls24{letter-spacing:-0.308400px;}
.ls20{letter-spacing:-0.299400px;}
.ls1d{letter-spacing:-0.267600px;}
.lsb{letter-spacing:-0.249000px;}
.ls14{letter-spacing:-0.243600px;}
.ls2c{letter-spacing:-0.215400px;}
.ls17{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.172200px;}
.ls28{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.123600px;}
.ls25{letter-spacing:-0.040320px;}
.ls8{letter-spacing:-0.036000px;}
.ls1a{letter-spacing:-0.020160px;}
.ls7{letter-spacing:-0.007920px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.060600px;}
.ls0{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.132600px;}
.ls3{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.155400px;}
.lsc{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.177600px;}
.ls1e{letter-spacing:0.184200px;}
.ls18{letter-spacing:0.236160px;}
.lsa{letter-spacing:0.252000px;}
.ls2b{letter-spacing:0.283800px;}
.ls1{letter-spacing:0.312000px;}
.ls2a{letter-spacing:0.325200px;}
.ls9{letter-spacing:0.348600px;}
.ls10{letter-spacing:0.357000px;}
.ls13{letter-spacing:0.371400px;}
.ls22{letter-spacing:0.377400px;}
.lsf{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.712080px;}
.ls26{letter-spacing:3.029760px;}
.ls27{letter-spacing:3.319920px;}
.ls11{letter-spacing:154.801920px;}
.lsd{letter-spacing:847.542720px;}
.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;}
}
.ws16{word-spacing:-18.280080px;}
.ws1c{word-spacing:-14.751480px;}
.ws9{word-spacing:-14.731080px;}
.ws23{word-spacing:-14.699280px;}
.ws13{word-spacing:-14.529480px;}
.wsa{word-spacing:-14.374080px;}
.ws17{word-spacing:-14.353920px;}
.ws1f{word-spacing:-14.333760px;}
.ws20{word-spacing:-14.230080px;}
.ws1a{word-spacing:-14.074680px;}
.ws1e{word-spacing:-14.065680px;}
.ws21{word-spacing:-13.829640px;}
.ws19{word-spacing:-13.645440px;}
.ws22{word-spacing:-13.521840px;}
.ws1b{word-spacing:-13.510080px;}
.wsc{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.377840px;}
.wse{word-spacing:-13.339320px;}
.ws6{word-spacing:-13.316520px;}
.ws3{word-spacing:-13.279920px;}
.wsd{word-spacing:-13.219920px;}
.ws11{word-spacing:-13.145520px;}
.ws1d{word-spacing:-13.109640px;}
.ws10{word-spacing:-13.100520px;}
.ws2{word-spacing:-12.967920px;}
.ws5{word-spacing:-12.931920px;}
.wsb{word-spacing:-12.795720px;}
.ws12{word-spacing:-12.781320px;}
.ws24{word-spacing:-12.752520px;}
.wsf{word-spacing:-12.724320px;}
.ws8{word-spacing:-12.718920px;}
.ws0{word-spacing:-12.310560px;}
.ws14{word-spacing:-11.970000px;}
.ws1{word-spacing:-11.718000px;}
.ws15{word-spacing:-11.682000px;}
.ws4{word-spacing:-8.436960px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-4.508640px;}
._d{margin-left:-3.217680px;}
._0{margin-left:-1.563120px;}
._1{width:1.052880px;}
._5{width:2.370720px;}
._6{width:3.526800px;}
._c{width:4.570800px;}
._4{width:5.640240px;}
._b{width:6.656160px;}
._a{width:7.768800px;}
._e{width:8.964000px;}
._9{width:10.039680px;}
._3{width:11.927040px;}
._1c{width:13.221360px;}
._8{width:14.365200px;}
._11{width:15.432240px;}
._10{width:17.402640px;}
._f{width:19.032240px;}
._1a{width:20.711760px;}
._16{width:21.726720px;}
._7{width:23.545440px;}
._20{width:25.303680px;}
._13{width:26.317200px;}
._12{width:27.788400px;}
._18{width:29.824800px;}
._17{width:30.907440px;}
._14{width:32.210640px;}
._15{width:33.390000px;}
._1b{width:35.279280px;}
._25{width:38.882880px;}
._27{width:40.062960px;}
._26{width:41.295360px;}
._24{width:44.454240px;}
._23{width:45.546480px;}
._2f{width:50.276160px;}
._1f{width:51.811920px;}
._31{width:54.316800px;}
._30{width:56.012400px;}
._2{width:57.034560px;}
._2b{width:67.498560px;}
._21{width:71.075520px;}
._22{width:72.375120px;}
._28{width:77.976000px;}
._1e{width:89.102160px;}
._2a{width:91.432080px;}
._29{width:92.669760px;}
._36{width:102.529920px;}
._35{width:103.533120px;}
._37{width:104.677680px;}
._2e{width:150.364800px;}
._2c{width:151.557120px;}
._2d{width:152.747760px;}
._1d{width:154.283520px;}
._32{width:194.546880px;}
._33{width:196.612560px;}
._38{width:226.673280px;}
._39{width:227.885520px;}
._3a{width:294.039360px;}
._34{width:428.374080px;}
._3b{width:435.766320px;}
._3c{width:436.804320px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(84,141,212);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y17f{bottom:3.594000px;}
.y163{bottom:3.600000px;}
.y184{bottom:3.630000px;}
.y171{bottom:3.645000px;}
.yb3{bottom:3.960000px;}
.y12d{bottom:3.996000px;}
.y121{bottom:4.005000px;}
.y16a{bottom:5.220000px;}
.y139{bottom:12.960000px;}
.y12a{bottom:13.134000px;}
.yb8{bottom:13.140000px;}
.y12e{bottom:13.176000px;}
.y122{bottom:13.185000px;}
.y3{bottom:13.680000px;}
.y166{bottom:18.540000px;}
.y162{bottom:19.980000px;}
.y178{bottom:21.420000px;}
.y17d{bottom:21.594000px;}
.y167{bottom:21.600000px;}
.y182{bottom:21.630000px;}
.y16f{bottom:21.645000px;}
.ybe{bottom:22.140000px;}
.y129{bottom:22.314000px;}
.yb6{bottom:22.320000px;}
.y14e{bottom:22.350000px;}
.y12c{bottom:22.356000px;}
.y120{bottom:22.365000px;}
.y26b{bottom:22.860000px;}
.y35{bottom:25.020000px;}
.y2{bottom:36.180000px;}
.y161{bottom:36.540000px;}
.y124{bottom:40.500000px;}
.y137{bottom:40.545000px;}
.yb5{bottom:40.680000px;}
.y130{bottom:40.710000px;}
.y34{bottom:43.380000px;}
.y15d{bottom:44.820000px;}
.y160{bottom:52.920000px;}
.y15f{bottom:69.510000px;}
.y15e{bottom:86.070000px;}
.y12b{bottom:106.200000px;}
.yb1{bottom:110.916000px;}
.y23c{bottom:113.616000px;}
.y64{bottom:117.036000px;}
.y248{bottom:125.496000px;}
.y1db{bottom:125.676000px;}
.y1ae{bottom:126.396000px;}
.y218{bottom:127.476000px;}
.y180{bottom:128.916000px;}
.y30{bottom:129.816000px;}
.y14c{bottom:131.076000px;}
.y268{bottom:133.776000px;}
.y239{bottom:135.576000px;}
.yb0{bottom:140.976000px;}
.y128{bottom:142.776000px;}
.y1bc{bottom:143.856000px;}
.y1ad{bottom:144.756000px;}
.y247{bottom:145.656000px;}
.y17c{bottom:146.916000px;}
.y63{bottom:147.276000px;}
.y2f{bottom:147.996000px;}
.y90{bottom:153.930000px;}
.y1da{bottom:155.910000px;}
.y103{bottom:156.630000px;}
.ydc{bottom:157.350000px;}
.y217{bottom:157.710000px;}
.y1ac{bottom:163.110000px;}
.y17e{bottom:164.910000px;}
.y238{bottom:165.810000px;}
.y2e{bottom:166.350000px;}
.y14b{bottom:167.610000px;}
.yaf{bottom:171.210000px;}
.yfd{bottom:173.370000px;}
.y102{bottom:173.910000px;}
.y1bb{bottom:174.090000px;}
.y62{bottom:177.330000px;}
.y127{bottom:179.490000px;}
.y1ab{bottom:181.290000px;}
.y17a{bottom:182.910000px;}
.y8f{bottom:184.170000px;}
.y2d{bottom:184.710000px;}
.ydb{bottom:185.970000px;}
.y216{bottom:187.950000px;}
.y101{bottom:193.710000px;}
.y267{bottom:194.070000px;}
.y237{bottom:196.050000px;}
.y272{bottom:198.210000px;}
.y1aa{bottom:199.650000px;}
.y17b{bottom:200.910000px;}
.yae{bottom:201.450000px;}
.y2c{bottom:203.070000px;}
.yfc{bottom:203.610000px;}
.y23b{bottom:204.150000px;}
.y14a{bottom:204.330000px;}
.y246{bottom:206.130000px;}
.y61{bottom:207.570000px;}
.y1f7{bottom:211.350000px;}
.y266{bottom:214.230000px;}
.y8e{bottom:214.410000px;}
.y126{bottom:216.030000px;}
.yda{bottom:216.210000px;}
.y271{bottom:216.570000px;}
.y1a9{bottom:218.010000px;}
.y177{bottom:218.910000px;}
.y2b{bottom:221.250000px;}
.y236{bottom:226.110000px;}
.y245{bottom:226.290000px;}
.yad{bottom:231.690000px;}
.yfb{bottom:233.670000px;}
.y23a{bottom:234.390000px;}
.y1ba{bottom:234.570000px;}
.y270{bottom:234.930000px;}
.y100{bottom:235.650000px;}
.y1a8{bottom:236.370000px;}
.y179{bottom:236.730000px;}
.y60{bottom:237.810000px;}
.y2a{bottom:239.610000px;}
.y1f6{bottom:240.150000px;}
.y8d{bottom:244.470000px;}
.y244{bottom:246.270000px;}
.yd9{bottom:246.450000px;}
.y215{bottom:248.250000px;}
.y1a7{bottom:254.550000px;}
.y175{bottom:254.730000px;}
.y235{bottom:256.350000px;}
.y29{bottom:257.970000px;}
.y149{bottom:259.230000px;}
.yac{bottom:261.930000px;}
.yfa{bottom:263.910000px;}
.yff{bottom:264.630000px;}
.y214{bottom:265.530000px;}
.y243{bottom:266.430000px;}
.y5f{bottom:268.050000px;}
.y1f5{bottom:270.210000px;}
.y125{bottom:270.930000px;}
.y176{bottom:272.730000px;}
.y1a6{bottom:272.910000px;}
.y8c{bottom:274.710000px;}
.y26f{bottom:275.430000px;}
.y28{bottom:276.330000px;}
.yd8{bottom:276.690000px;}
.y148{bottom:277.590000px;}
.y213{bottom:283.710000px;}
.y234{bottom:286.590000px;}
.y174{bottom:290.730000px;}
.y1a5{bottom:291.270000px;}
.yab{bottom:292.170000px;}
.yf9{bottom:294.150000px;}
.y27{bottom:294.510000px;}
.yfe{bottom:294.870000px;}
.y81{bottom:296.310000px;}
.y5e{bottom:298.290000px;}
.y1f4{bottom:300.450000px;}
.y212{bottom:302.070000px;}
.y242{bottom:306.750000px;}
.yd7{bottom:306.930000px;}
.y123{bottom:307.650000px;}
.y8b{bottom:308.730000px;}
.y1a4{bottom:309.450000px;}
.yf8{bottom:311.250000px;}
.y26{bottom:312.870000px;}
.y265{bottom:315.030000px;}
.y233{bottom:316.830000px;}
.y211{bottom:320.430000px;}
.yaa{bottom:322.230000px;}
.yd6{bottom:324.030000px;}
.y80{bottom:325.110000px;}
.y172{bottom:326.730000px;}
.y241{bottom:326.910000px;}
.y1a3{bottom:327.810000px;}
.y5d{bottom:328.530000px;}
.yf7{bottom:329.610000px;}
.y1f3{bottom:330.690000px;}
.y26e{bottom:331.050000px;}
.y25{bottom:331.230000px;}
.y147{bottom:332.490000px;}
.y264{bottom:335.190000px;}
.y1d9{bottom:337.170000px;}
.yd5{bottom:342.390000px;}
.y173{bottom:344.730000px;}
.y1a2{bottom:346.170000px;}
.y8a{bottom:346.890000px;}
.y232{bottom:347.070000px;}
.yf6{bottom:347.970000px;}
.y24{bottom:349.410000px;}
.ya9{bottom:352.470000px;}
.y7f{bottom:355.350000px;}
.y210{bottom:356.970000px;}
.y5c{bottom:358.770000px;}
.y1f2{bottom:360.930000px;}
.y11f{bottom:362.550000px;}
.y16e{bottom:362.730000px;}
.y1a1{bottom:365.970000px;}
.yf5{bottom:366.375000px;}
.y240{bottom:367.275000px;}
.y1d8{bottom:367.455000px;}
.y23{bottom:367.815000px;}
.y146{bottom:369.075000px;}
.y26d{bottom:371.055000px;}
.y20f{bottom:375.375000px;}
.y263{bottom:375.555000px;}
.y231{bottom:377.355000px;}
.yd4{bottom:378.975000px;}
.y170{bottom:380.775000px;}
.ya8{bottom:382.755000px;}
.yf4{bottom:384.555000px;}
.y7e{bottom:385.455000px;}
.y1b9{bottom:385.635000px;}
.y22{bottom:386.175000px;}
.y23f{bottom:387.435000px;}
.y5b{bottom:388.875000px;}
.y1a0{bottom:389.775000px;}
.y1f1{bottom:391.215000px;}
.y20e{bottom:393.735000px;}
.y262{bottom:395.535000px;}
.yd3{bottom:397.335000px;}
.y1d7{bottom:397.515000px;}
.y16c{bottom:398.595000px;}
.y11e{bottom:399.135000px;}
.yf3{bottom:402.915000px;}
.y21{bottom:404.535000px;}
.y230{bottom:407.415000px;}
.y23e{bottom:407.595000px;}
.y19f{bottom:408.135000px;}
.y26c{bottom:411.015000px;}
.y20d{bottom:411.915000px;}
.ya7{bottom:412.995000px;}
.y1d6{bottom:414.795000px;}
.y7d{bottom:415.695000px;}
.y1b8{bottom:415.875000px;}
.y16d{bottom:416.595000px;}
.y11d{bottom:418.935000px;}
.y5a{bottom:419.115000px;}
.y1f0{bottom:421.455000px;}
.y20{bottom:422.715000px;}
.y145{bottom:424.155000px;}
.y20c{bottom:430.275000px;}
.y1d5{bottom:432.975000px;}
.yd2{bottom:434.055000px;}
.y169{bottom:434.595000px;}
.y261{bottom:435.855000px;}
.y19e{bottom:436.935000px;}
.y22f{bottom:437.655000px;}
.y1f{bottom:441.075000px;}
.y23d{bottom:441.435000px;}
.y11c{bottom:442.875000px;}
.ya6{bottom:443.235000px;}
.y7c{bottom:445.935000px;}
.y1b7{bottom:446.115000px;}
.yf2{bottom:446.475000px;}
.y20b{bottom:448.635000px;}
.y59{bottom:449.355000px;}
.y26a{bottom:450.975000px;}
.y1d4{bottom:451.335000px;}
.y1ef{bottom:451.515000px;}
.yd1{bottom:452.235000px;}
.y16b{bottom:452.595000px;}
.y260{bottom:456.015000px;}
.y1e{bottom:459.435000px;}
.y144{bottom:460.695000px;}
.y11b{bottom:461.055000px;}
.y20a{bottom:466.995000px;}
.y19d{bottom:467.175000px;}
.y22e{bottom:467.895000px;}
.y1d3{bottom:469.695000px;}
.yd0{bottom:470.595000px;}
.ya5{bottom:473.475000px;}
.yf1{bottom:475.455000px;}
.y7b{bottom:476.175000px;}
.y1d{bottom:477.795000px;}
.y143{bottom:479.055000px;}
.y1ee{bottom:481.755000px;}
.y58{bottom:483.375000px;}
.y209{bottom:485.175000px;}
.y1d2{bottom:488.055000px;}
.y168{bottom:488.595000px;}
.y11a{bottom:490.035000px;}
.ycf{bottom:490.395000px;}
.y1c{bottom:495.975000px;}
.y25f{bottom:496.335000px;}
.y142{bottom:497.235000px;}
.y19c{bottom:497.415000px;}
.y22d{bottom:498.135000px;}
.y269{bottom:498.495000px;}
.y208{bottom:503.535000px;}
.ya4{bottom:503.715000px;}
.yf0{bottom:505.695000px;}
.y7a{bottom:506.415000px;}
.y164{bottom:506.595000px;}
.y1d1{bottom:507.855000px;}
.y1ed{bottom:511.995000px;}
.yce{bottom:514.155000px;}
.y1b{bottom:514.335000px;}
.y25e{bottom:516.495000px;}
.y119{bottom:520.275000px;}
.y57{bottom:521.715000px;}
.y207{bottom:521.895000px;}
.y19b{bottom:527.655000px;}
.y22c{bottom:528.375000px;}
.y1ec{bottom:529.275000px;}
.y1d0{bottom:531.615000px;}
.y1a{bottom:532.695000px;}
.ya3{bottom:533.775000px;}
.y141{bottom:533.955000px;}
.yef{bottom:535.755000px;}
.y79{bottom:536.655000px;}
.y165{bottom:539.535000px;}
.y206{bottom:540.255000px;}
.ycd{bottom:543.135000px;}
.y1eb{bottom:547.455000px;}
.y56{bottom:550.515000px;}
.y19{bottom:550.875000px;}
.y1b6{bottom:553.755000px;}
.y25d{bottom:556.815000px;}
.y15c{bottom:557.535000px;}
.y19a{bottom:557.895000px;}
.y205{bottom:558.435000px;}
.y22b{bottom:558.615000px;}
.y1cf{bottom:560.415000px;}
.ya2{bottom:564.015000px;}
.yee{bottom:565.995000px;}
.y78{bottom:566.715000px;}
.y18{bottom:569.235000px;}
.y140{bottom:570.495000px;}
.y1b5{bottom:572.115000px;}
.ycc{bottom:573.375000px;}
.y55{bottom:574.455000px;}
.y204{bottom:576.795000px;}
.y25c{bottom:576.975000px;}
.y89{bottom:580.395000px;}
.y118{bottom:580.575000px;}
.y1ea{bottom:584.175000px;}
.y17{bottom:587.595000px;}
.y199{bottom:588.135000px;}
.y13f{bottom:588.855000px;}
.y1b4{bottom:590.475000px;}
.y1ce{bottom:590.655000px;}
.y54{bottom:592.815000px;}
.ya1{bottom:594.255000px;}
.y203{bottom:595.155000px;}
.yed{bottom:596.235000px;}
.y77{bottom:596.955000px;}
.y1e9{bottom:602.355000px;}
.ycb{bottom:603.435000px;}
.y16{bottom:605.955000px;}
.y1b3{bottom:608.835000px;}
.y88{bottom:609.375000px;}
.y117{bottom:610.815000px;}
.y53{bottom:611.175000px;}
.yec{bottom:613.335000px;}
.y25b{bottom:617.115000px;}
.y198{bottom:618.195000px;}
.y22a{bottom:618.915000px;}
.y1e8{bottom:620.715000px;}
.y1cd{bottom:620.895000px;}
.y15{bottom:624.135000px;}
.ya0{bottom:624.495000px;}
.y13e{bottom:625.605000px;}
.y1b2{bottom:627.045000px;}
.y76{bottom:627.225000px;}
.y52{bottom:629.565000px;}
.yeb{bottom:631.725000px;}
.yca{bottom:633.705000px;}
.y197{bottom:635.505000px;}
.y25a{bottom:637.305000px;}
.y87{bottom:639.465000px;}
.y1e7{bottom:640.545000px;}
.y116{bottom:641.085000px;}
.y14{bottom:642.525000px;}
.y1b1{bottom:645.405000px;}
.y51{bottom:647.745000px;}
.y229{bottom:649.185000px;}
.yea{bottom:650.085000px;}
.y1cc{bottom:651.165000px;}
.y196{bottom:653.685000px;}
.y9f{bottom:654.765000px;}
.y75{bottom:657.465000px;}
.y13{bottom:660.885000px;}
.y15b{bottom:661.785000px;}
.yc9{bottom:663.945000px;}
.y1e6{bottom:664.305000px;}
.y1b0{bottom:665.205000px;}
.y50{bottom:666.105000px;}
.ye9{bottom:668.445000px;}
.y86{bottom:669.705000px;}
.y115{bottom:671.325000px;}
.y195{bottom:672.045000px;}
.y259{bottom:677.625000px;}
.y12{bottom:679.065000px;}
.y228{bottom:679.425000px;}
.y15a{bottom:680.145000px;}
.y13d{bottom:680.505000px;}
.y1cb{bottom:681.405000px;}
.y1e5{bottom:682.665000px;}
.y4f{bottom:684.465000px;}
.y9e{bottom:685.005000px;}
.ye8{bottom:686.625000px;}
.y74{bottom:687.705000px;}
.y1af{bottom:688.965000px;}
.y194{bottom:690.405000px;}
.yc8{bottom:694.185000px;}
.y11{bottom:697.425000px;}
.y258{bottom:697.785000px;}
.y85{bottom:699.945000px;}
.y4e{bottom:702.645000px;}
.ye7{bottom:704.985000px;}
.y114{bottom:705.345000px;}
.y193{bottom:708.765000px;}
.y159{bottom:709.125000px;}
.y227{bottom:709.665000px;}
.y1ca{bottom:711.645000px;}
.y9d{bottom:715.065000px;}
.y13c{bottom:717.045000px;}
.y73{bottom:717.945000px;}
.y10{bottom:718.845000px;}
.y4d{bottom:721.005000px;}
.y202{bottom:723.345000px;}
.yc7{bottom:724.425000px;}
.ye6{bottom:724.785000px;}
.y192{bottom:726.945000px;}
.y84{bottom:730.185000px;}
.y257{bottom:738.105000px;}
.yf{bottom:738.825000px;}
.y4c{bottom:739.365000px;}
.y226{bottom:739.905000px;}
.y1c9{bottom:741.705000px;}
.y9c{bottom:745.305000px;}
.y191{bottom:746.745000px;}
.y113{bottom:748.005000px;}
.y72{bottom:748.185000px;}
.ye5{bottom:748.545000px;}
.yc6{bottom:753.045000px;}
.y4b{bottom:757.725000px;}
.y256{bottom:758.265000px;}
.y201{bottom:759.885000px;}
.y83{bottom:760.425000px;}
.ye{bottom:767.985000px;}
.yc5{bottom:769.065000px;}
.y158{bottom:769.425000px;}
.y225{bottom:770.145000px;}
.y112{bottom:771.045000px;}
.y13b{bottom:771.945000px;}
.y9b{bottom:775.545000px;}
.y4a{bottom:775.905000px;}
.ye4{bottom:777.525000px;}
.y71{bottom:778.245000px;}
.y255{bottom:778.425000px;}
.yd{bottom:780.945000px;}
.yc4{bottom:787.245000px;}
.y190{bottom:788.865000px;}
.y49{bottom:794.265000px;}
.y82{bottom:796.065000px;}
.y200{bottom:798.045000px;}
.y254{bottom:798.405000px;}
.y157{bottom:799.665000px;}
.y224{bottom:800.205000px;}
.y111{bottom:801.285000px;}
.y1c8{bottom:802.185000px;}
.yc{bottom:804.525000px;}
.yc3{bottom:805.605000px;}
.y9a{bottom:805.785000px;}
.ye3{bottom:807.765000px;}
.y70{bottom:808.485000px;}
.y13a{bottom:808.665000px;}
.y48{bottom:812.625000px;}
.yb{bottom:817.305000px;}
.y18f{bottom:817.845000px;}
.y110{bottom:818.385000px;}
.y253{bottom:818.565000px;}
.y1ff{bottom:821.805000px;}
.yc2{bottom:823.965000px;}
.y138{bottom:827.025000px;}
.y156{bottom:829.905000px;}
.y223{bottom:830.445000px;}
.y47{bottom:830.985000px;}
.y1c7{bottom:832.425000px;}
.y99{bottom:836.025000px;}
.y10f{bottom:836.745000px;}
.ye2{bottom:837.825000px;}
.y6f{bottom:838.725000px;}
.ya{bottom:839.265000px;}
.yc1{bottom:842.325000px;}
.y18e{bottom:848.085000px;}
.y46{bottom:849.165000px;}
.y1fe{bottom:850.785000px;}
.y10e{bottom:855.105000px;}
.y252{bottom:858.885000px;}
.y155{bottom:860.145000px;}
.yc0{bottom:860.505000px;}
.y222{bottom:860.685000px;}
.y1c6{bottom:862.665000px;}
.y136{bottom:863.565000px;}
.y98{bottom:866.265000px;}
.y9{bottom:866.805000px;}
.y45{bottom:867.525000px;}
.ye1{bottom:868.065000px;}
.y6e{bottom:868.965000px;}
.y10d{bottom:873.465000px;}
.y18d{bottom:878.145000px;}
.ybf{bottom:878.865000px;}
.y251{bottom:879.045000px;}
.y1c5{bottom:879.765000px;}
.y1fd{bottom:881.025000px;}
.y44{bottom:885.930000px;}
.y154{bottom:890.430000px;}
.y221{bottom:890.970000px;}
.y10c{bottom:891.690000px;}
.y1e4{bottom:892.950000px;}
.y97{bottom:896.550000px;}
.ybd{bottom:897.270000px;}
.y1c4{bottom:898.170000px;}
.ye0{bottom:898.350000px;}
.y6d{bottom:899.250000px;}
.y43{bottom:904.110000px;}
.y8{bottom:905.190000px;}
.y18c{bottom:908.430000px;}
.y10b{bottom:910.050000px;}
.y1fc{bottom:911.130000px;}
.ydf{bottom:915.450000px;}
.y1c3{bottom:916.530000px;}
.y135{bottom:918.510000px;}
.y250{bottom:919.410000px;}
.y153{bottom:920.670000px;}
.y220{bottom:921.210000px;}
.y42{bottom:922.470000px;}
.y96{bottom:926.610000px;}
.y1e3{bottom:928.410000px;}
.y6c{bottom:929.490000px;}
.y10a{bottom:929.850000px;}
.ybc{bottom:933.810000px;}
.y1c2{bottom:934.710000px;}
.y18b{bottom:938.670000px;}
.y24f{bottom:939.570000px;}
.y41{bottom:940.830000px;}
.y1fb{bottom:941.370000px;}
.y7{bottom:943.710000px;}
.y1e2{bottom:946.590000px;}
.y152{bottom:950.730000px;}
.y21f{bottom:951.450000px;}
.ybb{bottom:952.170000px;}
.y1c1{bottom:953.070000px;}
.y95{bottom:956.850000px;}
.y40{bottom:959.190000px;}
.y6b{bottom:959.730000px;}
.y1e1{bottom:964.950000px;}
.y18a{bottom:968.910000px;}
.yba{bottom:970.530000px;}
.y1c0{bottom:971.430000px;}
.y1fa{bottom:971.610000px;}
.y109{bottom:971.970000px;}
.y134{bottom:973.410000px;}
.y3f{bottom:977.370000px;}
.y24e{bottom:979.890000px;}
.y151{bottom:980.970000px;}
.y21e{bottom:981.690000px;}
.y6{bottom:982.230000px;}
.y1e0{bottom:983.310000px;}
.y94{bottom:987.090000px;}
.yb9{bottom:988.710000px;}
.y6a{bottom:989.790000px;}
.y108{bottom:990.330000px;}
.y1bf{bottom:991.230000px;}
.y133{bottom:991.770000px;}
.y3e{bottom:995.730000px;}
.y189{bottom:999.150000px;}
.y24d{bottom:999.870000px;}
.y1df{bottom:1001.670000px;}
.yde{bottom:1007.070000px;}
.y150{bottom:1011.210000px;}
.y21d{bottom:1011.750000px;}
.y3d{bottom:1014.090000px;}
.y93{bottom:1017.330000px;}
.y107{bottom:1019.130000px;}
.y69{bottom:1020.030000px;}
.y5{bottom:1020.570000px;}
.y1de{bottom:1021.470000px;}
.yb7{bottom:1025.430000px;}
.y132{bottom:1028.490000px;}
.y188{bottom:1029.390000px;}
.y3c{bottom:1032.450000px;}
.y1be{bottom:1033.350000px;}
.y24c{bottom:1040.190000px;}
.y21c{bottom:1041.990000px;}
.ydd{bottom:1043.790000px;}
.y131{bottom:1046.670000px;}
.y92{bottom:1047.570000px;}
.y106{bottom:1049.370000px;}
.y68{bottom:1050.270000px;}
.y3b{bottom:1050.630000px;}
.y1bd{bottom:1051.530000px;}
.y24b{bottom:1060.350000px;}
.yb4{bottom:1061.970000px;}
.y4{bottom:1063.230000px;}
.y1dd{bottom:1063.410000px;}
.y14f{bottom:1065.030000px;}
.y187{bottom:1067.550000px;}
.y3a{bottom:1068.990000px;}
.y21b{bottom:1072.230000px;}
.y91{bottom:1079.070000px;}
.y105{bottom:1079.610000px;}
.y1f9{bottom:1080.330000px;}
.y67{bottom:1080.510000px;}
.y1dc{bottom:1081.770000px;}
.y1{bottom:1082.310000px;}
.y185{bottom:1084.650000px;}
.y39{bottom:1087.350000px;}
.y1f8{bottom:1100.130000px;}
.y24a{bottom:1100.670000px;}
.y12f{bottom:1101.570000px;}
.y21a{bottom:1102.470000px;}
.y186{bottom:1102.650000px;}
.y38{bottom:1105.530000px;}
.y66{bottom:1110.750000px;}
.y104{bottom:1117.770000px;}
.yb2{bottom:1118.490000px;}
.y14d{bottom:1119.930000px;}
.y181{bottom:1120.650000px;}
.y249{bottom:1120.830000px;}
.y37{bottom:1123.890000px;}
.y219{bottom:1136.490000px;}
.y183{bottom:1138.650000px;}
.y65{bottom:1140.990000px;}
.y36{bottom:1142.280000px;}
.y33{bottom:1193.040000px;}
.y32{bottom:1212.300000px;}
.y31{bottom:1228.860000px;}
.h22{height:16.380000px;}
.h28{height:16.416000px;}
.h25{height:16.560000px;}
.h18{height:18.180000px;}
.h1b{height:18.216000px;}
.h14{height:18.360000px;}
.h19{height:18.396000px;}
.h23{height:31.500000px;}
.h8{height:32.083594px;}
.h24{height:34.380000px;}
.h27{height:34.416000px;}
.h26{height:34.560000px;}
.h16{height:36.540000px;}
.h1a{height:36.576000px;}
.h17{height:36.720000px;}
.h1e{height:36.756000px;}
.h2a{height:38.520000px;}
.h2c{height:38.556000px;}
.hd{height:44.560547px;}
.ha{height:45.004219px;}
.h5{height:47.883867px;}
.h2b{height:48.192187px;}
.h9{height:49.313672px;}
.h21{height:49.320000px;}
.hc{height:49.605469px;}
.hf{height:54.660937px;}
.h15{height:54.900000px;}
.h1d{height:54.936000px;}
.h13{height:54.984375px;}
.h1f{height:55.080000px;}
.h1c{height:55.116000px;}
.h29{height:59.414062px;}
.he{height:59.439023px;}
.h12{height:59.765625px;}
.h11{height:61.189805px;}
.h10{height:62.211094px;}
.h3{height:65.884219px;}
.hb{height:69.514453px;}
.h6{height:69.925781px;}
.h2{height:74.376000px;}
.h7{height:75.064219px;}
.h4{height:87.479297px;}
.h20{height:98.856000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:41.616000px;}
.w25{width:44.676000px;}
.w12{width:48.420000px;}
.w17{width:52.200000px;}
.w2b{width:52.920000px;}
.w31{width:56.376000px;}
.w1b{width:62.820000px;}
.w1a{width:63.756000px;}
.w2a{width:63.936000px;}
.wf{width:65.520000px;}
.w1c{width:68.940000px;}
.w1d{width:70.236000px;}
.w1e{width:75.420000px;}
.wc{width:75.960000px;}
.w18{width:77.076000px;}
.w9{width:82.440000px;}
.w20{width:83.736000px;}
.w22{width:84.960000px;}
.we{width:84.996000px;}
.w1f{width:85.320000px;}
.w7{width:90.360000px;}
.w14{width:95.580000px;}
.w2c{width:95.760000px;}
.w8{width:95.796000px;}
.w15{width:98.496000px;}
.w29{width:106.200000px;}
.w6{width:106.416000px;}
.w2f{width:116.856000px;}
.w5{width:117.036000px;}
.w26{width:127.440000px;}
.w19{width:127.620000px;}
.w2d{width:129.096000px;}
.w28{width:132.696000px;}
.wa{width:135.576000px;}
.w32{width:145.620000px;}
.wb{width:148.896000px;}
.w10{width:149.076000px;}
.w2{width:162.900000px;}
.wd{width:170.130000px;}
.w11{width:191.370000px;}
.w24{width:253.290000px;}
.w27{width:282.090000px;}
.w30{width:287.130000px;}
.w23{width:308.370000px;}
.w13{width:308.415000px;}
.w2e{width:436.035000px;}
.w3{width:474.945000px;}
.w16{width:487.695000px;}
.w33{width:637.845000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.685000px;}
.x44{left:10.440000px;}
.x59{left:11.550000px;}
.x15{left:12.825000px;}
.x2b{left:14.760000px;}
.x37{left:15.840000px;}
.x43{left:17.820000px;}
.x36{left:18.900000px;}
.x13{left:19.980000px;}
.x2f{left:21.060000px;}
.x35{left:23.040000px;}
.x46{left:24.165000px;}
.x2e{left:25.200000px;}
.x26{left:27.000000px;}
.x1d{left:28.260000px;}
.x22{left:29.880000px;}
.x61{left:30.960000px;}
.x19{left:32.040000px;}
.x25{left:33.120000px;}
.x1b{left:34.920000px;}
.x17{left:36.180000px;}
.x31{left:37.260000px;}
.x1c{left:38.880000px;}
.x2d{left:40.140000px;}
.x18{left:41.400000px;}
.x58{left:42.480000px;}
.x16{left:43.740000px;}
.x1a{left:45.540000px;}
.x6f{left:46.620000px;}
.x6e{left:48.600000px;}
.x27{left:50.970000px;}
.x23{left:54.930000px;}
.x24{left:58.170000px;}
.x3c{left:80.100000px;}
.x1{left:127.656000px;}
.x69{left:131.795987px;}
.x1f{left:136.475987px;}
.x41{left:138.096000px;}
.x5{left:142.415987px;}
.x52{left:147.456000px;}
.x65{left:149.795987px;}
.x55{left:153.389987px;}
.x2{left:154.434000px;}
.x3d{left:157.889987px;}
.xd{left:163.469987px;}
.x67{left:170.130000px;}
.x7{left:173.729987px;}
.x30{left:176.249987px;}
.x62{left:179.129987px;}
.x11{left:180.569987px;}
.x9{left:186.149987px;}
.xf{left:191.549987px;}
.x3e{left:195.330000px;}
.x6b{left:201.990000px;}
.x51{left:208.289987px;}
.x5a{left:212.789987px;}
.x32{left:231.329987px;}
.x56{left:233.850000px;}
.x28{left:240.869987px;}
.x39{left:252.030000px;}
.x49{left:255.270000px;}
.x5f{left:265.349987px;}
.x38{left:271.649987px;}
.x6a{left:272.909987px;}
.x29{left:286.230000px;}
.x3{left:290.550000px;}
.x4f{left:296.895000px;}
.xa{left:316.514987px;}
.x8{left:318.674987px;}
.x63{left:334.155000px;}
.x48{left:340.094987px;}
.x6{left:345.674987px;}
.x66{left:364.754987px;}
.x4a{left:381.855000px;}
.x20{left:385.455000px;}
.x3a{left:401.115000px;}
.x12{left:406.695000px;}
.x5b{left:409.755000px;}
.x64{left:429.915000px;}
.x2a{left:435.135000px;}
.x71{left:441.969000px;}
.x1e{left:446.474987px;}
.x4b{left:450.795000px;}
.x33{left:456.375000px;}
.x21{left:467.895000px;}
.x73{left:482.469000px;}
.x57{left:487.155000px;}
.x6c{left:489.135000px;}
.x3f{left:503.745000px;}
.x14{left:513.105000px;}
.x4c{left:521.025000px;}
.x2c{left:530.925000px;}
.x34{left:541.365000px;}
.x5c{left:542.445000px;}
.x72{left:544.209000px;}
.x6d{left:545.505000px;}
.x60{left:551.625000px;}
.x53{left:562.245000px;}
.x3b{left:592.485000px;}
.x4d{left:596.445000px;}
.x40{left:599.325000px;}
.x68{left:606.165000px;}
.x42{left:625.785000px;}
.x54{left:647.205000px;}
.x5d{left:648.645000px;}
.x70{left:669.884987px;}
.x45{left:671.684987px;}
.x50{left:672.944987px;}
.x47{left:674.564987px;}
.xc{left:677.084987px;}
.xb{left:678.164987px;}
.x4e{left:681.765000px;}
.x5e{left:712.590000px;}
.x10{left:748.589987px;}
.xe{left:757.949987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls21{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.762667pt;}
.ls1f{letter-spacing:-0.757333pt;}
.ls23{letter-spacing:-0.476267pt;}
.ls24{letter-spacing:-0.274133pt;}
.ls20{letter-spacing:-0.266133pt;}
.ls1d{letter-spacing:-0.237867pt;}
.lsb{letter-spacing:-0.221333pt;}
.ls14{letter-spacing:-0.216533pt;}
.ls2c{letter-spacing:-0.191467pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.153067pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.109867pt;}
.ls25{letter-spacing:-0.035840pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls1a{letter-spacing:-0.017920pt;}
.ls7{letter-spacing:-0.007040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.053867pt;}
.ls0{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.117867pt;}
.ls3{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.138133pt;}
.lsc{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.157867pt;}
.ls1e{letter-spacing:0.163733pt;}
.ls18{letter-spacing:0.209920pt;}
.lsa{letter-spacing:0.224000pt;}
.ls2b{letter-spacing:0.252267pt;}
.ls1{letter-spacing:0.277333pt;}
.ls2a{letter-spacing:0.289067pt;}
.ls9{letter-spacing:0.309867pt;}
.ls10{letter-spacing:0.317333pt;}
.ls13{letter-spacing:0.330133pt;}
.ls22{letter-spacing:0.335467pt;}
.lsf{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.632960pt;}
.ls26{letter-spacing:2.693120pt;}
.ls27{letter-spacing:2.951040pt;}
.ls11{letter-spacing:137.601707pt;}
.lsd{letter-spacing:753.371307pt;}
.ws16{word-spacing:-16.248960pt;}
.ws1c{word-spacing:-13.112427pt;}
.ws9{word-spacing:-13.094293pt;}
.ws23{word-spacing:-13.066027pt;}
.ws13{word-spacing:-12.915093pt;}
.wsa{word-spacing:-12.776960pt;}
.ws17{word-spacing:-12.759040pt;}
.ws1f{word-spacing:-12.741120pt;}
.ws20{word-spacing:-12.648960pt;}
.ws1a{word-spacing:-12.510827pt;}
.ws1e{word-spacing:-12.502827pt;}
.ws21{word-spacing:-12.293013pt;}
.ws19{word-spacing:-12.129280pt;}
.ws22{word-spacing:-12.019413pt;}
.ws1b{word-spacing:-12.008960pt;}
.wsc{word-spacing:-12.005120pt;}
.ws18{word-spacing:-11.891413pt;}
.wse{word-spacing:-11.857173pt;}
.ws6{word-spacing:-11.836907pt;}
.ws3{word-spacing:-11.804373pt;}
.wsd{word-spacing:-11.751040pt;}
.ws11{word-spacing:-11.684907pt;}
.ws1d{word-spacing:-11.653013pt;}
.ws10{word-spacing:-11.644907pt;}
.ws2{word-spacing:-11.527040pt;}
.ws5{word-spacing:-11.495040pt;}
.wsb{word-spacing:-11.373973pt;}
.ws12{word-spacing:-11.361173pt;}
.ws24{word-spacing:-11.335573pt;}
.wsf{word-spacing:-11.310507pt;}
.ws8{word-spacing:-11.305707pt;}
.ws0{word-spacing:-10.942720pt;}
.ws14{word-spacing:-10.640000pt;}
.ws1{word-spacing:-10.416000pt;}
.ws15{word-spacing:-10.384000pt;}
.ws4{word-spacing:-7.499520pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-4.007680pt;}
._d{margin-left:-2.860160pt;}
._0{margin-left:-1.389440pt;}
._1{width:0.935893pt;}
._5{width:2.107307pt;}
._6{width:3.134933pt;}
._c{width:4.062933pt;}
._4{width:5.013547pt;}
._b{width:5.916587pt;}
._a{width:6.905600pt;}
._e{width:7.968000pt;}
._9{width:8.924160pt;}
._3{width:10.601813pt;}
._1c{width:11.752320pt;}
._8{width:12.769067pt;}
._11{width:13.717547pt;}
._10{width:15.469013pt;}
._f{width:16.917547pt;}
._1a{width:18.410453pt;}
._16{width:19.312640pt;}
._7{width:20.929280pt;}
._20{width:22.492160pt;}
._13{width:23.393067pt;}
._12{width:24.700800pt;}
._18{width:26.510933pt;}
._17{width:27.473280pt;}
._14{width:28.631680pt;}
._15{width:29.680000pt;}
._1b{width:31.359360pt;}
._25{width:34.562560pt;}
._27{width:35.611520pt;}
._26{width:36.706987pt;}
._24{width:39.514880pt;}
._23{width:40.485760pt;}
._2f{width:44.689920pt;}
._1f{width:46.055040pt;}
._31{width:48.281600pt;}
._30{width:49.788800pt;}
._2{width:50.697387pt;}
._2b{width:59.998720pt;}
._21{width:63.178240pt;}
._22{width:64.333440pt;}
._28{width:69.312000pt;}
._1e{width:79.201920pt;}
._2a{width:81.272960pt;}
._29{width:82.373120pt;}
._36{width:91.137707pt;}
._35{width:92.029440pt;}
._37{width:93.046827pt;}
._2e{width:133.657600pt;}
._2c{width:134.717440pt;}
._2d{width:135.775787pt;}
._1d{width:137.140907pt;}
._32{width:172.930560pt;}
._33{width:174.766720pt;}
._38{width:201.487360pt;}
._39{width:202.564907pt;}
._3a{width:261.368320pt;}
._34{width:380.776960pt;}
._3b{width:387.347840pt;}
._3c{width:388.270507pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y17f{bottom:3.194667pt;}
.y163{bottom:3.200000pt;}
.y184{bottom:3.226667pt;}
.y171{bottom:3.240000pt;}
.yb3{bottom:3.520000pt;}
.y12d{bottom:3.552000pt;}
.y121{bottom:3.560000pt;}
.y16a{bottom:4.640000pt;}
.y139{bottom:11.520000pt;}
.y12a{bottom:11.674667pt;}
.yb8{bottom:11.680000pt;}
.y12e{bottom:11.712000pt;}
.y122{bottom:11.720000pt;}
.y3{bottom:12.160000pt;}
.y166{bottom:16.480000pt;}
.y162{bottom:17.760000pt;}
.y178{bottom:19.040000pt;}
.y17d{bottom:19.194667pt;}
.y167{bottom:19.200000pt;}
.y182{bottom:19.226667pt;}
.y16f{bottom:19.240000pt;}
.ybe{bottom:19.680000pt;}
.y129{bottom:19.834667pt;}
.yb6{bottom:19.840000pt;}
.y14e{bottom:19.866667pt;}
.y12c{bottom:19.872000pt;}
.y120{bottom:19.880000pt;}
.y26b{bottom:20.320000pt;}
.y35{bottom:22.240000pt;}
.y2{bottom:32.160000pt;}
.y161{bottom:32.480000pt;}
.y124{bottom:36.000000pt;}
.y137{bottom:36.040000pt;}
.yb5{bottom:36.160000pt;}
.y130{bottom:36.186667pt;}
.y34{bottom:38.560000pt;}
.y15d{bottom:39.840000pt;}
.y160{bottom:47.040000pt;}
.y15f{bottom:61.786667pt;}
.y15e{bottom:76.506667pt;}
.y12b{bottom:94.400000pt;}
.yb1{bottom:98.592000pt;}
.y23c{bottom:100.992000pt;}
.y64{bottom:104.032000pt;}
.y248{bottom:111.552000pt;}
.y1db{bottom:111.712000pt;}
.y1ae{bottom:112.352000pt;}
.y218{bottom:113.312000pt;}
.y180{bottom:114.592000pt;}
.y30{bottom:115.392000pt;}
.y14c{bottom:116.512000pt;}
.y268{bottom:118.912000pt;}
.y239{bottom:120.512000pt;}
.yb0{bottom:125.312000pt;}
.y128{bottom:126.912000pt;}
.y1bc{bottom:127.872000pt;}
.y1ad{bottom:128.672000pt;}
.y247{bottom:129.472000pt;}
.y17c{bottom:130.592000pt;}
.y63{bottom:130.912000pt;}
.y2f{bottom:131.552000pt;}
.y90{bottom:136.826667pt;}
.y1da{bottom:138.586667pt;}
.y103{bottom:139.226667pt;}
.ydc{bottom:139.866667pt;}
.y217{bottom:140.186667pt;}
.y1ac{bottom:144.986667pt;}
.y17e{bottom:146.586667pt;}
.y238{bottom:147.386667pt;}
.y2e{bottom:147.866667pt;}
.y14b{bottom:148.986667pt;}
.yaf{bottom:152.186667pt;}
.yfd{bottom:154.106667pt;}
.y102{bottom:154.586667pt;}
.y1bb{bottom:154.746667pt;}
.y62{bottom:157.626667pt;}
.y127{bottom:159.546667pt;}
.y1ab{bottom:161.146667pt;}
.y17a{bottom:162.586667pt;}
.y8f{bottom:163.706667pt;}
.y2d{bottom:164.186667pt;}
.ydb{bottom:165.306667pt;}
.y216{bottom:167.066667pt;}
.y101{bottom:172.186667pt;}
.y267{bottom:172.506667pt;}
.y237{bottom:174.266667pt;}
.y272{bottom:176.186667pt;}
.y1aa{bottom:177.466667pt;}
.y17b{bottom:178.586667pt;}
.yae{bottom:179.066667pt;}
.y2c{bottom:180.506667pt;}
.yfc{bottom:180.986667pt;}
.y23b{bottom:181.466667pt;}
.y14a{bottom:181.626667pt;}
.y246{bottom:183.226667pt;}
.y61{bottom:184.506667pt;}
.y1f7{bottom:187.866667pt;}
.y266{bottom:190.426667pt;}
.y8e{bottom:190.586667pt;}
.y126{bottom:192.026667pt;}
.yda{bottom:192.186667pt;}
.y271{bottom:192.506667pt;}
.y1a9{bottom:193.786667pt;}
.y177{bottom:194.586667pt;}
.y2b{bottom:196.666667pt;}
.y236{bottom:200.986667pt;}
.y245{bottom:201.146667pt;}
.yad{bottom:205.946667pt;}
.yfb{bottom:207.706667pt;}
.y23a{bottom:208.346667pt;}
.y1ba{bottom:208.506667pt;}
.y270{bottom:208.826667pt;}
.y100{bottom:209.466667pt;}
.y1a8{bottom:210.106667pt;}
.y179{bottom:210.426667pt;}
.y60{bottom:211.386667pt;}
.y2a{bottom:212.986667pt;}
.y1f6{bottom:213.466667pt;}
.y8d{bottom:217.306667pt;}
.y244{bottom:218.906667pt;}
.yd9{bottom:219.066667pt;}
.y215{bottom:220.666667pt;}
.y1a7{bottom:226.266667pt;}
.y175{bottom:226.426667pt;}
.y235{bottom:227.866667pt;}
.y29{bottom:229.306667pt;}
.y149{bottom:230.426667pt;}
.yac{bottom:232.826667pt;}
.yfa{bottom:234.586667pt;}
.yff{bottom:235.226667pt;}
.y214{bottom:236.026667pt;}
.y243{bottom:236.826667pt;}
.y5f{bottom:238.266667pt;}
.y1f5{bottom:240.186667pt;}
.y125{bottom:240.826667pt;}
.y176{bottom:242.426667pt;}
.y1a6{bottom:242.586667pt;}
.y8c{bottom:244.186667pt;}
.y26f{bottom:244.826667pt;}
.y28{bottom:245.626667pt;}
.yd8{bottom:245.946667pt;}
.y148{bottom:246.746667pt;}
.y213{bottom:252.186667pt;}
.y234{bottom:254.746667pt;}
.y174{bottom:258.426667pt;}
.y1a5{bottom:258.906667pt;}
.yab{bottom:259.706667pt;}
.yf9{bottom:261.466667pt;}
.y27{bottom:261.786667pt;}
.yfe{bottom:262.106667pt;}
.y81{bottom:263.386667pt;}
.y5e{bottom:265.146667pt;}
.y1f4{bottom:267.066667pt;}
.y212{bottom:268.506667pt;}
.y242{bottom:272.666667pt;}
.yd7{bottom:272.826667pt;}
.y123{bottom:273.466667pt;}
.y8b{bottom:274.426667pt;}
.y1a4{bottom:275.066667pt;}
.yf8{bottom:276.666667pt;}
.y26{bottom:278.106667pt;}
.y265{bottom:280.026667pt;}
.y233{bottom:281.626667pt;}
.y211{bottom:284.826667pt;}
.yaa{bottom:286.426667pt;}
.yd6{bottom:288.026667pt;}
.y80{bottom:288.986667pt;}
.y172{bottom:290.426667pt;}
.y241{bottom:290.586667pt;}
.y1a3{bottom:291.386667pt;}
.y5d{bottom:292.026667pt;}
.yf7{bottom:292.986667pt;}
.y1f3{bottom:293.946667pt;}
.y26e{bottom:294.266667pt;}
.y25{bottom:294.426667pt;}
.y147{bottom:295.546667pt;}
.y264{bottom:297.946667pt;}
.y1d9{bottom:299.706667pt;}
.yd5{bottom:304.346667pt;}
.y173{bottom:306.426667pt;}
.y1a2{bottom:307.706667pt;}
.y8a{bottom:308.346667pt;}
.y232{bottom:308.506667pt;}
.yf6{bottom:309.306667pt;}
.y24{bottom:310.586667pt;}
.ya9{bottom:313.306667pt;}
.y7f{bottom:315.866667pt;}
.y210{bottom:317.306667pt;}
.y5c{bottom:318.906667pt;}
.y1f2{bottom:320.826667pt;}
.y11f{bottom:322.266667pt;}
.y16e{bottom:322.426667pt;}
.y1a1{bottom:325.306667pt;}
.yf5{bottom:325.666667pt;}
.y240{bottom:326.466667pt;}
.y1d8{bottom:326.626667pt;}
.y23{bottom:326.946667pt;}
.y146{bottom:328.066667pt;}
.y26d{bottom:329.826667pt;}
.y20f{bottom:333.666667pt;}
.y263{bottom:333.826667pt;}
.y231{bottom:335.426667pt;}
.yd4{bottom:336.866667pt;}
.y170{bottom:338.466667pt;}
.ya8{bottom:340.226667pt;}
.yf4{bottom:341.826667pt;}
.y7e{bottom:342.626667pt;}
.y1b9{bottom:342.786667pt;}
.y22{bottom:343.266667pt;}
.y23f{bottom:344.386667pt;}
.y5b{bottom:345.666667pt;}
.y1a0{bottom:346.466667pt;}
.y1f1{bottom:347.746667pt;}
.y20e{bottom:349.986667pt;}
.y262{bottom:351.586667pt;}
.yd3{bottom:353.186667pt;}
.y1d7{bottom:353.346667pt;}
.y16c{bottom:354.306667pt;}
.y11e{bottom:354.786667pt;}
.yf3{bottom:358.146667pt;}
.y21{bottom:359.586667pt;}
.y230{bottom:362.146667pt;}
.y23e{bottom:362.306667pt;}
.y19f{bottom:362.786667pt;}
.y26c{bottom:365.346667pt;}
.y20d{bottom:366.146667pt;}
.ya7{bottom:367.106667pt;}
.y1d6{bottom:368.706667pt;}
.y7d{bottom:369.506667pt;}
.y1b8{bottom:369.666667pt;}
.y16d{bottom:370.306667pt;}
.y11d{bottom:372.386667pt;}
.y5a{bottom:372.546667pt;}
.y1f0{bottom:374.626667pt;}
.y20{bottom:375.746667pt;}
.y145{bottom:377.026667pt;}
.y20c{bottom:382.466667pt;}
.y1d5{bottom:384.866667pt;}
.yd2{bottom:385.826667pt;}
.y169{bottom:386.306667pt;}
.y261{bottom:387.426667pt;}
.y19e{bottom:388.386667pt;}
.y22f{bottom:389.026667pt;}
.y1f{bottom:392.066667pt;}
.y23d{bottom:392.386667pt;}
.y11c{bottom:393.666667pt;}
.ya6{bottom:393.986667pt;}
.y7c{bottom:396.386667pt;}
.y1b7{bottom:396.546667pt;}
.yf2{bottom:396.866667pt;}
.y20b{bottom:398.786667pt;}
.y59{bottom:399.426667pt;}
.y26a{bottom:400.866667pt;}
.y1d4{bottom:401.186667pt;}
.y1ef{bottom:401.346667pt;}
.yd1{bottom:401.986667pt;}
.y16b{bottom:402.306667pt;}
.y260{bottom:405.346667pt;}
.y1e{bottom:408.386667pt;}
.y144{bottom:409.506667pt;}
.y11b{bottom:409.826667pt;}
.y20a{bottom:415.106667pt;}
.y19d{bottom:415.266667pt;}
.y22e{bottom:415.906667pt;}
.y1d3{bottom:417.506667pt;}
.yd0{bottom:418.306667pt;}
.ya5{bottom:420.866667pt;}
.yf1{bottom:422.626667pt;}
.y7b{bottom:423.266667pt;}
.y1d{bottom:424.706667pt;}
.y143{bottom:425.826667pt;}
.y1ee{bottom:428.226667pt;}
.y58{bottom:429.666667pt;}
.y209{bottom:431.266667pt;}
.y1d2{bottom:433.826667pt;}
.y168{bottom:434.306667pt;}
.y11a{bottom:435.586667pt;}
.ycf{bottom:435.906667pt;}
.y1c{bottom:440.866667pt;}
.y25f{bottom:441.186667pt;}
.y142{bottom:441.986667pt;}
.y19c{bottom:442.146667pt;}
.y22d{bottom:442.786667pt;}
.y269{bottom:443.106667pt;}
.y208{bottom:447.586667pt;}
.ya4{bottom:447.746667pt;}
.yf0{bottom:449.506667pt;}
.y7a{bottom:450.146667pt;}
.y164{bottom:450.306667pt;}
.y1d1{bottom:451.426667pt;}
.y1ed{bottom:455.106667pt;}
.yce{bottom:457.026667pt;}
.y1b{bottom:457.186667pt;}
.y25e{bottom:459.106667pt;}
.y119{bottom:462.466667pt;}
.y57{bottom:463.746667pt;}
.y207{bottom:463.906667pt;}
.y19b{bottom:469.026667pt;}
.y22c{bottom:469.666667pt;}
.y1ec{bottom:470.466667pt;}
.y1d0{bottom:472.546667pt;}
.y1a{bottom:473.506667pt;}
.ya3{bottom:474.466667pt;}
.y141{bottom:474.626667pt;}
.yef{bottom:476.226667pt;}
.y79{bottom:477.026667pt;}
.y165{bottom:479.586667pt;}
.y206{bottom:480.226667pt;}
.ycd{bottom:482.786667pt;}
.y1eb{bottom:486.626667pt;}
.y56{bottom:489.346667pt;}
.y19{bottom:489.666667pt;}
.y1b6{bottom:492.226667pt;}
.y25d{bottom:494.946667pt;}
.y15c{bottom:495.586667pt;}
.y19a{bottom:495.906667pt;}
.y205{bottom:496.386667pt;}
.y22b{bottom:496.546667pt;}
.y1cf{bottom:498.146667pt;}
.ya2{bottom:501.346667pt;}
.yee{bottom:503.106667pt;}
.y78{bottom:503.746667pt;}
.y18{bottom:505.986667pt;}
.y140{bottom:507.106667pt;}
.y1b5{bottom:508.546667pt;}
.ycc{bottom:509.666667pt;}
.y55{bottom:510.626667pt;}
.y204{bottom:512.706667pt;}
.y25c{bottom:512.866667pt;}
.y89{bottom:515.906667pt;}
.y118{bottom:516.066667pt;}
.y1ea{bottom:519.266667pt;}
.y17{bottom:522.306667pt;}
.y199{bottom:522.786667pt;}
.y13f{bottom:523.426667pt;}
.y1b4{bottom:524.866667pt;}
.y1ce{bottom:525.026667pt;}
.y54{bottom:526.946667pt;}
.ya1{bottom:528.226667pt;}
.y203{bottom:529.026667pt;}
.yed{bottom:529.986667pt;}
.y77{bottom:530.626667pt;}
.y1e9{bottom:535.426667pt;}
.ycb{bottom:536.386667pt;}
.y16{bottom:538.626667pt;}
.y1b3{bottom:541.186667pt;}
.y88{bottom:541.666667pt;}
.y117{bottom:542.946667pt;}
.y53{bottom:543.266667pt;}
.yec{bottom:545.186667pt;}
.y25b{bottom:548.546667pt;}
.y198{bottom:549.506667pt;}
.y22a{bottom:550.146667pt;}
.y1e8{bottom:551.746667pt;}
.y1cd{bottom:551.906667pt;}
.y15{bottom:554.786667pt;}
.ya0{bottom:555.106667pt;}
.y13e{bottom:556.093333pt;}
.y1b2{bottom:557.373333pt;}
.y76{bottom:557.533333pt;}
.y52{bottom:559.613333pt;}
.yeb{bottom:561.533333pt;}
.yca{bottom:563.293333pt;}
.y197{bottom:564.893333pt;}
.y25a{bottom:566.493333pt;}
.y87{bottom:568.413333pt;}
.y1e7{bottom:569.373333pt;}
.y116{bottom:569.853333pt;}
.y14{bottom:571.133333pt;}
.y1b1{bottom:573.693333pt;}
.y51{bottom:575.773333pt;}
.y229{bottom:577.053333pt;}
.yea{bottom:577.853333pt;}
.y1cc{bottom:578.813333pt;}
.y196{bottom:581.053333pt;}
.y9f{bottom:582.013333pt;}
.y75{bottom:584.413333pt;}
.y13{bottom:587.453333pt;}
.y15b{bottom:588.253333pt;}
.yc9{bottom:590.173333pt;}
.y1e6{bottom:590.493333pt;}
.y1b0{bottom:591.293333pt;}
.y50{bottom:592.093333pt;}
.ye9{bottom:594.173333pt;}
.y86{bottom:595.293333pt;}
.y115{bottom:596.733333pt;}
.y195{bottom:597.373333pt;}
.y259{bottom:602.333333pt;}
.y12{bottom:603.613333pt;}
.y228{bottom:603.933333pt;}
.y15a{bottom:604.573333pt;}
.y13d{bottom:604.893333pt;}
.y1cb{bottom:605.693333pt;}
.y1e5{bottom:606.813333pt;}
.y4f{bottom:608.413333pt;}
.y9e{bottom:608.893333pt;}
.ye8{bottom:610.333333pt;}
.y74{bottom:611.293333pt;}
.y1af{bottom:612.413333pt;}
.y194{bottom:613.693333pt;}
.yc8{bottom:617.053333pt;}
.y11{bottom:619.933333pt;}
.y258{bottom:620.253333pt;}
.y85{bottom:622.173333pt;}
.y4e{bottom:624.573333pt;}
.ye7{bottom:626.653333pt;}
.y114{bottom:626.973333pt;}
.y193{bottom:630.013333pt;}
.y159{bottom:630.333333pt;}
.y227{bottom:630.813333pt;}
.y1ca{bottom:632.573333pt;}
.y9d{bottom:635.613333pt;}
.y13c{bottom:637.373333pt;}
.y73{bottom:638.173333pt;}
.y10{bottom:638.973333pt;}
.y4d{bottom:640.893333pt;}
.y202{bottom:642.973333pt;}
.yc7{bottom:643.933333pt;}
.ye6{bottom:644.253333pt;}
.y192{bottom:646.173333pt;}
.y84{bottom:649.053333pt;}
.y257{bottom:656.093333pt;}
.yf{bottom:656.733333pt;}
.y4c{bottom:657.213333pt;}
.y226{bottom:657.693333pt;}
.y1c9{bottom:659.293333pt;}
.y9c{bottom:662.493333pt;}
.y191{bottom:663.773333pt;}
.y113{bottom:664.893333pt;}
.y72{bottom:665.053333pt;}
.ye5{bottom:665.373333pt;}
.yc6{bottom:669.373333pt;}
.y4b{bottom:673.533333pt;}
.y256{bottom:674.013333pt;}
.y201{bottom:675.453333pt;}
.y83{bottom:675.933333pt;}
.ye{bottom:682.653333pt;}
.yc5{bottom:683.613333pt;}
.y158{bottom:683.933333pt;}
.y225{bottom:684.573333pt;}
.y112{bottom:685.373333pt;}
.y13b{bottom:686.173333pt;}
.y9b{bottom:689.373333pt;}
.y4a{bottom:689.693333pt;}
.ye4{bottom:691.133333pt;}
.y71{bottom:691.773333pt;}
.y255{bottom:691.933333pt;}
.yd{bottom:694.173333pt;}
.yc4{bottom:699.773333pt;}
.y190{bottom:701.213333pt;}
.y49{bottom:706.013333pt;}
.y82{bottom:707.613333pt;}
.y200{bottom:709.373333pt;}
.y254{bottom:709.693333pt;}
.y157{bottom:710.813333pt;}
.y224{bottom:711.293333pt;}
.y111{bottom:712.253333pt;}
.y1c8{bottom:713.053333pt;}
.yc{bottom:715.133333pt;}
.yc3{bottom:716.093333pt;}
.y9a{bottom:716.253333pt;}
.ye3{bottom:718.013333pt;}
.y70{bottom:718.653333pt;}
.y13a{bottom:718.813333pt;}
.y48{bottom:722.333333pt;}
.yb{bottom:726.493333pt;}
.y18f{bottom:726.973333pt;}
.y110{bottom:727.453333pt;}
.y253{bottom:727.613333pt;}
.y1ff{bottom:730.493333pt;}
.yc2{bottom:732.413333pt;}
.y138{bottom:735.133333pt;}
.y156{bottom:737.693333pt;}
.y223{bottom:738.173333pt;}
.y47{bottom:738.653333pt;}
.y1c7{bottom:739.933333pt;}
.y99{bottom:743.133333pt;}
.y10f{bottom:743.773333pt;}
.ye2{bottom:744.733333pt;}
.y6f{bottom:745.533333pt;}
.ya{bottom:746.013333pt;}
.yc1{bottom:748.733333pt;}
.y18e{bottom:753.853333pt;}
.y46{bottom:754.813333pt;}
.y1fe{bottom:756.253333pt;}
.y10e{bottom:760.093333pt;}
.y252{bottom:763.453333pt;}
.y155{bottom:764.573333pt;}
.yc0{bottom:764.893333pt;}
.y222{bottom:765.053333pt;}
.y1c6{bottom:766.813333pt;}
.y136{bottom:767.613333pt;}
.y98{bottom:770.013333pt;}
.y9{bottom:770.493333pt;}
.y45{bottom:771.133333pt;}
.ye1{bottom:771.613333pt;}
.y6e{bottom:772.413333pt;}
.y10d{bottom:776.413333pt;}
.y18d{bottom:780.573333pt;}
.ybf{bottom:781.213333pt;}
.y251{bottom:781.373333pt;}
.y1c5{bottom:782.013333pt;}
.y1fd{bottom:783.133333pt;}
.y44{bottom:787.493333pt;}
.y154{bottom:791.493333pt;}
.y221{bottom:791.973333pt;}
.y10c{bottom:792.613333pt;}
.y1e4{bottom:793.733333pt;}
.y97{bottom:796.933333pt;}
.ybd{bottom:797.573333pt;}
.y1c4{bottom:798.373333pt;}
.ye0{bottom:798.533333pt;}
.y6d{bottom:799.333333pt;}
.y43{bottom:803.653333pt;}
.y8{bottom:804.613333pt;}
.y18c{bottom:807.493333pt;}
.y10b{bottom:808.933333pt;}
.y1fc{bottom:809.893333pt;}
.ydf{bottom:813.733333pt;}
.y1c3{bottom:814.693333pt;}
.y135{bottom:816.453333pt;}
.y250{bottom:817.253333pt;}
.y153{bottom:818.373333pt;}
.y220{bottom:818.853333pt;}
.y42{bottom:819.973333pt;}
.y96{bottom:823.653333pt;}
.y1e3{bottom:825.253333pt;}
.y6c{bottom:826.213333pt;}
.y10a{bottom:826.533333pt;}
.ybc{bottom:830.053333pt;}
.y1c2{bottom:830.853333pt;}
.y18b{bottom:834.373333pt;}
.y24f{bottom:835.173333pt;}
.y41{bottom:836.293333pt;}
.y1fb{bottom:836.773333pt;}
.y7{bottom:838.853333pt;}
.y1e2{bottom:841.413333pt;}
.y152{bottom:845.093333pt;}
.y21f{bottom:845.733333pt;}
.ybb{bottom:846.373333pt;}
.y1c1{bottom:847.173333pt;}
.y95{bottom:850.533333pt;}
.y40{bottom:852.613333pt;}
.y6b{bottom:853.093333pt;}
.y1e1{bottom:857.733333pt;}
.y18a{bottom:861.253333pt;}
.yba{bottom:862.693333pt;}
.y1c0{bottom:863.493333pt;}
.y1fa{bottom:863.653333pt;}
.y109{bottom:863.973333pt;}
.y134{bottom:865.253333pt;}
.y3f{bottom:868.773333pt;}
.y24e{bottom:871.013333pt;}
.y151{bottom:871.973333pt;}
.y21e{bottom:872.613333pt;}
.y6{bottom:873.093333pt;}
.y1e0{bottom:874.053333pt;}
.y94{bottom:877.413333pt;}
.yb9{bottom:878.853333pt;}
.y6a{bottom:879.813333pt;}
.y108{bottom:880.293333pt;}
.y1bf{bottom:881.093333pt;}
.y133{bottom:881.573333pt;}
.y3e{bottom:885.093333pt;}
.y189{bottom:888.133333pt;}
.y24d{bottom:888.773333pt;}
.y1df{bottom:890.373333pt;}
.yde{bottom:895.173333pt;}
.y150{bottom:898.853333pt;}
.y21d{bottom:899.333333pt;}
.y3d{bottom:901.413333pt;}
.y93{bottom:904.293333pt;}
.y107{bottom:905.893333pt;}
.y69{bottom:906.693333pt;}
.y5{bottom:907.173333pt;}
.y1de{bottom:907.973333pt;}
.yb7{bottom:911.493333pt;}
.y132{bottom:914.213333pt;}
.y188{bottom:915.013333pt;}
.y3c{bottom:917.733333pt;}
.y1be{bottom:918.533333pt;}
.y24c{bottom:924.613333pt;}
.y21c{bottom:926.213333pt;}
.ydd{bottom:927.813333pt;}
.y131{bottom:930.373333pt;}
.y92{bottom:931.173333pt;}
.y106{bottom:932.773333pt;}
.y68{bottom:933.573333pt;}
.y3b{bottom:933.893333pt;}
.y1bd{bottom:934.693333pt;}
.y24b{bottom:942.533333pt;}
.yb4{bottom:943.973333pt;}
.y4{bottom:945.093333pt;}
.y1dd{bottom:945.253333pt;}
.y14f{bottom:946.693333pt;}
.y187{bottom:948.933333pt;}
.y3a{bottom:950.213333pt;}
.y21b{bottom:953.093333pt;}
.y91{bottom:959.173333pt;}
.y105{bottom:959.653333pt;}
.y1f9{bottom:960.293333pt;}
.y67{bottom:960.453333pt;}
.y1dc{bottom:961.573333pt;}
.y1{bottom:962.053333pt;}
.y185{bottom:964.133333pt;}
.y39{bottom:966.533333pt;}
.y1f8{bottom:977.893333pt;}
.y24a{bottom:978.373333pt;}
.y12f{bottom:979.173333pt;}
.y21a{bottom:979.973333pt;}
.y186{bottom:980.133333pt;}
.y38{bottom:982.693333pt;}
.y66{bottom:987.333333pt;}
.y104{bottom:993.573333pt;}
.yb2{bottom:994.213333pt;}
.y14d{bottom:995.493333pt;}
.y181{bottom:996.133333pt;}
.y249{bottom:996.293333pt;}
.y37{bottom:999.013333pt;}
.y219{bottom:1010.213333pt;}
.y183{bottom:1012.133333pt;}
.y65{bottom:1014.213333pt;}
.y36{bottom:1015.360000pt;}
.y33{bottom:1060.480000pt;}
.y32{bottom:1077.600000pt;}
.y31{bottom:1092.320000pt;}
.h22{height:14.560000pt;}
.h28{height:14.592000pt;}
.h25{height:14.720000pt;}
.h18{height:16.160000pt;}
.h1b{height:16.192000pt;}
.h14{height:16.320000pt;}
.h19{height:16.352000pt;}
.h23{height:28.000000pt;}
.h8{height:28.518750pt;}
.h24{height:30.560000pt;}
.h27{height:30.592000pt;}
.h26{height:30.720000pt;}
.h16{height:32.480000pt;}
.h1a{height:32.512000pt;}
.h17{height:32.640000pt;}
.h1e{height:32.672000pt;}
.h2a{height:34.240000pt;}
.h2c{height:34.272000pt;}
.hd{height:39.609375pt;}
.ha{height:40.003750pt;}
.h5{height:42.563437pt;}
.h2b{height:42.837500pt;}
.h9{height:43.834375pt;}
.h21{height:43.840000pt;}
.hc{height:44.093750pt;}
.hf{height:48.587500pt;}
.h15{height:48.800000pt;}
.h1d{height:48.832000pt;}
.h13{height:48.875000pt;}
.h1f{height:48.960000pt;}
.h1c{height:48.992000pt;}
.h29{height:52.812500pt;}
.he{height:52.834688pt;}
.h12{height:53.125000pt;}
.h11{height:54.390938pt;}
.h10{height:55.298750pt;}
.h3{height:58.563750pt;}
.hb{height:61.790625pt;}
.h6{height:62.156250pt;}
.h2{height:66.112000pt;}
.h7{height:66.723750pt;}
.h4{height:77.759375pt;}
.h20{height:87.872000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:36.992000pt;}
.w25{width:39.712000pt;}
.w12{width:43.040000pt;}
.w17{width:46.400000pt;}
.w2b{width:47.040000pt;}
.w31{width:50.112000pt;}
.w1b{width:55.840000pt;}
.w1a{width:56.672000pt;}
.w2a{width:56.832000pt;}
.wf{width:58.240000pt;}
.w1c{width:61.280000pt;}
.w1d{width:62.432000pt;}
.w1e{width:67.040000pt;}
.wc{width:67.520000pt;}
.w18{width:68.512000pt;}
.w9{width:73.280000pt;}
.w20{width:74.432000pt;}
.w22{width:75.520000pt;}
.we{width:75.552000pt;}
.w1f{width:75.840000pt;}
.w7{width:80.320000pt;}
.w14{width:84.960000pt;}
.w2c{width:85.120000pt;}
.w8{width:85.152000pt;}
.w15{width:87.552000pt;}
.w29{width:94.400000pt;}
.w6{width:94.592000pt;}
.w2f{width:103.872000pt;}
.w5{width:104.032000pt;}
.w26{width:113.280000pt;}
.w19{width:113.440000pt;}
.w2d{width:114.752000pt;}
.w28{width:117.952000pt;}
.wa{width:120.512000pt;}
.w32{width:129.440000pt;}
.wb{width:132.352000pt;}
.w10{width:132.512000pt;}
.w2{width:144.800000pt;}
.wd{width:151.226667pt;}
.w11{width:170.106667pt;}
.w24{width:225.146667pt;}
.w27{width:250.746667pt;}
.w30{width:255.226667pt;}
.w23{width:274.106667pt;}
.w13{width:274.146667pt;}
.w2e{width:387.586667pt;}
.w3{width:422.173333pt;}
.w16{width:433.506667pt;}
.w33{width:566.973333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.720000pt;}
.x44{left:9.280000pt;}
.x59{left:10.266667pt;}
.x15{left:11.400000pt;}
.x2b{left:13.120000pt;}
.x37{left:14.080000pt;}
.x43{left:15.840000pt;}
.x36{left:16.800000pt;}
.x13{left:17.760000pt;}
.x2f{left:18.720000pt;}
.x35{left:20.480000pt;}
.x46{left:21.480000pt;}
.x2e{left:22.400000pt;}
.x26{left:24.000000pt;}
.x1d{left:25.120000pt;}
.x22{left:26.560000pt;}
.x61{left:27.520000pt;}
.x19{left:28.480000pt;}
.x25{left:29.440000pt;}
.x1b{left:31.040000pt;}
.x17{left:32.160000pt;}
.x31{left:33.120000pt;}
.x1c{left:34.560000pt;}
.x2d{left:35.680000pt;}
.x18{left:36.800000pt;}
.x58{left:37.760000pt;}
.x16{left:38.880000pt;}
.x1a{left:40.480000pt;}
.x6f{left:41.440000pt;}
.x6e{left:43.200000pt;}
.x27{left:45.306667pt;}
.x23{left:48.826667pt;}
.x24{left:51.706667pt;}
.x3c{left:71.200000pt;}
.x1{left:113.472000pt;}
.x69{left:117.151988pt;}
.x1f{left:121.311988pt;}
.x41{left:122.752000pt;}
.x5{left:126.591988pt;}
.x52{left:131.072000pt;}
.x65{left:133.151988pt;}
.x55{left:136.346655pt;}
.x2{left:137.274667pt;}
.x3d{left:140.346655pt;}
.xd{left:145.306655pt;}
.x67{left:151.226667pt;}
.x7{left:154.426655pt;}
.x30{left:156.666655pt;}
.x62{left:159.226655pt;}
.x11{left:160.506655pt;}
.x9{left:165.466655pt;}
.xf{left:170.266655pt;}
.x3e{left:173.626667pt;}
.x6b{left:179.546667pt;}
.x51{left:185.146655pt;}
.x5a{left:189.146655pt;}
.x32{left:205.626655pt;}
.x56{left:207.866667pt;}
.x28{left:214.106655pt;}
.x39{left:224.026667pt;}
.x49{left:226.906667pt;}
.x5f{left:235.866655pt;}
.x38{left:241.466655pt;}
.x6a{left:242.586655pt;}
.x29{left:254.426667pt;}
.x3{left:258.266667pt;}
.x4f{left:263.906667pt;}
.xa{left:281.346655pt;}
.x8{left:283.266655pt;}
.x63{left:297.026667pt;}
.x48{left:302.306655pt;}
.x6{left:307.266655pt;}
.x66{left:324.226655pt;}
.x4a{left:339.426667pt;}
.x20{left:342.626667pt;}
.x3a{left:356.546667pt;}
.x12{left:361.506667pt;}
.x5b{left:364.226667pt;}
.x64{left:382.146667pt;}
.x2a{left:386.786667pt;}
.x71{left:392.861333pt;}
.x1e{left:396.866655pt;}
.x4b{left:400.706667pt;}
.x33{left:405.666667pt;}
.x21{left:415.906667pt;}
.x73{left:428.861333pt;}
.x57{left:433.026667pt;}
.x6c{left:434.786667pt;}
.x3f{left:447.773333pt;}
.x14{left:456.093333pt;}
.x4c{left:463.133333pt;}
.x2c{left:471.933333pt;}
.x34{left:481.213333pt;}
.x5c{left:482.173333pt;}
.x72{left:483.741333pt;}
.x6d{left:484.893333pt;}
.x60{left:490.333333pt;}
.x53{left:499.773333pt;}
.x3b{left:526.653333pt;}
.x4d{left:530.173333pt;}
.x40{left:532.733333pt;}
.x68{left:538.813333pt;}
.x42{left:556.253333pt;}
.x54{left:575.293333pt;}
.x5d{left:576.573333pt;}
.x70{left:595.453322pt;}
.x45{left:597.053322pt;}
.x50{left:598.173322pt;}
.x47{left:599.613322pt;}
.xc{left:601.853322pt;}
.xb{left:602.813322pt;}
.x4e{left:606.013333pt;}
.x5e{left:633.413333pt;}
.x10{left:665.413322pt;}
.xe{left:673.733322pt;}
}




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