
    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_e8e2693326b74ae4fbeecae0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073500;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_4e4a01fafcc1522bcf253905.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d25063baaaf62cc2be4fecf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.755000;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_950535e6a73e72736df0419e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_a9111545323edb2f147daf88.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_abd3d28238a8275f76d7e58c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.019500;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_9a5a7263866d40d97671541e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133000;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_acc0060c51bf275b62d1a7ff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.074000;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_cc5798317c25034232ce4a53.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7a6c8ca28969b6d1e07c7f21.woff')format("woff");}.ffb{font-family:ffb;line-height:1.073500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8d76eb47f9cc4113ede63636.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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:ffd;src:url('chunks/assets/font_76038d62f11e653fdee4a036.woff')format("woff");}.ffd{font-family:ffd;line-height:1.050000;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:ffe;src:url('chunks/assets/font_15914a0ee6e50f936485dc9b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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:fff;src:url('chunks/assets/font_afced36d0140b16781d5d775.woff')format("woff");}.fff{font-family:fff;line-height:0.767578;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.879883px;}
.v1{vertical-align:-5.760132px;}
.v5{vertical-align:-2.879883px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760132px;}
.v3{vertical-align:20.879883px;}
.ls10{letter-spacing:-1.026000px;}
.ls1c{letter-spacing:-0.870000px;}
.ls16{letter-spacing:-0.363000px;}
.ls25{letter-spacing:-0.354000px;}
.ls21{letter-spacing:-0.339600px;}
.ls11{letter-spacing:-0.308400px;}
.ls26{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.259200px;}
.ls2c{letter-spacing:-0.227400px;}
.ls17{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.103800px;}
.ls1f{letter-spacing:-0.100800px;}
.ls1b{letter-spacing:-0.002880px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.043200px;}
.ls12{letter-spacing:0.051840px;}
.ls4{letter-spacing:0.097931px;}
.ls1e{letter-spacing:0.104378px;}
.ls1d{letter-spacing:0.113775px;}
.ls18{letter-spacing:0.129600px;}
.ls7{letter-spacing:0.175885px;}
.ls27{letter-spacing:0.181422px;}
.ls28{letter-spacing:0.181425px;}
.ls9{letter-spacing:0.213000px;}
.ls2a{letter-spacing:0.230525px;}
.ls29{letter-spacing:0.233163px;}
.ls14{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.259119px;}
.ls2d{letter-spacing:0.259216px;}
.ls13{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.322800px;}
.ls2b{letter-spacing:0.336931px;}
.ls6{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.489578px;}
.ls20{letter-spacing:0.618000px;}
.ls23{letter-spacing:36.864020px;}
.ls19{letter-spacing:42.462722px;}
.lsd{letter-spacing:47.538724px;}
.ls0{letter-spacing:203.359692px;}
.ls3{letter-spacing:845.705031px;}
.lsb{letter-spacing:845.705214px;}
.ls8{letter-spacing:845.885298px;}
.ls24{letter-spacing:849.288018px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(1,0,109),0 0.015em rgb(1,0,109),0.015em 0 rgb(1,0,109),0 -0.015em  rgb(1,0,109);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(1,0,109);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-19.673280px;}
.ws5{word-spacing:-18.745920px;}
.ws1a{word-spacing:-18.216000px;}
.ws1b{word-spacing:-17.928000px;}
.ws1{word-spacing:-16.258320px;}
.ws4{word-spacing:-16.075440px;}
.ws6{word-spacing:-15.553320px;}
.ws9{word-spacing:-13.144320px;}
.ws7{word-spacing:-13.141320px;}
.wsf{word-spacing:-13.107120px;}
.wsd{word-spacing:-13.072320px;}
.wse{word-spacing:-13.040520px;}
.ws8{word-spacing:-12.997320px;}
.ws1e{word-spacing:-12.836160px;}
.wsa{word-spacing:-12.784320px;}
.ws13{word-spacing:-12.781440px;}
.wsb{word-spacing:-12.675120px;}
.ws1f{word-spacing:-12.556920px;}
.ws3{word-spacing:-12.525120px;}
.wsc{word-spacing:-12.475920px;}
.ws18{word-spacing:-12.444720px;}
.ws17{word-spacing:-12.151680px;}
.ws14{word-spacing:-11.914320px;}
.ws2{word-spacing:-11.533680px;}
.ws16{word-spacing:-11.432880px;}
.ws15{word-spacing:-11.274480px;}
.ws19{word-spacing:-11.179680px;}
.ws10{word-spacing:-11.107439px;}
.ws11{word-spacing:-10.782000px;}
.ws1d{word-spacing:-8.059680px;}
.ws1c{word-spacing:-7.503840px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-12.180921px;}
._11{margin-left:-10.588906px;}
._f{margin-left:-8.826092px;}
._d{margin-left:-6.363468px;}
._c{margin-left:-4.836051px;}
._7{margin-left:-3.160080px;}
._8{margin-left:-2.120305px;}
._3{margin-left:-1.039775px;}
._5{width:1.135440px;}
._6{width:2.224576px;}
._19{width:4.038141px;}
._17{width:5.168594px;}
._16{width:6.491520px;}
._15{width:7.610823px;}
._14{width:8.717379px;}
._13{width:10.068480px;}
._18{width:11.725105px;}
._1a{width:13.795295px;}
._1b{width:15.235200px;}
._1c{width:16.427520px;}
._23{width:17.807645px;}
._1d{width:19.275840px;}
._22{width:20.536661px;}
._1e{width:21.629390px;}
._21{width:22.635871px;}
._2e{width:23.647680px;}
._2f{width:24.823684px;}
._25{width:26.363520px;}
._24{width:27.556465px;}
._26{width:29.602564px;}
._27{width:30.961561px;}
._1f{width:33.599996px;}
._20{width:34.611170px;}
._4{width:40.266720px;}
._10{width:41.848336px;}
._9{width:49.421520px;}
._2d{width:50.501615px;}
._2{width:51.752255px;}
._1{width:67.918329px;}
._2a{width:69.220800px;}
._b{width:80.700484px;}
._e{width:94.310367px;}
._a{width:95.556240px;}
._28{width:102.473280px;}
._29{width:103.599360px;}
._0{width:111.262324px;}
._2b{width:165.202560px;}
._2c{width:166.242960px;}
._30{width:203.359692px;}
.fca{color:rgb(1,0,66);}
.fc8{color:transparent;}
.fc7{color:rgb(120,28,183);}
.fc5{color:rgb(1,0,109);}
.fc4{color:rgb(106,25,160);}
.fc3{color:rgb(29,157,253);}
.fc2{color:rgb(206,204,204);}
.fcb{color:rgb(8,8,8);}
.fc9{color:rgb(34,34,34);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(124,198,254);}
.fsf{font-size:33.120000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs5{font-size:43.200000px;}
.fse{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.879997px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.599945px;}
.y89{bottom:3.600037px;}
.y62{bottom:3.779984px;}
.y1be{bottom:3.780006px;}
.y1b1{bottom:3.780029px;}
.y1c6{bottom:3.953991px;}
.y1a1{bottom:3.959976px;}
.y1b8{bottom:3.959999px;}
.y19d{bottom:3.960022px;}
.y1aa{bottom:3.990005px;}
.y112{bottom:4.679993px;}
.y116{bottom:4.680084px;}
.y90{bottom:5.039978px;}
.y14f{bottom:5.939941px;}
.y159{bottom:5.939987px;}
.y16b{bottom:5.940010px;}
.y14b{bottom:5.940033px;}
.y148{bottom:6.119934px;}
.y157{bottom:6.119980px;}
.y168{bottom:6.120003px;}
.y144{bottom:6.120026px;}
.y51{bottom:7.019989px;}
.y129{bottom:7.559967px;}
.y12f{bottom:7.560013px;}
.y12b{bottom:7.560059px;}
.y12d{bottom:7.739960px;}
.y134{bottom:7.740005px;}
.y4f{bottom:7.919998px;}
.y119{bottom:9.899963px;}
.y4d{bottom:10.259995px;}
.y47{bottom:10.440033px;}
.y42{bottom:11.880066px;}
.y44{bottom:12.059967px;}
.y45{bottom:13.500000px;}
.y21e{bottom:15.516000px;}
.yf5{bottom:16.379997px;}
.ye9{bottom:16.380020px;}
.ydd{bottom:16.559967px;}
.yf9{bottom:16.559991px;}
.ye4{bottom:16.560013px;}
.y5e{bottom:16.740005px;}
.y15b{bottom:17.640015px;}
.y2b{bottom:18.539978px;}
.y60{bottom:20.519989px;}
.y64{bottom:20.699982px;}
.y31{bottom:21.239960px;}
.y37{bottom:21.240005px;}
.y2d{bottom:21.240051px;}
.y2f{bottom:21.285004px;}
.y61{bottom:21.959976px;}
.y65{bottom:22.139969px;}
.y1d{bottom:22.365051px;}
.y33{bottom:22.679993px;}
.y3a{bottom:23.219971px;}
.y39{bottom:24.660004px;}
.ye8{bottom:34.740005px;}
.ydc{bottom:34.919952px;}
.yf4{bottom:34.919975px;}
.ye1{bottom:34.919998px;}
.y16f{bottom:40.859997px;}
.y2a{bottom:45.720062px;}
.y155{bottom:52.380020px;}
.ye7{bottom:53.279984px;}
.yf3{bottom:53.280006px;}
.yf1{bottom:53.280029px;}
.ye0{bottom:53.459976px;}
.yf8{bottom:53.460000px;}
.y28{bottom:64.080048px;}
.y3{bottom:69.156000px;}
.y3e{bottom:70.236002px;}
.ye6{bottom:71.640015px;}
.yf2{bottom:71.819984px;}
.ydf{bottom:71.820007px;}
.y29{bottom:72.900055px;}
.y2{bottom:85.355999px;}
.yf7{bottom:87.525010px;}
.y3d{bottom:89.315998px;}
.yf0{bottom:90.180038px;}
.yef{bottom:108.750000px;}
.y1a3{bottom:116.100037px;}
.y1b6{bottom:124.734009px;}
.y21{bottom:126.929993px;}
.yee{bottom:127.110031px;}
.y1b5{bottom:132.335999px;}
.y122{bottom:132.516003px;}
.y146{bottom:133.605057px;}
.y21c{bottom:138.456000px;}
.y1db{bottom:139.896000px;}
.y173{bottom:140.616005px;}
.y10e{bottom:143.496002px;}
.ybd{bottom:145.655994px;}
.y121{bottom:147.275997px;}
.y1c5{bottom:149.616005px;}
.yd3{bottom:150.509995px;}
.y16e{bottom:157.529995px;}
.y21b{bottom:159.870003px;}
.y1da{bottom:161.310000px;}
.y18d{bottom:162.209999px;}
.y10d{bottom:164.910004px;}
.y1c4{bottom:166.890003px;}
.ybc{bottom:167.069996px;}
.y15d{bottom:168.344971px;}
.y1fc{bottom:170.129997px;}
.yd2{bottom:171.930004px;}
.y20{bottom:173.369980px;}
.y172{bottom:180.750000px;}
.y21a{bottom:181.290000px;}
.y1d9{bottom:182.549995px;}
.y18c{bottom:183.450005px;}
.y1c3{bottom:184.169998px;}
.y10c{bottom:186.149998px;}
.ybb{bottom:188.490005px;}
.y1fb{bottom:191.370003px;}
.yd1{bottom:193.349991px;}
.yf6{bottom:199.290000px;}
.y1c2{bottom:201.450005px;}
.ye3{bottom:201.629997px;}
.y171{bottom:203.969994px;}
.y18b{bottom:204.870003px;}
.y10b{bottom:207.570007px;}
.yba{bottom:209.730011px;}
.y219{bottom:211.530006px;}
.yd0{bottom:214.589996px;}
.y1d8{bottom:216.030006px;}
.y1c1{bottom:218.730011px;}
.y1f{bottom:219.809967px;}
.y1fa{bottom:221.790000px;}
.y18a{bottom:226.290000px;}
.y170{bottom:227.190010px;}
.y10a{bottom:228.990005px;}
.yb9{bottom:231.150009px;}
.y218{bottom:232.950005px;}
.ycf{bottom:236.009995px;}
.y1d7{bottom:237.269989px;}
.y1f9{bottom:243.209999px;}
.y189{bottom:247.709999px;}
.y109{bottom:250.230011px;}
.y141{bottom:250.589996px;}
.yec{bottom:251.460000px;}
.y1c0{bottom:253.290000px;}
.y217{bottom:254.370003px;}
.yce{bottom:257.429993px;}
.y1d6{bottom:258.690010px;}
.yb8{bottom:264.450005px;}
.y84{bottom:268.230011px;}
.y188{bottom:268.950005px;}
.yeb{bottom:269.819985px;}
.y1bf{bottom:270.570007px;}
.y108{bottom:271.650009px;}
.y16d{bottom:273.450005px;}
.ycd{bottom:278.849991px;}
.y1d5{bottom:280.110008px;}
.y140{bottom:281.955002px;}
.y5c{bottom:283.575005px;}
.y216{bottom:284.655006px;}
.yb7{bottom:285.915000px;}
.y1bd{bottom:287.894989px;}
.y83{bottom:289.334999px;}
.y187{bottom:290.415000px;}
.y1f8{bottom:294.915000px;}
.y16c{bottom:296.714996px;}
.y5b{bottom:299.775009px;}
.ycc{bottom:300.134995px;}
.yea{bottom:300.270013px;}
.y1d4{bottom:301.575005px;}
.y1b{bottom:301.754997px;}
.y1bc{bottom:304.995003px;}
.y107{bottom:305.714996px;}
.y215{bottom:306.075005px;}
.yb6{bottom:307.334999px;}
.y82{bottom:310.754997px;}
.y186{bottom:311.834999px;}
.y26{bottom:313.275009px;}
.y5a{bottom:315.974991px;}
.y1f7{bottom:316.334999px;}
.y16a{bottom:319.934990px;}
.ycb{bottom:321.554993px;}
.y1bb{bottom:322.275009px;}
.y1d3{bottom:322.815010px;}
.y214{bottom:327.495003px;}
.yb5{bottom:328.575005px;}
.y81{bottom:332.174995px;}
.y106{bottom:332.714996px;}
.y185{bottom:333.075005px;}
.y1a{bottom:335.415000px;}
.y1ba{bottom:339.554993px;}
.y13f{bottom:341.355011px;}
.y169{bottom:342.974991px;}
.y25{bottom:346.394989px;}
.y1f6{bottom:346.575005px;}
.y59{bottom:346.934990px;}
.y213{bottom:348.735008px;}
.yb4{bottom:349.995003px;}
.y80{bottom:353.415000px;}
.y184{bottom:354.495003px;}
.yca{bottom:354.855011px;}
.y1b9{bottom:356.834999px;}
.y1d2{bottom:357.014992px;}
.y13e{bottom:361.155006px;}
.y167{bottom:366.195007px;}
.y1f5{bottom:367.995003px;}
.y19{bottom:369.254997px;}
.yb3{bottom:371.415000px;}
.ye2{bottom:372.495003px;}
.y1b7{bottom:374.115005px;}
.y7f{bottom:374.834999px;}
.y183{bottom:375.915000px;}
.yc9{bottom:376.275009px;}
.y212{bottom:379.155006px;}
.y24{bottom:380.235008px;}
.y58{bottom:380.775009px;}
.y13d{bottom:380.955002px;}
.y1d1{bottom:383.834999px;}
.y166{bottom:389.414978px;}
.y1b2{bottom:391.394989px;}
.yb2{bottom:392.835022px;}
.y7e{bottom:396.255020px;}
.y3c{bottom:397.154984px;}
.yc8{bottom:397.695007px;}
.y211{bottom:400.574982px;}
.y13c{bottom:402.554993px;}
.y18{bottom:402.914978px;}
.y1b4{bottom:408.675018px;}
.y1f4{bottom:410.835022px;}
.y165{bottom:412.634995px;}
.yb1{bottom:414.074982px;}
.y57{bottom:414.435013px;}
.y7d{bottom:417.494980px;}
.yc7{bottom:418.935013px;}
.y1b3{bottom:425.955002px;}
.y210{bottom:430.994980px;}
.y182{bottom:431.355011px;}
.y1f3{bottom:434.414978px;}
.yb0{bottom:435.494980px;}
.y164{bottom:435.675018px;}
.y17{bottom:436.574982px;}
.y7c{bottom:438.734985px;}
.yc6{bottom:440.355011px;}
.y1a2{bottom:443.234985px;}
.y13b{bottom:443.595016px;}
.y56{bottom:448.095016px;}
.y3b{bottom:451.875000px;}
.y20f{bottom:452.234985px;}
.y181{bottom:455.115005px;}
.y163{bottom:458.894989px;}
.yed{bottom:459.074982px;}
.y1b0{bottom:460.515015px;}
.yc5{bottom:461.775009px;}
.y63{bottom:464.835022px;}
.y13a{bottom:465.015015px;}
.yaf{bottom:468.794998px;}
.y16{bottom:470.234985px;}
.y20e{bottom:473.654984px;}
.y1af{bottom:477.615005px;}
.y7b{bottom:479.775009px;}
.y1f2{bottom:481.214996px;}
.y162{bottom:482.115005px;}
.yc4{bottom:483.195007px;}
.y139{bottom:487.154984px;}
.yae{bottom:490.214996px;}
.y1ae{bottom:494.894989px;}
.y7a{bottom:501.195007px;}
.y5f{bottom:502.275009px;}
.y1f1{bottom:502.634995px;}
.y15{bottom:504.074982px;}
.yc3{bottom:504.435013px;}
.y161{bottom:505.335022px;}
.y38{bottom:506.595016px;}
.yad{bottom:511.634995px;}
.y1ad{bottom:512.175018px;}
.y79{bottom:522.435013px;}
.y1f0{bottom:523.875000px;}
.y20d{bottom:525.314987px;}
.yc2{bottom:525.855011px;}
.y160{bottom:528.375000px;}
.y1ac{bottom:529.455002px;}
.y138{bottom:529.634995px;}
.yac{bottom:535.214996px;}
.y14{bottom:537.734985px;}
.y5d{bottom:539.535004px;}
.y78{bottom:543.855011px;}
.y1ef{bottom:545.294998px;}
.y1ab{bottom:546.734985px;}
.y137{bottom:551.054993px;}
.y15f{bottom:551.595016px;}
.y1e{bottom:552.675018px;}
.y20c{bottom:555.734985px;}
.y1a9{bottom:564.015015px;}
.y36{bottom:564.765015px;}
.y77{bottom:565.304993px;}
.y1ee{bottom:566.744980px;}
.y13{bottom:571.425018px;}
.yc1{bottom:571.964996px;}
.y136{bottom:574.664978px;}
.y15e{bottom:574.845016px;}
.y20b{bottom:577.185013px;}
.y1a8{bottom:581.324982px;}
.yab{bottom:582.044998px;}
.y76{bottom:586.544998px;}
.y1ed{bottom:588.164978px;}
.y15a{bottom:598.064987px;}
.y1a7{bottom:598.605011px;}
.y55{bottom:598.785004px;}
.ye5{bottom:601.125000px;}
.yaa{bottom:603.464996px;}
.y12{bottom:604.544998px;}
.y75{bottom:607.785004px;}
.y1ec{bottom:609.404984px;}
.y1a6{bottom:615.884995px;}
.y35{bottom:619.484985px;}
.y54{bottom:620.025009px;}
.y15c{bottom:621.105011px;}
.y135{bottom:621.464996px;}
.ya9{bottom:624.884995px;}
.y20a{bottom:628.845016px;}
.y120{bottom:629.205002px;}
.y1eb{bottom:630.824982px;}
.y1a5{bottom:632.984985px;}
.y74{bottom:636.765015px;}
.y133{bottom:638.384995px;}
.y11{bottom:638.564987px;}
.y154{bottom:644.324982px;}
.ya8{bottom:646.125000px;}
.y1a4{bottom:650.265015px;}
.y11f{bottom:650.625000px;}
.y1ea{bottom:652.244980px;}
.y53{bottom:661.425018px;}
.y132{bottom:664.664978px;}
.ya7{bottom:667.544998px;}
.y73{bottom:670.064987px;}
.y11e{bottom:672.044998px;}
.y10{bottom:672.224991px;}
.y1e9{bottom:673.484985px;}
.y34{bottom:675.644989px;}
.y209{bottom:680.685013px;}
.y19e{bottom:684.824982px;}
.yde{bottom:687.525009px;}
.y131{bottom:690.765015px;}
.y11d{bottom:693.285004px;}
.y1e8{bottom:694.904984px;}
.y52{bottom:695.265015px;}
.y72{bottom:699.044998px;}
.ya6{bottom:700.845016px;}
.y208{bottom:701.925018px;}
.y1a0{bottom:702.105011px;}
.yf{bottom:705.884995px;}
.y50{bottom:712.005020px;}
.y158{bottom:713.804993px;}
.y11c{bottom:714.705002px;}
.y1e7{bottom:716.324982px;}
.y130{bottom:717.044998px;}
.y19f{bottom:719.384995px;}
.ya5{bottom:722.265015px;}
.y207{bottom:723.345016px;}
.y71{bottom:727.845016px;}
.y32{bottom:731.804993px;}
.y19c{bottom:736.664978px;}
.y11b{bottom:736.845016px;}
.y156{bottom:737.025009px;}
.y4e{bottom:737.384995px;}
.ye{bottom:739.544998px;}
.y105{bottom:740.085022px;}
.y12e{bottom:743.144989px;}
.ya4{bottom:743.685013px;}
.y1e6{bottom:749.625000px;}
.y1d0{bottom:751.425018px;}
.y206{bottom:753.765015px;}
.y70{bottom:756.824982px;}
.y145{bottom:760.244980px;}
.y104{bottom:761.505020px;}
.y4c{bottom:764.384995px;}
.ya3{bottom:765.105011px;}
.y12c{bottom:769.245026px;}
.y1e5{bottom:771.045044px;}
.y19b{bottom:771.765015px;}
.y1cf{bottom:772.844971px;}
.yd{bottom:773.385040px;}
.ydb{bottom:774.105011px;}
.y205{bottom:775.184967px;}
.y227{bottom:776.265015px;}
.y11a{bottom:781.304993px;}
.y103{bottom:782.925018px;}
.y153{bottom:783.464996px;}
.y6f{bottom:785.625000px;}
.ya2{bottom:786.344971px;}
.y30{bottom:787.964996px;}
.y1e4{bottom:792.464996px;}
.y1ce{bottom:794.085022px;}
.y12a{bottom:795.524963px;}
.y118{bottom:801.464996px;}
.y19a{bottom:802.184967px;}
.y102{bottom:804.164978px;}
.y204{bottom:805.425018px;}
.y152{bottom:806.504974px;}
.yc{bottom:807.045044px;}
.y226{bottom:809.565033px;}
.y1e3{bottom:813.704956px;}
.y6e{bottom:814.425018px;}
.y1cd{bottom:815.504974px;}
.y91{bottom:816.945007px;}
.y180{bottom:818.204956px;}
.ya1{bottom:819.824982px;}
.y117{bottom:821.625000px;}
.y199{bottom:823.605011px;}
.y101{bottom:825.585022px;}
.y203{bottom:826.844971px;}
.y4b{bottom:828.285004px;}
.y1c{bottom:829.184967px;}
.y151{bottom:829.725037px;}
.y8f{bottom:832.605011px;}
.y1e2{bottom:835.125000px;}
.y1cc{bottom:836.925018px;}
.y17f{bottom:839.445007px;}
.yb{bottom:840.704956px;}
.ya0{bottom:841.065033px;}
.yda{bottom:841.785004px;}
.y2e{bottom:842.684967px;}
.y225{bottom:842.864960px;}
.y6d{bottom:843.405029px;}
.y198{bottom:845.024963px;}
.y100{bottom:847.004974px;}
.y202{bottom:848.309967px;}
.y8e{bottom:852.449982px;}
.y150{bottom:852.989960px;}
.y1e1{bottom:856.589996px;}
.y1cb{bottom:858.390015px;}
.y17e{bottom:860.910004px;}
.y115{bottom:861.989960px;}
.y9f{bottom:862.530029px;}
.y128{bottom:865.769989px;}
.y197{bottom:866.489960px;}
.yff{bottom:868.289978px;}
.y4a{bottom:869.910004px;}
.y6c{bottom:872.250000px;}
.ya{bottom:874.410004px;}
.y14e{bottom:876.210022px;}
.y224{bottom:876.390015px;}
.y1e0{bottom:877.829956px;}
.y201{bottom:878.550018px;}
.y114{bottom:882.149963px;}
.y17d{bottom:882.329956px;}
.y9e{bottom:883.949982px;}
.y127{bottom:884.309967px;}
.y196{bottom:887.730011px;}
.yfe{bottom:889.710022px;}
.y1ca{bottom:891.690033px;}
.y8d{bottom:892.050018px;}
.yd9{bottom:893.670044px;}
.y2c{bottom:897.449982px;}
.y14d{bottom:899.250000px;}
.y200{bottom:899.969971px;}
.y6b{bottom:901.050018px;}
.y113{bottom:902.309967px;}
.y49{bottom:903.570007px;}
.y17c{bottom:903.750000px;}
.y9d{bottom:905.190033px;}
.y126{bottom:905.550018px;}
.y97{bottom:907.530029px;}
.y9{bottom:908.250000px;}
.y195{bottom:909.149963px;}
.y223{bottom:909.690033px;}
.yfd{bottom:911.129974px;}
.y8c{bottom:911.850037px;}
.y1c9{bottom:913.109985px;}
.yd8{bottom:914.910004px;}
.y48{bottom:920.309967px;}
.y1df{bottom:920.670044px;}
.y111{bottom:922.469971px;}
.y17b{bottom:924.989960px;}
.y9c{bottom:926.609985px;}
.y125{bottom:926.969971px;}
.y96{bottom:928.949982px;}
.y6a{bottom:930.030029px;}
.y1ff{bottom:930.390015px;}
.y194{bottom:930.570007px;}
.y8b{bottom:931.649963px;}
.yfc{bottom:932.550018px;}
.y1c8{bottom:934.350037px;}
.yd7{bottom:936.329956px;}
.y8{bottom:941.910004px;}
.y1de{bottom:942.089996px;}
.y222{bottom:943.170044px;}
.y14c{bottom:945.690033px;}
.y17a{bottom:946.410004px;}
.y46{bottom:947.489960px;}
.y124{bottom:948.390015px;}
.y95{bottom:950.370026px;}
.y8a{bottom:951.449982px;}
.y1fe{bottom:951.629974px;}
.y193{bottom:951.809967px;}
.y27{bottom:953.789978px;}
.y1c7{bottom:955.769989px;}
.yd6{bottom:957.750000px;}
.y69{bottom:958.829956px;}
.y9b{bottom:960.089996px;}
.y110{bottom:960.629974px;}
.y1dd{bottom:963.329956px;}
.y179{bottom:967.829956px;}
.y14a{bottom:968.910004px;}
.y123{bottom:969.629974px;}
.y88{bottom:971.250000px;}
.y94{bottom:971.609985px;}
.y192{bottom:973.589996px;}
.y43{bottom:974.670044px;}
.yfb{bottom:975.210022px;}
.y7{bottom:975.570007px;}
.y221{bottom:976.469971px;}
.yd5{bottom:979.170044px;}
.y9a{bottom:981.329956px;}
.y1fd{bottom:982.050018px;}
.y1dc{bottom:986.910004px;}
.y68{bottom:987.809967px;}
.y178{bottom:989.070007px;}
.y87{bottom:991.050018px;}
.y149{bottom:991.949982px;}
.y93{bottom:993.030029px;}
.yfa{bottom:997.350037px;}
.yd4{bottom:1000.410004px;}
.y99{bottom:1002.750000px;}
.y41{bottom:1003.469971px;}
.y191{bottom:1008.510040px;}
.y6{bottom:1009.230011px;}
.y220{bottom:1009.769989px;}
.y177{bottom:1010.489960px;}
.y85{bottom:1010.850037px;}
.y10f{bottom:1012.469971px;}
.y92{bottom:1014.449982px;}
.y147{bottom:1015.170044px;}
.y67{bottom:1016.609985px;}
.y98{bottom:1024.170044px;}
.y190{bottom:1029.929993px;}
.y176{bottom:1031.910004px;}
.yc0{bottom:1033.890015px;}
.y143{bottom:1038.390015px;}
.y5{bottom:1043.070007px;}
.y21f{bottom:1043.250000px;}
.y66{bottom:1045.410004px;}
.y40{bottom:1047.750000px;}
.y18f{bottom:1051.350037px;}
.y175{bottom:1053.329956px;}
.ybf{bottom:1055.129974px;}
.y3f{bottom:1068.989960px;}
.y18e{bottom:1073.489960px;}
.y174{bottom:1074.929993px;}
.ybe{bottom:1076.550018px;}
.y4{bottom:1076.730011px;}
.y142{bottom:1079.429993px;}
.y1{bottom:1168.019989px;}
.y23{bottom:1193.579956px;}
.y22{bottom:1200.299100px;}
.y21d{bottom:1246.679993px;}
.h49{height:16.380000px;}
.h4d{height:16.416000px;}
.h44{height:16.560000px;}
.h4a{height:16.596000px;}
.h32{height:19.440000px;}
.h34{height:19.476000px;}
.h22{height:19.800000px;}
.h24{height:19.836000px;}
.h3e{height:22.320000px;}
.h3c{height:22.500000px;}
.h3f{height:22.536000px;}
.h1d{height:24.660000px;}
.h1b{height:24.839999px;}
.h37{height:25.380000px;}
.h38{height:25.560000px;}
.h15{height:26.280000px;}
.h1a{height:26.459999px;}
.h17{height:28.079999px;}
.h1f{height:31.176000px;}
.h35{height:34.642080px;}
.h20{height:36.540000px;}
.h45{height:42.148440px;}
.hb{height:42.335156px;}
.h26{height:44.172000px;}
.h16{height:44.640720px;}
.h41{height:45.540000px;}
.h47{height:45.547920px;}
.h28{height:46.897558px;}
.h4{height:48.114000px;}
.h27{height:48.959999px;}
.h33{height:49.272120px;}
.h6{height:49.481280px;}
.h2a{height:50.680078px;}
.h4b{height:50.939999px;}
.h46{height:51.120003px;}
.h19{height:52.349760px;}
.h10{height:53.246160px;}
.h3b{height:53.868164px;}
.hf{height:54.000000px;}
.h11{height:54.035997px;}
.h23{height:54.614880px;}
.h12{height:55.439999px;}
.h36{height:55.521963px;}
.h39{height:55.522146px;}
.h1c{height:55.636560px;}
.h13{height:57.419998px;}
.h5{height:59.019840px;}
.h18{height:61.669440px;}
.h21{height:65.884219px;}
.h1e{height:68.084282px;}
.h3a{height:74.004654px;}
.he{height:75.057840px;}
.h7{height:75.636000px;}
.h31{height:79.925027px;}
.h14{height:80.246880px;}
.h3{height:85.322160px;}
.h2c{height:85.679998px;}
.h29{height:85.860003px;}
.h30{height:85.896000px;}
.h43{height:91.980000px;}
.h25{height:98.426190px;}
.hc{height:102.600002px;}
.hd{height:107.133840px;}
.h40{height:115.200005px;}
.ha{height:128.304000px;}
.h2e{height:141.155994px;}
.h2f{height:172.470005px;}
.h8{height:178.092000px;}
.h48{height:240.870003px;}
.h9{height:255.269989px;}
.h4c{height:258.330002px;}
.h3d{height:277.410004px;}
.h2d{height:314.309990px;}
.h42{height:347.115005px;}
.h2b{height:400.890015px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:95.075998px;}
.wb{width:124.235996px;}
.w11{width:137.016003px;}
.w13{width:137.520000px;}
.wf{width:159.689999px;}
.w15{width:162.390003px;}
.w14{width:190.649998px;}
.w17{width:191.730000px;}
.wd{width:196.589996px;}
.we{width:196.769989px;}
.wc{width:199.110008px;}
.w1b{width:200.910004px;}
.w1f{width:211.349991px;}
.w18{width:220.889992px;}
.w1d{width:221.969994px;}
.w1a{width:238.349991px;}
.w19{width:260.535004px;}
.w1c{width:297.075005px;}
.w16{width:307.155006px;}
.w1e{width:307.514992px;}
.w9{width:359.714996px;}
.wa{width:359.894989px;}
.w5{width:360.254997px;}
.w6{width:360.434990px;}
.w7{width:360.794998px;}
.w8{width:360.974991px;}
.w3{width:412.994980px;}
.w4{width:478.185013px;}
.w10{width:562.605011px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x21{left:9.720016px;}
.x2a{left:10.800018px;}
.x25{left:11.880020px;}
.x1d{left:12.995996px;}
.x16{left:14.219994px;}
.x1c{left:15.515997px;}
.x7{left:17.099991px;}
.x24{left:18.395994px;}
.x1f{left:19.980011px;}
.x51{left:21.644989px;}
.x4{left:23.399986px;}
.x23{left:25.199982px;}
.x29{left:26.820007px;}
.x2d{left:27.900009px;}
.x54{left:29.015997px;}
.x2c{left:30.600014px;}
.x14{left:31.716002px;}
.x1e{left:33.335993px;}
.x20{left:36.360008px;}
.x2e{left:38.880020px;}
.x58{left:41.580002px;}
.x22{left:44.669998px;}
.x8{left:45.719994px;}
.x56{left:48.600037px;}
.x5c{left:50.075997px;}
.x49{left:51.300018px;}
.x1b{left:57.284958px;}
.x27{left:59.264969px;}
.x46{left:61.595997px;}
.x19{left:63.029984px;}
.x50{left:64.665001px;}
.x6{left:66.419998px;}
.x28{left:68.610003px;}
.x4a{left:71.669992px;}
.x36{left:72.749994px;}
.x26{left:74.009995px;}
.x2b{left:75.810013px;}
.x4c{left:78.705002px;}
.x3a{left:79.920044px;}
.x4b{left:81.584999px;}
.x3d{left:82.620026px;}
.x1{left:84.959986px;}
.x38{left:86.940033px;}
.x55{left:88.380020px;}
.x39{left:90.000000px;}
.x35{left:92.519989px;}
.x4e{left:94.544998px;}
.x37{left:95.939987px;}
.x4d{left:98.324982px;}
.x3b{left:99.539978px;}
.xf{left:101.555990px;}
.x59{left:103.365005px;}
.x45{left:104.400009px;}
.x43{left:106.019989px;}
.x5d{left:107.685013px;}
.x5a{left:108.765015px;}
.x44{left:110.339996px;}
.x4f{left:112.004974px;}
.x3c{left:113.429997px;}
.x41{left:114.689993px;}
.x10{left:117.935987px;}
.x3e{left:120.269995px;}
.x5e{left:122.265015px;}
.x5b{left:125.865005px;}
.x57{left:129.464996px;}
.x52{left:133.235983px;}
.x32{left:138.090002px;}
.xc{left:210.809990px;}
.x5{left:218.730011px;}
.x40{left:221.789987px;}
.x15{left:223.589996px;}
.x11{left:244.650009px;}
.x3{left:250.230011px;}
.x31{left:254.729998px;}
.x47{left:287.490005px;}
.x13{left:307.694994px;}
.x17{left:319.394989px;}
.x42{left:347.115005px;}
.x33{left:393.914978px;}
.xd{left:410.654984px;}
.x2f{left:438.554979px;}
.xb{left:442.515001px;}
.x2{left:446.474978px;}
.x18{left:457.634995px;}
.x48{left:585.285004px;}
.x34{left:586.365005px;}
.x53{left:595.904984px;}
.xe{left:608.144989px;}
.x1a{left:649.005020px;}
.x9{left:675.356415px;}
.x5f{left:797.729998px;}
.x3f{left:804.030016px;}
.x30{left:805.649950px;}
.x12{left:807.089983px;}
@media print{
.v2{vertical-align:-18.559896pt;}
.v1{vertical-align:-5.120117pt;}
.v5{vertical-align:-2.559896pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120117pt;}
.v3{vertical-align:18.559896pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls1c{letter-spacing:-0.773333pt;}
.ls16{letter-spacing:-0.322667pt;}
.ls25{letter-spacing:-0.314667pt;}
.ls21{letter-spacing:-0.301867pt;}
.ls11{letter-spacing:-0.274133pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.230400pt;}
.ls2c{letter-spacing:-0.202133pt;}
.ls17{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.092267pt;}
.ls1f{letter-spacing:-0.089600pt;}
.ls1b{letter-spacing:-0.002560pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.038400pt;}
.ls12{letter-spacing:0.046080pt;}
.ls4{letter-spacing:0.087049pt;}
.ls1e{letter-spacing:0.092780pt;}
.ls1d{letter-spacing:0.101133pt;}
.ls18{letter-spacing:0.115200pt;}
.ls7{letter-spacing:0.156342pt;}
.ls27{letter-spacing:0.161264pt;}
.ls28{letter-spacing:0.161267pt;}
.ls9{letter-spacing:0.189333pt;}
.ls2a{letter-spacing:0.204911pt;}
.ls29{letter-spacing:0.207256pt;}
.ls14{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.230328pt;}
.ls2d{letter-spacing:0.230415pt;}
.ls13{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.286933pt;}
.ls2b{letter-spacing:0.299494pt;}
.ls6{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.435180pt;}
.ls20{letter-spacing:0.549333pt;}
.ls23{letter-spacing:32.768018pt;}
.ls19{letter-spacing:37.744642pt;}
.lsd{letter-spacing:42.256644pt;}
.ls0{letter-spacing:180.764171pt;}
.ls3{letter-spacing:751.737805pt;}
.lsb{letter-spacing:751.737968pt;}
.ls8{letter-spacing:751.898043pt;}
.ls24{letter-spacing:754.922683pt;}
.ws12{word-spacing:-17.487360pt;}
.ws5{word-spacing:-16.663040pt;}
.ws1a{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws1{word-spacing:-14.451840pt;}
.ws4{word-spacing:-14.289280pt;}
.ws6{word-spacing:-13.825173pt;}
.ws9{word-spacing:-11.683840pt;}
.ws7{word-spacing:-11.681173pt;}
.wsf{word-spacing:-11.650773pt;}
.wsd{word-spacing:-11.619840pt;}
.wse{word-spacing:-11.591573pt;}
.ws8{word-spacing:-11.553173pt;}
.ws1e{word-spacing:-11.409920pt;}
.wsa{word-spacing:-11.363840pt;}
.ws13{word-spacing:-11.361280pt;}
.wsb{word-spacing:-11.266773pt;}
.ws1f{word-spacing:-11.161707pt;}
.ws3{word-spacing:-11.133440pt;}
.wsc{word-spacing:-11.089707pt;}
.ws18{word-spacing:-11.061973pt;}
.ws17{word-spacing:-10.801493pt;}
.ws14{word-spacing:-10.590507pt;}
.ws2{word-spacing:-10.252160pt;}
.ws16{word-spacing:-10.162560pt;}
.ws15{word-spacing:-10.021760pt;}
.ws19{word-spacing:-9.937493pt;}
.ws10{word-spacing:-9.873280pt;}
.ws11{word-spacing:-9.584000pt;}
.ws1d{word-spacing:-7.164160pt;}
.ws1c{word-spacing:-6.670080pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-10.827486pt;}
._11{margin-left:-9.412361pt;}
._f{margin-left:-7.845415pt;}
._d{margin-left:-5.656416pt;}
._c{margin-left:-4.298712pt;}
._7{margin-left:-2.808960pt;}
._8{margin-left:-1.884715pt;}
._3{margin-left:-0.924245pt;}
._5{width:1.009280pt;}
._6{width:1.977401pt;}
._19{width:3.589459pt;}
._17{width:4.594306pt;}
._16{width:5.770240pt;}
._15{width:6.765176pt;}
._14{width:7.748781pt;}
._13{width:8.949760pt;}
._18{width:10.422315pt;}
._1a{width:12.262485pt;}
._1b{width:13.542400pt;}
._1c{width:14.602240pt;}
._23{width:15.829018pt;}
._1d{width:17.134080pt;}
._22{width:18.254810pt;}
._1e{width:19.226124pt;}
._21{width:20.120774pt;}
._2e{width:21.020160pt;}
._2f{width:22.065497pt;}
._25{width:23.434240pt;}
._24{width:24.494635pt;}
._26{width:26.313390pt;}
._27{width:27.521387pt;}
._1f{width:29.866663pt;}
._20{width:30.765484pt;}
._4{width:35.792640pt;}
._10{width:37.198521pt;}
._9{width:43.930240pt;}
._2d{width:44.890325pt;}
._2{width:46.002005pt;}
._1{width:60.371848pt;}
._2a{width:61.529600pt;}
._b{width:71.733763pt;}
._e{width:83.831438pt;}
._a{width:84.938880pt;}
._28{width:91.087360pt;}
._29{width:92.088320pt;}
._0{width:98.899843pt;}
._2b{width:146.846720pt;}
._2c{width:147.771520pt;}
._30{width:180.764171pt;}
.fsf{font-size:29.440000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs5{font-size:38.400000pt;}
.fse{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.559998pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.199951pt;}
.y89{bottom:3.200033pt;}
.y62{bottom:3.359985pt;}
.y1be{bottom:3.360006pt;}
.y1b1{bottom:3.360026pt;}
.y1c6{bottom:3.514659pt;}
.y1a1{bottom:3.519979pt;}
.y1b8{bottom:3.519999pt;}
.y19d{bottom:3.520020pt;}
.y1aa{bottom:3.546672pt;}
.y112{bottom:4.159993pt;}
.y116{bottom:4.160075pt;}
.y90{bottom:4.479980pt;}
.y14f{bottom:5.279948pt;}
.y159{bottom:5.279989pt;}
.y16b{bottom:5.280009pt;}
.y14b{bottom:5.280029pt;}
.y148{bottom:5.439941pt;}
.y157{bottom:5.439982pt;}
.y168{bottom:5.440002pt;}
.y144{bottom:5.440023pt;}
.y51{bottom:6.239990pt;}
.y129{bottom:6.719971pt;}
.y12f{bottom:6.720011pt;}
.y12b{bottom:6.720052pt;}
.y12d{bottom:6.879964pt;}
.y134{bottom:6.880005pt;}
.y4f{bottom:7.039998pt;}
.y119{bottom:8.799967pt;}
.y4d{bottom:9.119995pt;}
.y47{bottom:9.280029pt;}
.y42{bottom:10.560059pt;}
.y44{bottom:10.719971pt;}
.y45{bottom:12.000000pt;}
.y21e{bottom:13.792000pt;}
.yf5{bottom:14.559998pt;}
.ye9{bottom:14.560018pt;}
.ydd{bottom:14.719971pt;}
.yf9{bottom:14.719992pt;}
.ye4{bottom:14.720011pt;}
.y5e{bottom:14.880005pt;}
.y15b{bottom:15.680013pt;}
.y2b{bottom:16.479980pt;}
.y60{bottom:18.239990pt;}
.y64{bottom:18.399984pt;}
.y31{bottom:18.879964pt;}
.y37{bottom:18.880005pt;}
.y2d{bottom:18.880046pt;}
.y2f{bottom:18.920003pt;}
.y61{bottom:19.519979pt;}
.y65{bottom:19.679972pt;}
.y1d{bottom:19.880046pt;}
.y33{bottom:20.159993pt;}
.y3a{bottom:20.639974pt;}
.y39{bottom:21.920003pt;}
.ye8{bottom:30.880005pt;}
.ydc{bottom:31.039958pt;}
.yf4{bottom:31.039978pt;}
.ye1{bottom:31.039998pt;}
.y16f{bottom:36.319997pt;}
.y2a{bottom:40.640055pt;}
.y155{bottom:46.560018pt;}
.ye7{bottom:47.359985pt;}
.yf3{bottom:47.360006pt;}
.yf1{bottom:47.360026pt;}
.ye0{bottom:47.519979pt;}
.yf8{bottom:47.520000pt;}
.y28{bottom:56.960042pt;}
.y3{bottom:61.472000pt;}
.y3e{bottom:62.432002pt;}
.ye6{bottom:63.680013pt;}
.yf2{bottom:63.839986pt;}
.ydf{bottom:63.840007pt;}
.y29{bottom:64.800049pt;}
.y2{bottom:75.871999pt;}
.yf7{bottom:77.800009pt;}
.y3d{bottom:79.391998pt;}
.yf0{bottom:80.160034pt;}
.yef{bottom:96.666667pt;}
.y1a3{bottom:103.200033pt;}
.y1b6{bottom:110.874674pt;}
.y21{bottom:112.826660pt;}
.yee{bottom:112.986694pt;}
.y1b5{bottom:117.631999pt;}
.y122{bottom:117.792002pt;}
.y146{bottom:118.760050pt;}
.y21c{bottom:123.072000pt;}
.y1db{bottom:124.352000pt;}
.y173{bottom:124.992004pt;}
.y10e{bottom:127.552002pt;}
.ybd{bottom:129.471995pt;}
.y121{bottom:130.911997pt;}
.y1c5{bottom:132.992004pt;}
.yd3{bottom:133.786662pt;}
.y16e{bottom:140.026662pt;}
.y21b{bottom:142.106669pt;}
.y1da{bottom:143.386667pt;}
.y18d{bottom:144.186666pt;}
.y10d{bottom:146.586670pt;}
.y1c4{bottom:148.346670pt;}
.ybc{bottom:148.506663pt;}
.y15d{bottom:149.639974pt;}
.y1fc{bottom:151.226664pt;}
.yd2{bottom:152.826670pt;}
.y20{bottom:154.106649pt;}
.y172{bottom:160.666667pt;}
.y21a{bottom:161.146667pt;}
.y1d9{bottom:162.266663pt;}
.y18c{bottom:163.066671pt;}
.y1c3{bottom:163.706665pt;}
.y10c{bottom:165.466665pt;}
.ybb{bottom:167.546672pt;}
.y1fb{bottom:170.106669pt;}
.yd1{bottom:171.866659pt;}
.yf6{bottom:177.146667pt;}
.y1c2{bottom:179.066671pt;}
.ye3{bottom:179.226664pt;}
.y171{bottom:181.306661pt;}
.y18b{bottom:182.106669pt;}
.y10b{bottom:184.506673pt;}
.yba{bottom:186.426676pt;}
.y219{bottom:188.026672pt;}
.yd0{bottom:190.746663pt;}
.y1d8{bottom:192.026672pt;}
.y1c1{bottom:194.426676pt;}
.y1f{bottom:195.386637pt;}
.y1fa{bottom:197.146667pt;}
.y18a{bottom:201.146667pt;}
.y170{bottom:201.946676pt;}
.y10a{bottom:203.546672pt;}
.yb9{bottom:205.466675pt;}
.y218{bottom:207.066671pt;}
.ycf{bottom:209.786662pt;}
.y1d7{bottom:210.906657pt;}
.y1f9{bottom:216.186666pt;}
.y189{bottom:220.186666pt;}
.y109{bottom:222.426676pt;}
.y141{bottom:222.746663pt;}
.yec{bottom:223.520000pt;}
.y1c0{bottom:225.146667pt;}
.y217{bottom:226.106669pt;}
.yce{bottom:228.826660pt;}
.y1d6{bottom:229.946676pt;}
.yb8{bottom:235.066671pt;}
.y84{bottom:238.426676pt;}
.y188{bottom:239.066671pt;}
.yeb{bottom:239.839987pt;}
.y1bf{bottom:240.506673pt;}
.y108{bottom:241.466675pt;}
.y16d{bottom:243.066671pt;}
.ycd{bottom:247.866659pt;}
.y1d5{bottom:248.986674pt;}
.y140{bottom:250.626668pt;}
.y5c{bottom:252.066671pt;}
.y216{bottom:253.026672pt;}
.yb7{bottom:254.146667pt;}
.y1bd{bottom:255.906657pt;}
.y83{bottom:257.186666pt;}
.y187{bottom:258.146667pt;}
.y1f8{bottom:262.146667pt;}
.y16c{bottom:263.746663pt;}
.y5b{bottom:266.466675pt;}
.ycc{bottom:266.786662pt;}
.yea{bottom:266.906678pt;}
.y1d4{bottom:268.066671pt;}
.y1b{bottom:268.226664pt;}
.y1bc{bottom:271.106669pt;}
.y107{bottom:271.746663pt;}
.y215{bottom:272.066671pt;}
.yb6{bottom:273.186666pt;}
.y82{bottom:276.226664pt;}
.y186{bottom:277.186666pt;}
.y26{bottom:278.466675pt;}
.y5a{bottom:280.866659pt;}
.y1f7{bottom:281.186666pt;}
.y16a{bottom:284.386658pt;}
.ycb{bottom:285.826660pt;}
.y1bb{bottom:286.466675pt;}
.y1d3{bottom:286.946676pt;}
.y214{bottom:291.106669pt;}
.yb5{bottom:292.066671pt;}
.y81{bottom:295.266663pt;}
.y106{bottom:295.746663pt;}
.y185{bottom:296.066671pt;}
.y1a{bottom:298.146667pt;}
.y1ba{bottom:301.826660pt;}
.y13f{bottom:303.426676pt;}
.y169{bottom:304.866659pt;}
.y25{bottom:307.906657pt;}
.y1f6{bottom:308.066671pt;}
.y59{bottom:308.386658pt;}
.y213{bottom:309.986674pt;}
.yb4{bottom:311.106669pt;}
.y80{bottom:314.146667pt;}
.y184{bottom:315.106669pt;}
.yca{bottom:315.426676pt;}
.y1b9{bottom:317.186666pt;}
.y1d2{bottom:317.346659pt;}
.y13e{bottom:321.026672pt;}
.y167{bottom:325.506673pt;}
.y1f5{bottom:327.106669pt;}
.y19{bottom:328.226664pt;}
.yb3{bottom:330.146667pt;}
.ye2{bottom:331.106669pt;}
.y1b7{bottom:332.546672pt;}
.y7f{bottom:333.186666pt;}
.y183{bottom:334.146667pt;}
.yc9{bottom:334.466675pt;}
.y212{bottom:337.026672pt;}
.y24{bottom:337.986674pt;}
.y58{bottom:338.466675pt;}
.y13d{bottom:338.626668pt;}
.y1d1{bottom:341.186666pt;}
.y166{bottom:346.146647pt;}
.y1b2{bottom:347.906657pt;}
.yb2{bottom:349.186686pt;}
.y7e{bottom:352.226685pt;}
.y3c{bottom:353.026652pt;}
.yc8{bottom:353.506673pt;}
.y211{bottom:356.066650pt;}
.y13c{bottom:357.826660pt;}
.y18{bottom:358.146647pt;}
.y1b4{bottom:363.266683pt;}
.y1f4{bottom:365.186686pt;}
.y165{bottom:366.786662pt;}
.yb1{bottom:368.066650pt;}
.y57{bottom:368.386678pt;}
.y7d{bottom:371.106649pt;}
.yc7{bottom:372.386678pt;}
.y1b3{bottom:378.626668pt;}
.y210{bottom:383.106649pt;}
.y182{bottom:383.426676pt;}
.y1f3{bottom:386.146647pt;}
.yb0{bottom:387.106649pt;}
.y164{bottom:387.266683pt;}
.y17{bottom:388.066650pt;}
.y7c{bottom:389.986654pt;}
.yc6{bottom:391.426676pt;}
.y1a2{bottom:393.986654pt;}
.y13b{bottom:394.306681pt;}
.y56{bottom:398.306681pt;}
.y3b{bottom:401.666667pt;}
.y20f{bottom:401.986654pt;}
.y181{bottom:404.546672pt;}
.y163{bottom:407.906657pt;}
.yed{bottom:408.066650pt;}
.y1b0{bottom:409.346680pt;}
.yc5{bottom:410.466675pt;}
.y63{bottom:413.186686pt;}
.y13a{bottom:413.346680pt;}
.yaf{bottom:416.706665pt;}
.y16{bottom:417.986654pt;}
.y20e{bottom:421.026652pt;}
.y1af{bottom:424.546672pt;}
.y7b{bottom:426.466675pt;}
.y1f2{bottom:427.746663pt;}
.y162{bottom:428.546672pt;}
.yc4{bottom:429.506673pt;}
.y139{bottom:433.026652pt;}
.yae{bottom:435.746663pt;}
.y1ae{bottom:439.906657pt;}
.y7a{bottom:445.506673pt;}
.y5f{bottom:446.466675pt;}
.y1f1{bottom:446.786662pt;}
.y15{bottom:448.066650pt;}
.yc3{bottom:448.386678pt;}
.y161{bottom:449.186686pt;}
.y38{bottom:450.306681pt;}
.yad{bottom:454.786662pt;}
.y1ad{bottom:455.266683pt;}
.y79{bottom:464.386678pt;}
.y1f0{bottom:465.666667pt;}
.y20d{bottom:466.946655pt;}
.yc2{bottom:467.426676pt;}
.y160{bottom:469.666667pt;}
.y1ac{bottom:470.626668pt;}
.y138{bottom:470.786662pt;}
.yac{bottom:475.746663pt;}
.y14{bottom:477.986654pt;}
.y5d{bottom:479.586670pt;}
.y78{bottom:483.426676pt;}
.y1ef{bottom:484.706665pt;}
.y1ab{bottom:485.986654pt;}
.y137{bottom:489.826660pt;}
.y15f{bottom:490.306681pt;}
.y1e{bottom:491.266683pt;}
.y20c{bottom:493.986654pt;}
.y1a9{bottom:501.346680pt;}
.y36{bottom:502.013346pt;}
.y77{bottom:502.493327pt;}
.y1ee{bottom:503.773315pt;}
.y13{bottom:507.933350pt;}
.yc1{bottom:508.413330pt;}
.y136{bottom:510.813314pt;}
.y15e{bottom:510.973348pt;}
.y20b{bottom:513.053345pt;}
.y1a8{bottom:516.733317pt;}
.yab{bottom:517.373332pt;}
.y76{bottom:521.373332pt;}
.y1ed{bottom:522.813314pt;}
.y15a{bottom:531.613322pt;}
.y1a7{bottom:532.093343pt;}
.y55{bottom:532.253337pt;}
.ye5{bottom:534.333333pt;}
.yaa{bottom:536.413330pt;}
.y12{bottom:537.373332pt;}
.y75{bottom:540.253337pt;}
.y1ec{bottom:541.693319pt;}
.y1a6{bottom:547.453328pt;}
.y35{bottom:550.653320pt;}
.y54{bottom:551.133341pt;}
.y15c{bottom:552.093343pt;}
.y135{bottom:552.413330pt;}
.ya9{bottom:555.453328pt;}
.y20a{bottom:558.973348pt;}
.y120{bottom:559.293335pt;}
.y1eb{bottom:560.733317pt;}
.y1a5{bottom:562.653320pt;}
.y74{bottom:566.013346pt;}
.y133{bottom:567.453328pt;}
.y11{bottom:567.613322pt;}
.y154{bottom:572.733317pt;}
.ya8{bottom:574.333333pt;}
.y1a4{bottom:578.013346pt;}
.y11f{bottom:578.333333pt;}
.y1ea{bottom:579.773315pt;}
.y53{bottom:587.933350pt;}
.y132{bottom:590.813314pt;}
.ya7{bottom:593.373332pt;}
.y73{bottom:595.613322pt;}
.y11e{bottom:597.373332pt;}
.y10{bottom:597.533325pt;}
.y1e9{bottom:598.653320pt;}
.y34{bottom:600.573324pt;}
.y209{bottom:605.053345pt;}
.y19e{bottom:608.733317pt;}
.yde{bottom:611.133341pt;}
.y131{bottom:614.013346pt;}
.y11d{bottom:616.253337pt;}
.y1e8{bottom:617.693319pt;}
.y52{bottom:618.013346pt;}
.y72{bottom:621.373332pt;}
.ya6{bottom:622.973348pt;}
.y208{bottom:623.933350pt;}
.y1a0{bottom:624.093343pt;}
.yf{bottom:627.453328pt;}
.y50{bottom:632.893351pt;}
.y158{bottom:634.493327pt;}
.y11c{bottom:635.293335pt;}
.y1e7{bottom:636.733317pt;}
.y130{bottom:637.373332pt;}
.y19f{bottom:639.453328pt;}
.ya5{bottom:642.013346pt;}
.y207{bottom:642.973348pt;}
.y71{bottom:646.973348pt;}
.y32{bottom:650.493327pt;}
.y19c{bottom:654.813314pt;}
.y11b{bottom:654.973348pt;}
.y156{bottom:655.133341pt;}
.y4e{bottom:655.453328pt;}
.ye{bottom:657.373332pt;}
.y105{bottom:657.853353pt;}
.y12e{bottom:660.573324pt;}
.ya4{bottom:661.053345pt;}
.y1e6{bottom:666.333333pt;}
.y1d0{bottom:667.933350pt;}
.y206{bottom:670.013346pt;}
.y70{bottom:672.733317pt;}
.y145{bottom:675.773315pt;}
.y104{bottom:676.893351pt;}
.y4c{bottom:679.453328pt;}
.ya3{bottom:680.093343pt;}
.y12c{bottom:683.773356pt;}
.y1e5{bottom:685.373372pt;}
.y19b{bottom:686.013346pt;}
.y1cf{bottom:686.973307pt;}
.yd{bottom:687.453369pt;}
.ydb{bottom:688.093343pt;}
.y205{bottom:689.053304pt;}
.y227{bottom:690.013346pt;}
.y11a{bottom:694.493327pt;}
.y103{bottom:695.933350pt;}
.y153{bottom:696.413330pt;}
.y6f{bottom:698.333333pt;}
.ya2{bottom:698.973307pt;}
.y30{bottom:700.413330pt;}
.y1e4{bottom:704.413330pt;}
.y1ce{bottom:705.853353pt;}
.y12a{bottom:707.133301pt;}
.y118{bottom:712.413330pt;}
.y19a{bottom:713.053304pt;}
.y102{bottom:714.813314pt;}
.y204{bottom:715.933350pt;}
.y152{bottom:716.893311pt;}
.yc{bottom:717.373372pt;}
.y226{bottom:719.613363pt;}
.y1e3{bottom:723.293294pt;}
.y6e{bottom:723.933350pt;}
.y1cd{bottom:724.893311pt;}
.y91{bottom:726.173340pt;}
.y180{bottom:727.293294pt;}
.ya1{bottom:728.733317pt;}
.y117{bottom:730.333333pt;}
.y199{bottom:732.093343pt;}
.y101{bottom:733.853353pt;}
.y203{bottom:734.973307pt;}
.y4b{bottom:736.253337pt;}
.y1c{bottom:737.053304pt;}
.y151{bottom:737.533366pt;}
.y8f{bottom:740.093343pt;}
.y1e2{bottom:742.333333pt;}
.y1cc{bottom:743.933350pt;}
.y17f{bottom:746.173340pt;}
.yb{bottom:747.293294pt;}
.ya0{bottom:747.613363pt;}
.yda{bottom:748.253337pt;}
.y2e{bottom:749.053304pt;}
.y225{bottom:749.213298pt;}
.y6d{bottom:749.693359pt;}
.y198{bottom:751.133301pt;}
.y100{bottom:752.893311pt;}
.y202{bottom:754.053304pt;}
.y8e{bottom:757.733317pt;}
.y150{bottom:758.213298pt;}
.y1e1{bottom:761.413330pt;}
.y1cb{bottom:763.013346pt;}
.y17e{bottom:765.253337pt;}
.y115{bottom:766.213298pt;}
.y9f{bottom:766.693359pt;}
.y128{bottom:769.573324pt;}
.y197{bottom:770.213298pt;}
.yff{bottom:771.813314pt;}
.y4a{bottom:773.253337pt;}
.y6c{bottom:775.333333pt;}
.ya{bottom:777.253337pt;}
.y14e{bottom:778.853353pt;}
.y224{bottom:779.013346pt;}
.y1e0{bottom:780.293294pt;}
.y201{bottom:780.933350pt;}
.y114{bottom:784.133301pt;}
.y17d{bottom:784.293294pt;}
.y9e{bottom:785.733317pt;}
.y127{bottom:786.053304pt;}
.y196{bottom:789.093343pt;}
.yfe{bottom:790.853353pt;}
.y1ca{bottom:792.613363pt;}
.y8d{bottom:792.933350pt;}
.yd9{bottom:794.373372pt;}
.y2c{bottom:797.733317pt;}
.y14d{bottom:799.333333pt;}
.y200{bottom:799.973307pt;}
.y6b{bottom:800.933350pt;}
.y113{bottom:802.053304pt;}
.y49{bottom:803.173340pt;}
.y17c{bottom:803.333333pt;}
.y9d{bottom:804.613363pt;}
.y126{bottom:804.933350pt;}
.y97{bottom:806.693359pt;}
.y9{bottom:807.333333pt;}
.y195{bottom:808.133301pt;}
.y223{bottom:808.613363pt;}
.yfd{bottom:809.893311pt;}
.y8c{bottom:810.533366pt;}
.y1c9{bottom:811.653320pt;}
.yd8{bottom:813.253337pt;}
.y48{bottom:818.053304pt;}
.y1df{bottom:818.373372pt;}
.y111{bottom:819.973307pt;}
.y17b{bottom:822.213298pt;}
.y9c{bottom:823.653320pt;}
.y125{bottom:823.973307pt;}
.y96{bottom:825.733317pt;}
.y6a{bottom:826.693359pt;}
.y1ff{bottom:827.013346pt;}
.y194{bottom:827.173340pt;}
.y8b{bottom:828.133301pt;}
.yfc{bottom:828.933350pt;}
.y1c8{bottom:830.533366pt;}
.yd7{bottom:832.293294pt;}
.y8{bottom:837.253337pt;}
.y1de{bottom:837.413330pt;}
.y222{bottom:838.373372pt;}
.y14c{bottom:840.613363pt;}
.y17a{bottom:841.253337pt;}
.y46{bottom:842.213298pt;}
.y124{bottom:843.013346pt;}
.y95{bottom:844.773356pt;}
.y8a{bottom:845.733317pt;}
.y1fe{bottom:845.893311pt;}
.y193{bottom:846.053304pt;}
.y27{bottom:847.813314pt;}
.y1c7{bottom:849.573324pt;}
.yd6{bottom:851.333333pt;}
.y69{bottom:852.293294pt;}
.y9b{bottom:853.413330pt;}
.y110{bottom:853.893311pt;}
.y1dd{bottom:856.293294pt;}
.y179{bottom:860.293294pt;}
.y14a{bottom:861.253337pt;}
.y123{bottom:861.893311pt;}
.y88{bottom:863.333333pt;}
.y94{bottom:863.653320pt;}
.y192{bottom:865.413330pt;}
.y43{bottom:866.373372pt;}
.yfb{bottom:866.853353pt;}
.y7{bottom:867.173340pt;}
.y221{bottom:867.973307pt;}
.yd5{bottom:870.373372pt;}
.y9a{bottom:872.293294pt;}
.y1fd{bottom:872.933350pt;}
.y1dc{bottom:877.253337pt;}
.y68{bottom:878.053304pt;}
.y178{bottom:879.173340pt;}
.y87{bottom:880.933350pt;}
.y149{bottom:881.733317pt;}
.y93{bottom:882.693359pt;}
.yfa{bottom:886.533366pt;}
.yd4{bottom:889.253337pt;}
.y99{bottom:891.333333pt;}
.y41{bottom:891.973307pt;}
.y191{bottom:896.453369pt;}
.y6{bottom:897.093343pt;}
.y220{bottom:897.573324pt;}
.y177{bottom:898.213298pt;}
.y85{bottom:898.533366pt;}
.y10f{bottom:899.973307pt;}
.y92{bottom:901.733317pt;}
.y147{bottom:902.373372pt;}
.y67{bottom:903.653320pt;}
.y98{bottom:910.373372pt;}
.y190{bottom:915.493327pt;}
.y176{bottom:917.253337pt;}
.yc0{bottom:919.013346pt;}
.y143{bottom:923.013346pt;}
.y5{bottom:927.173340pt;}
.y21f{bottom:927.333333pt;}
.y66{bottom:929.253337pt;}
.y40{bottom:931.333333pt;}
.y18f{bottom:934.533366pt;}
.y175{bottom:936.293294pt;}
.ybf{bottom:937.893311pt;}
.y3f{bottom:950.213298pt;}
.y18e{bottom:954.213298pt;}
.y174{bottom:955.493327pt;}
.ybe{bottom:956.933350pt;}
.y4{bottom:957.093343pt;}
.y142{bottom:959.493327pt;}
.y1{bottom:1038.239990pt;}
.y23{bottom:1060.959961pt;}
.y22{bottom:1066.932533pt;}
.y21d{bottom:1108.159993pt;}
.h49{height:14.560000pt;}
.h4d{height:14.592000pt;}
.h44{height:14.720000pt;}
.h4a{height:14.752000pt;}
.h32{height:17.280000pt;}
.h34{height:17.312000pt;}
.h22{height:17.600000pt;}
.h24{height:17.632000pt;}
.h3e{height:19.840000pt;}
.h3c{height:20.000000pt;}
.h3f{height:20.032000pt;}
.h1d{height:21.920000pt;}
.h1b{height:22.079999pt;}
.h37{height:22.560000pt;}
.h38{height:22.720000pt;}
.h15{height:23.360000pt;}
.h1a{height:23.519999pt;}
.h17{height:24.959999pt;}
.h1f{height:27.712000pt;}
.h35{height:30.792960pt;}
.h20{height:32.480000pt;}
.h45{height:37.465280pt;}
.hb{height:37.631250pt;}
.h26{height:39.264000pt;}
.h16{height:39.680640pt;}
.h41{height:40.480000pt;}
.h47{height:40.487040pt;}
.h28{height:41.686718pt;}
.h4{height:42.768000pt;}
.h27{height:43.519999pt;}
.h33{height:43.797440pt;}
.h6{height:43.983360pt;}
.h2a{height:45.048958pt;}
.h4b{height:45.279999pt;}
.h46{height:45.440002pt;}
.h19{height:46.533120pt;}
.h10{height:47.329920pt;}
.h3b{height:47.882812pt;}
.hf{height:48.000000pt;}
.h11{height:48.031998pt;}
.h23{height:48.546560pt;}
.h12{height:49.279999pt;}
.h36{height:49.352856pt;}
.h39{height:49.353019pt;}
.h1c{height:49.454720pt;}
.h13{height:51.039998pt;}
.h5{height:52.462080pt;}
.h18{height:54.817280pt;}
.h21{height:58.563750pt;}
.h1e{height:60.519362pt;}
.h3a{height:65.781915pt;}
.he{height:66.718080pt;}
.h7{height:67.232000pt;}
.h31{height:71.044468pt;}
.h14{height:71.330560pt;}
.h3{height:75.841920pt;}
.h2c{height:76.159999pt;}
.h29{height:76.320002pt;}
.h30{height:76.352000pt;}
.h43{height:81.760000pt;}
.h25{height:87.489947pt;}
.hc{height:91.200002pt;}
.hd{height:95.230080pt;}
.h40{height:102.400004pt;}
.ha{height:114.048000pt;}
.h2e{height:125.471995pt;}
.h2f{height:153.306671pt;}
.h8{height:158.304000pt;}
.h48{height:214.106669pt;}
.h9{height:226.906657pt;}
.h4c{height:229.626668pt;}
.h3d{height:246.586670pt;}
.h2d{height:279.386658pt;}
.h42{height:308.546672pt;}
.h2b{height:356.346680pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:84.511998pt;}
.wb{width:110.431997pt;}
.w11{width:121.792002pt;}
.w13{width:122.240000pt;}
.wf{width:141.946665pt;}
.w15{width:144.346670pt;}
.w14{width:169.466665pt;}
.w17{width:170.426666pt;}
.wd{width:174.746663pt;}
.we{width:174.906657pt;}
.wc{width:176.986674pt;}
.w1b{width:178.586670pt;}
.w1f{width:187.866659pt;}
.w18{width:196.346659pt;}
.w1d{width:197.306661pt;}
.w1a{width:211.866659pt;}
.w19{width:231.586670pt;}
.w1c{width:264.066671pt;}
.w16{width:273.026672pt;}
.w1e{width:273.346659pt;}
.w9{width:319.746663pt;}
.wa{width:319.906657pt;}
.w5{width:320.226664pt;}
.w6{width:320.386658pt;}
.w7{width:320.706665pt;}
.w8{width:320.866659pt;}
.w3{width:367.106649pt;}
.w4{width:425.053345pt;}
.w10{width:500.093343pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x21{left:8.640015pt;}
.x2a{left:9.600016pt;}
.x25{left:10.560018pt;}
.x1d{left:11.551997pt;}
.x16{left:12.639994pt;}
.x1c{left:13.791997pt;}
.x7{left:15.199992pt;}
.x24{left:16.351995pt;}
.x1f{left:17.760010pt;}
.x51{left:19.239990pt;}
.x4{left:20.799988pt;}
.x23{left:22.399984pt;}
.x29{left:23.840007pt;}
.x2d{left:24.800008pt;}
.x54{left:25.791997pt;}
.x2c{left:27.200012pt;}
.x14{left:28.192001pt;}
.x1e{left:29.631994pt;}
.x20{left:32.320007pt;}
.x2e{left:34.560018pt;}
.x58{left:36.960002pt;}
.x22{left:39.706665pt;}
.x8{left:40.639994pt;}
.x56{left:43.200033pt;}
.x5c{left:44.511998pt;}
.x49{left:45.600016pt;}
.x1b{left:50.919963pt;}
.x27{left:52.679972pt;}
.x46{left:54.751998pt;}
.x19{left:56.026652pt;}
.x50{left:57.480001pt;}
.x6{left:59.039998pt;}
.x28{left:60.986669pt;}
.x4a{left:63.706660pt;}
.x36{left:64.666662pt;}
.x26{left:65.786662pt;}
.x2b{left:67.386678pt;}
.x4c{left:69.960002pt;}
.x3a{left:71.040039pt;}
.x4b{left:72.519999pt;}
.x3d{left:73.440023pt;}
.x1{left:75.519987pt;}
.x38{left:77.280029pt;}
.x55{left:78.560018pt;}
.x39{left:80.000000pt;}
.x35{left:82.239990pt;}
.x4e{left:84.039998pt;}
.x37{left:85.279989pt;}
.x4d{left:87.399984pt;}
.x3b{left:88.479980pt;}
.xf{left:90.271991pt;}
.x59{left:91.880005pt;}
.x45{left:92.800008pt;}
.x43{left:94.239990pt;}
.x5d{left:95.720011pt;}
.x5a{left:96.680013pt;}
.x44{left:98.079997pt;}
.x4f{left:99.559977pt;}
.x3c{left:100.826664pt;}
.x41{left:101.946660pt;}
.x10{left:104.831988pt;}
.x3e{left:106.906662pt;}
.x5e{left:108.680013pt;}
.x5b{left:111.880005pt;}
.x57{left:115.079997pt;}
.x52{left:118.431985pt;}
.x32{left:122.746668pt;}
.xc{left:187.386658pt;}
.x5{left:194.426676pt;}
.x40{left:197.146655pt;}
.x15{left:198.746663pt;}
.x11{left:217.466675pt;}
.x3{left:222.426676pt;}
.x31{left:226.426665pt;}
.x47{left:255.546672pt;}
.x13{left:273.506661pt;}
.x17{left:283.906657pt;}
.x42{left:308.546672pt;}
.x33{left:350.146647pt;}
.xd{left:365.026652pt;}
.x2f{left:389.826648pt;}
.xb{left:393.346668pt;}
.x2{left:396.866647pt;}
.x18{left:406.786662pt;}
.x48{left:520.253337pt;}
.x34{left:521.213338pt;}
.x53{left:529.693319pt;}
.xe{left:540.573324pt;}
.x1a{left:576.893351pt;}
.x9{left:600.316813pt;}
.x5f{left:709.093331pt;}
.x3f{left:714.693348pt;}
.x30{left:716.133289pt;}
.x12{left:717.413318pt;}
}




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