
    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_63ea8cdf1ccbaf6c60d0386c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3d459fdd965b9b53bdfd129f.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_15485e57c9027ecceddb1377.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9eb037be9bc1aa218ff7bae3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_e4d145288db8a4f5184ac3d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a7aebb566656ae07b0e3a9cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3b87fee3ec5014d75079ab3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_78e65e4f795fa17bb339e7bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_3616b59d18603c47d69f0da4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-62.784000px;}
.v3{vertical-align:-23.760000px;}
.v6{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:30.960000px;}
.v9{vertical-align:36.240000px;}
.va{vertical-align:51.840000px;}
.ve{vertical-align:59.760000px;}
.v5{vertical-align:62.100000px;}
.v8{vertical-align:65.520000px;}
.vf{vertical-align:70.440000px;}
.vb{vertical-align:109.020000px;}
.vc{vertical-align:129.360000px;}
.vd{vertical-align:190.380000px;}
.ls16{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.295800px;}
.lsd{letter-spacing:-0.262200px;}
.ls10{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.149760px;}
.ls13{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.325200px;}
.ls1a{letter-spacing:8.460000px;}
.ls1b{letter-spacing:10.476000px;}
.ls18{letter-spacing:12.720000px;}
.ls19{letter-spacing:12.744000px;}
.ls17{letter-spacing:14.760000px;}
.ls12{letter-spacing:28.749600px;}
.ls11{letter-spacing:28.800000px;}
.ls14{letter-spacing:254.556000px;}
.lsa{letter-spacing:551.784000px;}
.ls5{letter-spacing:845.705280px;}
.ls0{letter-spacing:845.885280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-66.240000px;}
.ws0{word-spacing:-46.962480px;}
.ws1{word-spacing:-46.637280px;}
.wsd{word-spacing:-26.621280px;}
.wsc{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.720120px;}
.ws7{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.wsa{word-spacing:-18.262320px;}
.ws25{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.ws9{word-spacing:-17.694720px;}
.ws1c{word-spacing:-15.174000px;}
.wse{word-spacing:-15.012000px;}
.ws26{word-spacing:-13.410720px;}
.ws8{word-spacing:-11.609280px;}
.wsb{word-spacing:-11.430480px;}
.ws27{word-spacing:-10.008000px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:67.566000px;}
.ws23{word-spacing:99.372000px;}
.ws22{word-spacing:114.492000px;}
.ws1e{word-spacing:119.052000px;}
.ws1d{word-spacing:119.112000px;}
.ws11{word-spacing:129.618000px;}
.ws21{word-spacing:129.672000px;}
.ws20{word-spacing:134.286000px;}
.ws1f{word-spacing:134.352000px;}
.ws16{word-spacing:149.184000px;}
.ws13{word-spacing:149.364000px;}
.ws17{word-spacing:149.688000px;}
.ws10{word-spacing:172.218000px;}
.wsf{word-spacing:172.338000px;}
.ws1b{word-spacing:178.452000px;}
.ws1a{word-spacing:178.572000px;}
.ws18{word-spacing:179.694000px;}
.ws19{word-spacing:193.572000px;}
.ws15{word-spacing:224.052000px;}
.ws12{word-spacing:434.532000px;}
.ws14{word-spacing:443.064000px;}
._6{margin-left:-18.100320px;}
._5{margin-left:-15.527040px;}
._c{margin-left:-14.184360px;}
._7{margin-left:-11.988960px;}
._4{margin-left:-10.086960px;}
._d{margin-left:-8.997480px;}
._3{margin-left:-7.932960px;}
._3d{margin-left:-6.701760px;}
._15{margin-left:-4.935840px;}
._2{margin-left:-3.081600px;}
._1{margin-left:-1.620000px;}
._0{width:1.677600px;}
._19{width:3.468960px;}
._12{width:4.636800px;}
._11{width:6.307680px;}
._17{width:7.683840px;}
._16{width:9.038880px;}
._1e{width:10.929600px;}
._1d{width:11.989440px;}
._b{width:13.145760px;}
._a{width:14.241600px;}
._10{width:15.428640px;}
._1a{width:16.667040px;}
._1c{width:19.540800px;}
._13{width:20.600640px;}
._14{width:21.617760px;}
._1b{width:22.720320px;}
._f{width:24.701760px;}
._e{width:25.767360px;}
._18{width:27.078240px;}
._30{width:28.247040px;}
._9{width:29.664000px;}
._8{width:31.728960px;}
._23{width:33.716160px;}
._3b{width:34.977120px;}
._2f{width:36.178080px;}
._21{width:37.444800px;}
._20{width:38.949120px;}
._38{width:41.923440px;}
._2e{width:44.712000px;}
._2d{width:46.067040px;}
._1f{width:59.114880px;}
._3c{width:61.901280px;}
._34{width:63.524160px;}
._35{width:64.614240px;}
._32{width:69.816960px;}
._31{width:70.912800px;}
._33{width:72.262080px;}
._3a{width:74.011680px;}
._39{width:75.232800px;}
._36{width:106.580160px;}
._37{width:108.001440px;}
._2c{width:116.682000px;}
._24{width:133.932000px;}
._22{width:156.723840px;}
._28{width:158.322000px;}
._27{width:178.896000px;}
._26{width:194.076000px;}
._2a{width:209.628000px;}
._25{width:239.172000px;}
._29{width:254.616000px;}
._2b{width:335.388000px;}
.fca{color:rgb(222,235,247);}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(0,32,96);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(31,78,121);}
.fc3{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsf{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs11{font-size:54.144000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fsc{font-size:84.240000px;}
.fsb{font-size:84.384000px;}
.fse{font-size:90.000000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.yf{bottom:4.896000px;}
.y1c8{bottom:12.420000px;}
.y12f{bottom:13.125000px;}
.y102{bottom:13.140000px;}
.y107{bottom:13.155000px;}
.y1dd{bottom:13.305000px;}
.y127{bottom:13.320000px;}
.y100{bottom:13.350000px;}
.y1d6{bottom:13.500000px;}
.y14{bottom:15.165000px;}
.y184{bottom:16.560000px;}
.y1c9{bottom:17.850000px;}
.y1a1{bottom:21.810000px;}
.y283{bottom:25.236000px;}
.y1bf{bottom:28.515000px;}
.y282{bottom:37.656000px;}
.y12e{bottom:41.565000px;}
.y10a{bottom:41.580000px;}
.y10c{bottom:41.595000px;}
.y105{bottom:41.760000px;}
.y281{bottom:50.076000px;}
.y180{bottom:54.795000px;}
.y2{bottom:56.700000px;}
.y1c0{bottom:62.430000px;}
.y280{bottom:64.656000px;}
.y19f{bottom:67.470000px;}
.y109{bottom:70.020000px;}
.y129{bottom:70.065000px;}
.y12b{bottom:70.185000px;}
.y12d{bottom:70.200000px;}
.y5f{bottom:71.496000px;}
.y27f{bottom:77.076000px;}
.y174{bottom:77.190000px;}
.y5e{bottom:87.696000px;}
.y27e{bottom:92.412000px;}
.y1c1{bottom:96.300000px;}
.y173{bottom:97.350000px;}
.y13{bottom:99.585000px;}
.y158{bottom:100.155000px;}
.y80{bottom:113.436000px;}
.y1e9{bottom:113.616000px;}
.y214{bottom:116.676000px;}
.y27d{bottom:117.252000px;}
.y161{bottom:117.285000px;}
.y172{bottom:117.465000px;}
.y157{bottom:118.875000px;}
.y1fc{bottom:119.556000px;}
.y1e3{bottom:120.456000px;}
.yfe{bottom:122.616000px;}
.ye{bottom:122.760000px;}
.y22a{bottom:125.316000px;}
.y125{bottom:125.496000px;}
.y15b{bottom:128.055000px;}
.ye2{bottom:129.996000px;}
.y152{bottom:130.176000px;}
.y1c2{bottom:130.215000px;}
.y160{bottom:135.825000px;}
.yc2{bottom:136.656000px;}
.y23f{bottom:137.376000px;}
.y171{bottom:137.595000px;}
.y143{bottom:138.276000px;}
.y24d{bottom:140.076000px;}
.y156{bottom:140.475000px;}
.y16d{bottom:141.696000px;}
.y7f{bottom:142.056000px;}
.y146{bottom:142.236000px;}
.y1ba{bottom:142.890000px;}
.y213{bottom:145.116000px;}
.y15a{bottom:146.775000px;}
.y1fb{bottom:147.996000px;}
.y199{bottom:148.785000px;}
.y5b{bottom:149.616000px;}
.y124{bottom:153.930000px;}
.y15f{bottom:154.545000px;}
.y27c{bottom:155.490000px;}
.y20d{bottom:155.550000px;}
.ya0{bottom:155.730000px;}
.y170{bottom:156.885000px;}
.ye1{bottom:158.430000px;}
.y151{bottom:158.610000px;}
.y155{bottom:159.225000px;}
.yd{bottom:159.870000px;}
.y1e2{bottom:160.950000px;}
.yfd{bottom:163.110000px;}
.y1c3{bottom:164.130000px;}
.y16f{bottom:164.670000px;}
.yc1{bottom:164.910000px;}
.y229{bottom:165.810000px;}
.y1b8{bottom:166.350000px;}
.y142{bottom:166.710000px;}
.y17f{bottom:166.785000px;}
.y27b{bottom:169.530000px;}
.y16c{bottom:169.950000px;}
.y7e{bottom:170.490000px;}
.ydc{bottom:170.670000px;}
.y212{bottom:173.550000px;}
.y15e{bottom:176.325000px;}
.y1fa{bottom:176.430000px;}
.y1bb{bottom:177.375000px;}
.y1a0{bottom:177.630000px;}
.y23e{bottom:177.870000px;}
.y24c{bottom:180.570000px;}
.y154{bottom:181.005000px;}
.y176{bottom:181.980000px;}
.y195{bottom:182.730000px;}
.y27a{bottom:183.390000px;}
.yf2{bottom:183.990000px;}
.y9f{bottom:184.170000px;}
.y150{bottom:187.050000px;}
.y1e1{bottom:189.210000px;}
.y5a{bottom:190.110000px;}
.yc{bottom:190.830000px;}
.y19a{bottom:191.670000px;}
.yc0{bottom:193.350000px;}
.y123{bottom:194.610000px;}
.y1b7{bottom:194.970000px;}
.y141{bottom:195.150000px;}
.y175{bottom:195.990000px;}
.y1c4{bottom:198.000000px;}
.y16b{bottom:198.390000px;}
.y7d{bottom:198.930000px;}
.ycd{bottom:199.110000px;}
.y279{bottom:199.770000px;}
.y1bc{bottom:199.980000px;}
.y211{bottom:201.990000px;}
.yfc{bottom:203.610000px;}
.y1f9{bottom:204.870000px;}
.y228{bottom:206.310000px;}
.y163{bottom:206.820000px;}
.y15d{bottom:210.570000px;}
.y1e8{bottom:210.990000px;}
.yf1{bottom:212.430000px;}
.y9e{bottom:212.790000px;}
.y278{bottom:213.630000px;}
.y177{bottom:215.205000px;}
.y14f{bottom:215.490000px;}
.y1e0{bottom:217.650000px;}
.y23d{bottom:218.370000px;}
.y24b{bottom:221.070000px;}
.ybf{bottom:221.790000px;}
.y122{bottom:222.870000px;}
.y1b6{bottom:223.410000px;}
.y140{bottom:223.590000px;}
.y16a{bottom:226.830000px;}
.y7c{bottom:227.370000px;}
.y277{bottom:230.010000px;}
.y59{bottom:230.430000px;}
.yb{bottom:230.970000px;}
.y162{bottom:231.660000px;}
.y1c5{bottom:231.915000px;}
.y1f8{bottom:233.310000px;}
.y19b{bottom:234.540000px;}
.y15c{bottom:235.410000px;}
.y3d{bottom:236.010000px;}
.y159{bottom:237.270000px;}
.y1e7{bottom:239.430000px;}
.yf0{bottom:240.870000px;}
.y276{bottom:243.900000px;}
.yfb{bottom:243.930000px;}
.y1bd{bottom:245.055000px;}
.y1df{bottom:246.090000px;}
.y227{bottom:246.810000px;}
.y178{bottom:248.430000px;}
.ybe{bottom:250.230000px;}
.y121{bottom:251.310000px;}
.y1b5{bottom:251.850000px;}
.y13f{bottom:252.030000px;}
.y9d{bottom:254.370000px;}
.y169{bottom:255.270000px;}
.ycc{bottom:255.810000px;}
.y14e{bottom:256.170000px;}
.y275{bottom:257.940000px;}
.y23c{bottom:258.690000px;}
.y58{bottom:258.870000px;}
.y193{bottom:259.410000px;}
.y24a{bottom:261.570000px;}
.y1f7{bottom:261.750000px;}
.y269{bottom:263.265000px;}
.y1c6{bottom:265.785000px;}
.y1e6{bottom:267.870000px;}
.y7b{bottom:268.050000px;}
.yef{bottom:269.310000px;}
.y25d{bottom:269.565000px;}
.ya{bottom:270.930000px;}
.y262{bottom:271.260000px;}
.y268{bottom:274.245000px;}
.y274{bottom:275.220000px;}
.y3c{bottom:276.510000px;}
.y19c{bottom:277.410000px;}
.ybd{bottom:278.670000px;}
.y196{bottom:278.715000px;}
.y25c{bottom:278.745000px;}
.y120{bottom:279.750000px;}
.y13e{bottom:280.470000px;}
.y179{bottom:281.670000px;}
.y1be{bottom:282.090000px;}
.y261{bottom:282.240000px;}
.y9c{bottom:282.810000px;}
.y168{bottom:283.710000px;}
.ycb{bottom:284.250000px;}
.yfa{bottom:284.430000px;}
.y267{bottom:285.045000px;}
.y1de{bottom:286.770000px;}
.y226{bottom:287.130000px;}
.y210{bottom:287.310000px;}
.y192{bottom:287.670000px;}
.y273{bottom:289.260000px;}
.y25b{bottom:289.725000px;}
.y1f6{bottom:290.190000px;}
.y1b4{bottom:292.530000px;}
.y260{bottom:293.040000px;}
.y7a{bottom:296.310000px;}
.y266{bottom:297.825000px;}
.yee{bottom:297.930000px;}
.y20c{bottom:298.110000px;}
.y25a{bottom:299.085000px;}
.y23b{bottom:299.190000px;}
.y57{bottom:299.370000px;}
.y1c7{bottom:299.700000px;}
.y249{bottom:302.070000px;}
.y1dc{bottom:302.625000px;}
.y272{bottom:303.120000px;}
.y197{bottom:305.280000px;}
.ybc{bottom:307.110000px;}
.y11f{bottom:308.190000px;}
.y265{bottom:308.625000px;}
.y259{bottom:309.885000px;}
.y9b{bottom:311.430000px;}
.y167{bottom:312.150000px;}
.ydb{bottom:312.690000px;}
.y14d{bottom:312.870000px;}
.y9{bottom:313.950000px;}
.y17a{bottom:314.895000px;}
.y20f{bottom:315.750000px;}
.y191{bottom:316.110000px;}
.y3b{bottom:317.010000px;}
.y1f5{bottom:318.810000px;}
.y19d{bottom:320.295000px;}
.y1b3{bottom:320.790000px;}
.y13d{bottom:321.150000px;}
.y26b{bottom:324.390000px;}
.y79{bottom:324.750000px;}
.yca{bottom:324.930000px;}
.y264{bottom:325.725000px;}
.y25f{bottom:325.950000px;}
.y1cb{bottom:326.340000px;}
.y198{bottom:327.315000px;}
.y56{bottom:327.675000px;}
.y153{bottom:328.320000px;}
.y1db{bottom:331.815000px;}
.ybb{bottom:335.595000px;}
.y263{bottom:336.525000px;}
.y11e{bottom:336.675000px;}
.y26a{bottom:336.810000px;}
.y25e{bottom:338.370000px;}
.yed{bottom:338.475000px;}
.y271{bottom:338.790000px;}
.y23a{bottom:339.735000px;}
.y248{bottom:342.435000px;}
.y20e{bottom:344.235000px;}
.y20b{bottom:344.415000px;}
.y190{bottom:344.595000px;}
.y1ca{bottom:345.240000px;}
.y1f4{bottom:347.295000px;}
.y17b{bottom:348.120000px;}
.y1b2{bottom:349.275000px;}
.y13c{bottom:349.455000px;}
.y14c{bottom:349.995000px;}
.y166{bottom:352.875000px;}
.y78{bottom:353.235000px;}
.yda{bottom:353.415000px;}
.y55{bottom:356.115000px;}
.y3a{bottom:357.555000px;}
.y9a{bottom:357.915000px;}
.y1da{bottom:360.975000px;}
.y8{bottom:362.235000px;}
.y19e{bottom:363.165000px;}
.yba{bottom:364.215000px;}
.y11d{bottom:365.115000px;}
.yec{bottom:366.735000px;}
.y225{bottom:368.175000px;}
.y20a{bottom:372.855000px;}
.y1f3{bottom:375.735000px;}
.y1b1{bottom:377.715000px;}
.y13b{bottom:377.895000px;}
.y239{bottom:380.235000px;}
.y165{bottom:381.135000px;}
.y17c{bottom:381.345000px;}
.y77{bottom:381.675000px;}
.y247{bottom:382.935000px;}
.y54{bottom:384.735000px;}
.y18f{bottom:385.275000px;}
.y39{bottom:385.995000px;}
.y99{bottom:386.175000px;}
.y1d9{bottom:390.315000px;}
.yb9{bottom:392.655000px;}
.y11c{bottom:393.735000px;}
.yeb{bottom:395.355000px;}
.y209{bottom:401.295000px;}
.y1f2{bottom:404.175000px;}
.y13a{bottom:406.335000px;}
.y224{bottom:408.675000px;}
.y1a3{bottom:408.780000px;}
.y76{bottom:410.115000px;}
.y7{bottom:410.475000px;}
.y258{bottom:411.630000px;}
.y18e{bottom:413.535000px;}
.y17d{bottom:414.570000px;}
.y98{bottom:414.615000px;}
.y164{bottom:418.215000px;}
.y1b0{bottom:418.395000px;}
.y16e{bottom:419.220000px;}
.y1d8{bottom:419.475000px;}
.y238{bottom:420.555000px;}
.yb8{bottom:421.095000px;}
.yc9{bottom:422.355000px;}
.y257{bottom:422.610000px;}
.y246{bottom:423.435000px;}
.y4{bottom:423.510000px;}
.yea{bottom:423.795000px;}
.y53{bottom:425.235000px;}
.y1a2{bottom:427.680000px;}
.y270{bottom:429.405000px;}
.y208{bottom:429.735000px;}
.y38{bottom:432.435000px;}
.y1f1{bottom:432.615000px;}
.y256{bottom:433.410000px;}
.y11b{bottom:434.235000px;}
.y139{bottom:434.955000px;}
.y75{bottom:438.555000px;}
.y18d{bottom:441.975000px;}
.y97{bottom:443.055000px;}
.y26e{bottom:444.210000px;}
.y1af{bottom:446.655000px;}
.y17e{bottom:447.810000px;}
.y1d7{bottom:448.635000px;}
.y223{bottom:449.175000px;}
.yb7{bottom:449.535000px;}
.yc8{bottom:450.615000px;}
.y26f{bottom:451.005000px;}
.y52{bottom:453.495000px;}
.y255{bottom:455.070000px;}
.y207{bottom:458.175000px;}
.y6{bottom:458.895000px;}
.y237{bottom:461.055000px;}
.y11a{bottom:462.495000px;}
.y245{bottom:463.935000px;}
.ye9{bottom:464.295000px;}
.y26d{bottom:465.810000px;}
.yd9{bottom:466.995000px;}
.y254{bottom:467.490000px;}
.y37{bottom:468.435000px;}
.y18c{bottom:470.415000px;}
.y96{bottom:471.495000px;}
.y1f0{bottom:473.295000px;}
.y1ae{bottom:475.095000px;}
.y183{bottom:475.275000px;}
.y138{bottom:475.455000px;}
.y1d5{bottom:477.795000px;}
.yc7{bottom:479.055000px;}
.y74{bottom:479.235000px;}
.y51{bottom:481.935000px;}
.y206{bottom:486.615000px;}
.y222{bottom:489.495000px;}
.yb6{bottom:490.215000px;}
.ye8{bottom:492.735000px;}
.yf9{bottom:495.615000px;}
.y182{bottom:499.395000px;}
.y95{bottom:499.935000px;}
.y1ef{bottom:501.555000px;}
.y119{bottom:503.175000px;}
.y1ad{bottom:503.535000px;}
.y137{bottom:503.715000px;}
.y244{bottom:504.255000px;}
.y36{bottom:504.435000px;}
.y5{bottom:507.135000px;}
.y73{bottom:507.495000px;}
.yd8{bottom:507.675000px;}
.y50{bottom:510.375000px;}
.y18b{bottom:511.095000px;}
.y205{bottom:515.055000px;}
.yb5{bottom:518.655000px;}
.ye7{bottom:521.175000px;}
.y181{bottom:523.725000px;}
.yf8{bottom:524.055000px;}
.y94{bottom:528.375000px;}
.y221{bottom:529.995000px;}
.y1ee{bottom:530.175000px;}
.y118{bottom:531.435000px;}
.y136{bottom:532.335000px;}
.y72{bottom:535.935000px;}
.y1d4{bottom:536.295000px;}
.y4f{bottom:539.175000px;}
.y18a{bottom:539.355000px;}
.y35{bottom:540.255000px;}
.y236{bottom:542.055000px;}
.y204{bottom:543.495000px;}
.y1ac{bottom:544.215000px;}
.y243{bottom:544.755000px;}
.ye6{bottom:549.615000px;}
.yf7{bottom:552.495000px;}
.y93{bottom:556.995000px;}
.y117{bottom:559.875000px;}
.y135{bottom:560.775000px;}
.y71{bottom:564.375000px;}
.y145{bottom:564.555000px;}
.yb4{bottom:565.095000px;}
.y1d3{bottom:565.455000px;}
.y189{bottom:567.795000px;}
.y23{bottom:569.055000px;}
.y220{bottom:570.495000px;}
.y203{bottom:571.935000px;}
.y1ab{bottom:572.475000px;}
.y34{bottom:576.255000px;}
.y1ed{bottom:576.615000px;}
.y4e{bottom:579.495000px;}
.yf6{bottom:580.935000px;}
.y235{bottom:582.555000px;}
.y242{bottom:585.255000px;}
.y116{bottom:588.495000px;}
.y134{bottom:589.215000px;}
.ye5{bottom:590.295000px;}
.y12{bottom:592.620000px;}
.y70{bottom:592.995000px;}
.yb3{bottom:593.355000px;}
.y1d2{bottom:594.825000px;}
.y188{bottom:596.265000px;}
.y92{bottom:597.525000px;}
.y202{bottom:600.405000px;}
.y1aa{bottom:600.945000px;}
.y1ec{bottom:604.905000px;}
.y4d{bottom:607.785000px;}
.y22{bottom:609.405000px;}
.y21f{bottom:611.025000px;}
.y33{bottom:612.285000px;}
.y115{bottom:616.965000px;}
.y133{bottom:617.685000px;}
.ye4{bottom:618.585000px;}
.y6f{bottom:621.465000px;}
.yb2{bottom:621.825000px;}
.y234{bottom:622.905000px;}
.y1d1{bottom:623.985000px;}
.y241{bottom:625.785000px;}
.y201{bottom:629.025000px;}
.y1a9{bottom:629.385000px;}
.y1eb{bottom:633.345000px;}
.yc6{bottom:633.525000px;}
.y4c{bottom:636.585000px;}
.y187{bottom:636.945000px;}
.y91{bottom:638.025000px;}
.y114{bottom:645.405000px;}
.y32{bottom:648.285000px;}
.y21{bottom:649.905000px;}
.yf5{bottom:650.085000px;}
.yb1{bottom:650.265000px;}
.y21e{bottom:651.345000px;}
.ye3{bottom:655.485000px;}
.y200{bottom:657.465000px;}
.y1a8{bottom:657.825000px;}
.y132{bottom:658.365000px;}
.yc5{bottom:661.785000px;}
.y1e5{bottom:661.965000px;}
.y233{bottom:663.405000px;}
.y186{bottom:665.205000px;}
.y3{bottom:666.180000px;}
.y90{bottom:666.285000px;}
.y31{bottom:676.545000px;}
.y4b{bottom:676.905000px;}
.yd7{bottom:678.345000px;}
.y1d0{bottom:678.525000px;}
.yb0{bottom:679.965000px;}
.y1ff{bottom:685.905000px;}
.y113{bottom:686.085000px;}
.y1a7{bottom:686.445000px;}
.y131{bottom:686.625000px;}
.y20{bottom:690.405000px;}
.y6e{bottom:690.585000px;}
.y21d{bottom:691.845000px;}
.y8f{bottom:694.725000px;}
.y194{bottom:702.180000px;}
.y185{bottom:702.285000px;}
.y130{bottom:702.645000px;}
.y240{bottom:703.005000px;}
.y232{bottom:703.905000px;}
.y4a{bottom:705.165000px;}
.yd6{bottom:706.785000px;}
.yaf{bottom:708.405000px;}
.y30{bottom:712.725000px;}
.y112{bottom:714.345000px;}
.y1a6{bottom:717.765000px;}
.y6d{bottom:718.845000px;}
.ye0{bottom:719.025000px;}
.y8e{bottom:723.525000px;}
.y1f{bottom:730.725000px;}
.y12c{bottom:731.805000px;}
.y12a{bottom:731.820000px;}
.y21c{bottom:732.345000px;}
.y49{bottom:733.965000px;}
.yd5{bottom:735.225000px;}
.yae{bottom:736.845000px;}
.y111{bottom:742.785000px;}
.y231{bottom:744.405000px;}
.y1a5{bottom:746.205000px;}
.y6c{bottom:747.285000px;}
.y2f{bottom:748.545000px;}
.y1cf{bottom:763.665000px;}
.yad{bottom:765.285000px;}
.y8d{bottom:769.965000px;}
.y26c{bottom:771.015000px;}
.y1e{bottom:771.225000px;}
.y21b{bottom:772.845000px;}
.y48{bottom:774.285000px;}
.ydf{bottom:775.725000px;}
.yd4{bottom:775.905000px;}
.y2e{bottom:776.805000px;}
.y1a4{bottom:783.285000px;}
.y1b9{bottom:784.620000px;}
.y230{bottom:784.725000px;}
.y6b{bottom:787.965000px;}
.y1ce{bottom:792.105000px;}
.yac{bottom:794.805000px;}
.y8c{bottom:798.225000px;}
.y110{bottom:799.665000px;}
.y253{bottom:801.975000px;}
.y47{bottom:802.545000px;}
.yd3{bottom:804.165000px;}
.y1d{bottom:811.725000px;}
.y2d{bottom:812.985000px;}
.y21a{bottom:813.345000px;}
.y6a{bottom:816.225000px;}
.y1ea{bottom:816.405000px;}
.y128{bottom:818.025000px;}
.yab{bottom:823.245000px;}
.y22f{bottom:825.225000px;}
.y8b{bottom:826.665000px;}
.y1fe{bottom:828.105000px;}
.y46{bottom:831.345000px;}
.yd2{bottom:832.605000px;}
.y1cd{bottom:832.785000px;}
.y10f{bottom:840.345000px;}
.y2c{bottom:841.245000px;}
.y69{bottom:844.665000px;}
.y1e4{bottom:844.845000px;}
.y28b{bottom:851.145000px;}
.yaa{bottom:851.685000px;}
.y1c{bottom:852.225000px;}
.y219{bottom:853.665000px;}
.y8a{bottom:855.105000px;}
.y1fd{bottom:856.545000px;}
.y14b{bottom:856.725000px;}
.yd1{bottom:861.045000px;}
.y28a{bottom:863.565000px;}
.y22e{bottom:865.770000px;}
.y45{bottom:871.710000px;}
.y68{bottom:873.150000px;}
.y1cc{bottom:873.330000px;}
.y289{bottom:875.985000px;}
.y2b{bottom:877.470000px;}
.ya9{bottom:880.170000px;}
.y10e{bottom:880.890000px;}
.y89{bottom:883.590000px;}
.y14a{bottom:885.210000px;}
.y288{bottom:888.405000px;}
.yde{bottom:889.530000px;}
.y1b{bottom:892.950000px;}
.y218{bottom:894.210000px;}
.y44{bottom:899.970000px;}
.y287{bottom:900.825000px;}
.y67{bottom:901.590000px;}
.yd0{bottom:901.770000px;}
.y126{bottom:904.110000px;}
.y22d{bottom:906.270000px;}
.ya8{bottom:908.790000px;}
.y10d{bottom:909.150000px;}
.y88{bottom:912.030000px;}
.y286{bottom:913.245000px;}
.y2a{bottom:913.470000px;}
.y149{bottom:913.650000px;}
.yf4{bottom:917.970000px;}
.y10b{bottom:925.155000px;}
.y108{bottom:925.170000px;}
.y285{bottom:925.665000px;}
.y43{bottom:928.770000px;}
.y66{bottom:930.030000px;}
.ydd{bottom:930.210000px;}
.y1a{bottom:933.270000px;}
.y217{bottom:934.710000px;}
.y87{bottom:940.830000px;}
.y148{bottom:942.090000px;}
.y22c{bottom:946.770000px;}
.y29{bottom:949.470000px;}
.y28d{bottom:950.190000px;}
.ya7{bottom:950.550000px;}
.y65{bottom:958.470000px;}
.yf3{bottom:958.650000px;}
.y284{bottom:958.755000px;}
.y28c{bottom:967.290000px;}
.y42{bottom:969.090000px;}
.y147{bottom:970.530000px;}
.yc4{bottom:970.710000px;}
.y19{bottom:973.770000px;}
.y22b{bottom:975.030000px;}
.y216{bottom:975.210000px;}
.ya6{bottom:978.990000px;}
.y28{bottom:985.290000px;}
.ycf{bottom:986.910000px;}
.y86{bottom:987.090000px;}
.y41{bottom:997.530000px;}
.yc3{bottom:998.970000px;}
.y64{bottom:999.150000px;}
.y106{bottom:1011.195000px;}
.y104{bottom:1011.210000px;}
.y252{bottom:1013.865000px;}
.y18{bottom:1014.270000px;}
.y85{bottom:1015.350000px;}
.y215{bottom:1015.530000px;}
.y27{bottom:1021.290000px;}
.ya5{bottom:1025.430000px;}
.y63{bottom:1027.410000px;}
.y40{bottom:1038.030000px;}
.y251{bottom:1042.665000px;}
.y84{bottom:1043.970000px;}
.ya4{bottom:1053.690000px;}
.y17{bottom:1054.770000px;}
.y62{bottom:1055.850000px;}
.y144{bottom:1056.030000px;}
.y26{bottom:1057.290000px;}
.y3f{bottom:1066.290000px;}
.y103{bottom:1068.990000px;}
.y250{bottom:1072.230000px;}
.y83{bottom:1072.410000px;}
.ya3{bottom:1082.130000px;}
.y61{bottom:1084.290000px;}
.yce{bottom:1084.470000px;}
.y25{bottom:1094.550000px;}
.y3e{bottom:1094.910000px;}
.y16{bottom:1095.090000px;}
.y101{bottom:1098.150000px;}
.y11{bottom:1100.850000px;}
.y24f{bottom:1104.630000px;}
.ya2{bottom:1111.650000px;}
.y60{bottom:1112.730000px;}
.y82{bottom:1112.910000px;}
.y15{bottom:1123.350000px;}
.y24{bottom:1123.530000px;}
.yff{bottom:1127.310000px;}
.y24e{bottom:1137.030000px;}
.ya1{bottom:1140.300000px;}
.y81{bottom:1141.380000px;}
.y10{bottom:1141.560000px;}
.y5d{bottom:1181.700000px;}
.y1{bottom:1194.480000px;}
.y5c{bottom:1197.180000px;}
.he{height:28.425000px;}
.h19{height:28.440000px;}
.h2d{height:28.461000px;}
.hd{height:28.470000px;}
.h2c{height:28.605000px;}
.h32{height:37.546875px;}
.h33{height:43.554375px;}
.ha{height:50.229844px;}
.h31{height:50.312812px;}
.hb{height:56.320312px;}
.h34{height:56.470500px;}
.hf{height:57.045000px;}
.h10{height:57.051000px;}
.h11{height:57.060000px;}
.hc{height:59.383125px;}
.h23{height:62.327813px;}
.h2{height:69.086250px;}
.h1b{height:75.093750px;}
.h1c{height:75.243937px;}
.h12{height:85.305000px;}
.h13{height:85.311000px;}
.h14{height:85.320000px;}
.h15{height:85.342500px;}
.h16{height:85.485000px;}
.h17{height:85.495500px;}
.h18{height:85.500000px;}
.h1f{height:87.280312px;}
.h21{height:87.460312px;}
.h25{height:87.859687px;}
.h24{height:88.009875px;}
.h30{height:93.867188px;}
.h1d{height:99.874688px;}
.h4{height:109.195312px;}
.h7{height:112.640625px;}
.h2f{height:112.790813px;}
.h29{height:116.080313px;}
.h20{height:118.420312px;}
.h2b{height:125.980312px;}
.h2a{height:126.760313px;}
.h9{height:138.825000px;}
.h22{height:158.080313px;}
.h5{height:174.968437px;}
.h6{height:175.118625px;}
.h27{height:246.700313px;}
.h28{height:372.060000px;}
.h26{height:454.500000px;}
.h3{height:457.560000px;}
.h1a{height:503.280000px;}
.h1e{height:554.580000px;}
.h8{height:777.420000px;}
.h2e{height:1170.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:158.415000px;}
.w4{width:158.781000px;}
.wb{width:232.761000px;}
.w9{width:233.121000px;}
.w15{width:317.760000px;}
.w14{width:317.766000px;}
.w12{width:318.126000px;}
.w13{width:318.300000px;}
.wc{width:392.865000px;}
.wd{width:392.880000px;}
.wa{width:393.225000px;}
.w7{width:467.205000px;}
.w8{width:467.220000px;}
.w5{width:467.565000px;}
.w3{width:626.715000px;}
.w11{width:637.920000px;}
.w10{width:643.500000px;}
.wf{width:664.920000px;}
.w2{width:808.560000px;}
.w17{width:809.999988px;}
.w16{width:810.000000px;}
.we{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.731000px;}
.x41{left:10.799988px;}
.x42{left:13.787988px;}
.xb{left:23.925000px;}
.x2b{left:32.970000px;}
.x35{left:34.410000px;}
.x46{left:36.035988px;}
.x29{left:39.810000px;}
.x52{left:41.507988px;}
.x47{left:42.875988px;}
.x3d{left:48.165000px;}
.x48{left:52.199988px;}
.x2{left:53.640000px;}
.x34{left:61.380000px;}
.x33{left:68.910000px;}
.x3c{left:70.710000px;}
.x9{left:77.976000px;}
.x3f{left:79.635000px;}
.x3{left:81.036000px;}
.x5{left:83.016000px;}
.x2f{left:91.470000px;}
.x38{left:93.165000px;}
.x7{left:97.056000px;}
.x3e{left:100.185000px;}
.x1{left:127.656000px;}
.xc{left:131.250000px;}
.x13{left:145.476000px;}
.x49{left:147.455988px;}
.x15{left:154.650000px;}
.x1c{left:157.604987px;}
.x40{left:160.815000px;}
.x6{left:170.490000px;}
.x16{left:181.650000px;}
.x1e{left:188.249987px;}
.x1d{left:195.449987px;}
.x2d{left:202.425000px;}
.x8{left:212.430000px;}
.x39{left:226.080000px;}
.x4{left:228.810000px;}
.x2a{left:233.490000px;}
.x4a{left:251.789988px;}
.x4c{left:257.324988px;}
.x4b{left:258.629988px;}
.x36{left:271.410000px;}
.x27{left:279.975000px;}
.x19{left:287.175000px;}
.x54{left:289.949988px;}
.x3a{left:292.575000px;}
.x55{left:296.789988px;}
.x53{left:349.589988px;}
.x28{left:358.665000px;}
.x1b{left:361.515000px;}
.x2c{left:369.690000px;}
.x4f{left:373.574988px;}
.x1f{left:375.554987px;}
.x50{left:380.414988px;}
.x20{left:389.054987px;}
.x21{left:421.844987px;}
.x10{left:429.765000px;}
.x1a{left:437.325000px;}
.x14{left:442.005000px;}
.x30{left:447.150000px;}
.xe{left:457.305000px;}
.xd{left:466.305000px;}
.x11{left:470.985000px;}
.x4d{left:481.784988px;}
.x31{left:507.060000px;}
.x4e{left:511.634988px;}
.xa{left:516.525000px;}
.x51{left:535.214988px;}
.x58{left:545.219988px;}
.x59{left:552.059988px;}
.x3b{left:554.685000px;}
.x32{left:567.000000px;}
.x22{left:579.134987px;}
.x56{left:590.654988px;}
.x23{left:592.634987px;}
.x25{left:595.544987px;}
.x57{left:610.274988px;}
.x24{left:622.184987px;}
.x45{left:631.154988px;}
.x43{left:650.669988px;}
.x44{left:653.909988px;}
.x12{left:660.930000px;}
.xf{left:765.540000px;}
.x37{left:766.800000px;}
.x2e{left:771.300000px;}
.x26{left:793.800000px;}
.x17{left:836.460000px;}
@media print{
.v1{vertical-align:-55.808000pt;}
.v3{vertical-align:-21.120000pt;}
.v6{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:27.520000pt;}
.v9{vertical-align:32.213333pt;}
.va{vertical-align:46.080000pt;}
.ve{vertical-align:53.120000pt;}
.v5{vertical-align:55.200000pt;}
.v8{vertical-align:58.240000pt;}
.vf{vertical-align:62.613333pt;}
.vb{vertical-align:96.906667pt;}
.vc{vertical-align:114.986667pt;}
.vd{vertical-align:169.226667pt;}
.ls16{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.262933pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls10{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.133120pt;}
.ls13{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.289067pt;}
.ls1a{letter-spacing:7.520000pt;}
.ls1b{letter-spacing:9.312000pt;}
.ls18{letter-spacing:11.306667pt;}
.ls19{letter-spacing:11.328000pt;}
.ls17{letter-spacing:13.120000pt;}
.ls12{letter-spacing:25.555200pt;}
.ls11{letter-spacing:25.600000pt;}
.ls14{letter-spacing:226.272000pt;}
.lsa{letter-spacing:490.474667pt;}
.ls5{letter-spacing:751.738027pt;}
.ls0{letter-spacing:751.898027pt;}
.ws3{word-spacing:-58.880000pt;}
.ws0{word-spacing:-41.744427pt;}
.ws1{word-spacing:-41.455360pt;}
.wsd{word-spacing:-23.663360pt;}
.wsc{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.640107pt;}
.ws7{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.wsa{word-spacing:-16.233173pt;}
.ws25{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.ws9{word-spacing:-15.728640pt;}
.ws1c{word-spacing:-13.488000pt;}
.wse{word-spacing:-13.344000pt;}
.ws26{word-spacing:-11.920640pt;}
.ws8{word-spacing:-10.319360pt;}
.wsb{word-spacing:-10.160427pt;}
.ws27{word-spacing:-8.896000pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:60.058667pt;}
.ws23{word-spacing:88.330667pt;}
.ws22{word-spacing:101.770667pt;}
.ws1e{word-spacing:105.824000pt;}
.ws1d{word-spacing:105.877333pt;}
.ws11{word-spacing:115.216000pt;}
.ws21{word-spacing:115.264000pt;}
.ws20{word-spacing:119.365333pt;}
.ws1f{word-spacing:119.424000pt;}
.ws16{word-spacing:132.608000pt;}
.ws13{word-spacing:132.768000pt;}
.ws17{word-spacing:133.056000pt;}
.ws10{word-spacing:153.082667pt;}
.wsf{word-spacing:153.189333pt;}
.ws1b{word-spacing:158.624000pt;}
.ws1a{word-spacing:158.730667pt;}
.ws18{word-spacing:159.728000pt;}
.ws19{word-spacing:172.064000pt;}
.ws15{word-spacing:199.157333pt;}
.ws12{word-spacing:386.250667pt;}
.ws14{word-spacing:393.834667pt;}
._6{margin-left:-16.089173pt;}
._5{margin-left:-13.801813pt;}
._c{margin-left:-12.608320pt;}
._7{margin-left:-10.656853pt;}
._4{margin-left:-8.966187pt;}
._d{margin-left:-7.997760pt;}
._3{margin-left:-7.051520pt;}
._3d{margin-left:-5.957120pt;}
._15{margin-left:-4.387413pt;}
._2{margin-left:-2.739200pt;}
._1{margin-left:-1.440000pt;}
._0{width:1.491200pt;}
._19{width:3.083520pt;}
._12{width:4.121600pt;}
._11{width:5.606827pt;}
._17{width:6.830080pt;}
._16{width:8.034560pt;}
._1e{width:9.715200pt;}
._1d{width:10.657280pt;}
._b{width:11.685120pt;}
._a{width:12.659200pt;}
._10{width:13.714347pt;}
._1a{width:14.815147pt;}
._1c{width:17.369600pt;}
._13{width:18.311680pt;}
._14{width:19.215787pt;}
._1b{width:20.195840pt;}
._f{width:21.957120pt;}
._e{width:22.904320pt;}
._18{width:24.069547pt;}
._30{width:25.108480pt;}
._9{width:26.368000pt;}
._8{width:28.203520pt;}
._23{width:29.969920pt;}
._3b{width:31.090773pt;}
._2f{width:32.158293pt;}
._21{width:33.284267pt;}
._20{width:34.621440pt;}
._38{width:37.265280pt;}
._2e{width:39.744000pt;}
._2d{width:40.948480pt;}
._1f{width:52.546560pt;}
._3c{width:55.023360pt;}
._34{width:56.465920pt;}
._35{width:57.434880pt;}
._32{width:62.059520pt;}
._31{width:63.033600pt;}
._33{width:64.232960pt;}
._3a{width:65.788160pt;}
._39{width:66.873600pt;}
._36{width:94.737920pt;}
._37{width:96.001280pt;}
._2c{width:103.717333pt;}
._24{width:119.050667pt;}
._22{width:139.310080pt;}
._28{width:140.730667pt;}
._27{width:159.018667pt;}
._26{width:172.512000pt;}
._2a{width:186.336000pt;}
._25{width:212.597333pt;}
._29{width:226.325333pt;}
._2b{width:298.122667pt;}
.fs10{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsf{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs11{font-size:48.128000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fsc{font-size:74.880000pt;}
.fsb{font-size:75.008000pt;}
.fse{font-size:80.000000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:4.352000pt;}
.y1c8{bottom:11.040000pt;}
.y12f{bottom:11.666667pt;}
.y102{bottom:11.680000pt;}
.y107{bottom:11.693333pt;}
.y1dd{bottom:11.826667pt;}
.y127{bottom:11.840000pt;}
.y100{bottom:11.866667pt;}
.y1d6{bottom:12.000000pt;}
.y14{bottom:13.480000pt;}
.y184{bottom:14.720000pt;}
.y1c9{bottom:15.866667pt;}
.y1a1{bottom:19.386667pt;}
.y283{bottom:22.432000pt;}
.y1bf{bottom:25.346667pt;}
.y282{bottom:33.472000pt;}
.y12e{bottom:36.946667pt;}
.y10a{bottom:36.960000pt;}
.y10c{bottom:36.973333pt;}
.y105{bottom:37.120000pt;}
.y281{bottom:44.512000pt;}
.y180{bottom:48.706667pt;}
.y2{bottom:50.400000pt;}
.y1c0{bottom:55.493333pt;}
.y280{bottom:57.472000pt;}
.y19f{bottom:59.973333pt;}
.y109{bottom:62.240000pt;}
.y129{bottom:62.280000pt;}
.y12b{bottom:62.386667pt;}
.y12d{bottom:62.400000pt;}
.y5f{bottom:63.552000pt;}
.y27f{bottom:68.512000pt;}
.y174{bottom:68.613333pt;}
.y5e{bottom:77.952000pt;}
.y27e{bottom:82.144000pt;}
.y1c1{bottom:85.600000pt;}
.y173{bottom:86.533333pt;}
.y13{bottom:88.520000pt;}
.y158{bottom:89.026667pt;}
.y80{bottom:100.832000pt;}
.y1e9{bottom:100.992000pt;}
.y214{bottom:103.712000pt;}
.y27d{bottom:104.224000pt;}
.y161{bottom:104.253333pt;}
.y172{bottom:104.413333pt;}
.y157{bottom:105.666667pt;}
.y1fc{bottom:106.272000pt;}
.y1e3{bottom:107.072000pt;}
.yfe{bottom:108.992000pt;}
.ye{bottom:109.120000pt;}
.y22a{bottom:111.392000pt;}
.y125{bottom:111.552000pt;}
.y15b{bottom:113.826667pt;}
.ye2{bottom:115.552000pt;}
.y152{bottom:115.712000pt;}
.y1c2{bottom:115.746667pt;}
.y160{bottom:120.733333pt;}
.yc2{bottom:121.472000pt;}
.y23f{bottom:122.112000pt;}
.y171{bottom:122.306667pt;}
.y143{bottom:122.912000pt;}
.y24d{bottom:124.512000pt;}
.y156{bottom:124.866667pt;}
.y16d{bottom:125.952000pt;}
.y7f{bottom:126.272000pt;}
.y146{bottom:126.432000pt;}
.y1ba{bottom:127.013333pt;}
.y213{bottom:128.992000pt;}
.y15a{bottom:130.466667pt;}
.y1fb{bottom:131.552000pt;}
.y199{bottom:132.253333pt;}
.y5b{bottom:132.992000pt;}
.y124{bottom:136.826667pt;}
.y15f{bottom:137.373333pt;}
.y27c{bottom:138.213333pt;}
.y20d{bottom:138.266667pt;}
.ya0{bottom:138.426667pt;}
.y170{bottom:139.453333pt;}
.ye1{bottom:140.826667pt;}
.y151{bottom:140.986667pt;}
.y155{bottom:141.533333pt;}
.yd{bottom:142.106667pt;}
.y1e2{bottom:143.066667pt;}
.yfd{bottom:144.986667pt;}
.y1c3{bottom:145.893333pt;}
.y16f{bottom:146.373333pt;}
.yc1{bottom:146.586667pt;}
.y229{bottom:147.386667pt;}
.y1b8{bottom:147.866667pt;}
.y142{bottom:148.186667pt;}
.y17f{bottom:148.253333pt;}
.y27b{bottom:150.693333pt;}
.y16c{bottom:151.066667pt;}
.y7e{bottom:151.546667pt;}
.ydc{bottom:151.706667pt;}
.y212{bottom:154.266667pt;}
.y15e{bottom:156.733333pt;}
.y1fa{bottom:156.826667pt;}
.y1bb{bottom:157.666667pt;}
.y1a0{bottom:157.893333pt;}
.y23e{bottom:158.106667pt;}
.y24c{bottom:160.506667pt;}
.y154{bottom:160.893333pt;}
.y176{bottom:161.760000pt;}
.y195{bottom:162.426667pt;}
.y27a{bottom:163.013333pt;}
.yf2{bottom:163.546667pt;}
.y9f{bottom:163.706667pt;}
.y150{bottom:166.266667pt;}
.y1e1{bottom:168.186667pt;}
.y5a{bottom:168.986667pt;}
.yc{bottom:169.626667pt;}
.y19a{bottom:170.373333pt;}
.yc0{bottom:171.866667pt;}
.y123{bottom:172.986667pt;}
.y1b7{bottom:173.306667pt;}
.y141{bottom:173.466667pt;}
.y175{bottom:174.213333pt;}
.y1c4{bottom:176.000000pt;}
.y16b{bottom:176.346667pt;}
.y7d{bottom:176.826667pt;}
.ycd{bottom:176.986667pt;}
.y279{bottom:177.573333pt;}
.y1bc{bottom:177.760000pt;}
.y211{bottom:179.546667pt;}
.yfc{bottom:180.986667pt;}
.y1f9{bottom:182.106667pt;}
.y228{bottom:183.386667pt;}
.y163{bottom:183.840000pt;}
.y15d{bottom:187.173333pt;}
.y1e8{bottom:187.546667pt;}
.yf1{bottom:188.826667pt;}
.y9e{bottom:189.146667pt;}
.y278{bottom:189.893333pt;}
.y177{bottom:191.293333pt;}
.y14f{bottom:191.546667pt;}
.y1e0{bottom:193.466667pt;}
.y23d{bottom:194.106667pt;}
.y24b{bottom:196.506667pt;}
.ybf{bottom:197.146667pt;}
.y122{bottom:198.106667pt;}
.y1b6{bottom:198.586667pt;}
.y140{bottom:198.746667pt;}
.y16a{bottom:201.626667pt;}
.y7c{bottom:202.106667pt;}
.y277{bottom:204.453333pt;}
.y59{bottom:204.826667pt;}
.yb{bottom:205.306667pt;}
.y162{bottom:205.920000pt;}
.y1c5{bottom:206.146667pt;}
.y1f8{bottom:207.386667pt;}
.y19b{bottom:208.480000pt;}
.y15c{bottom:209.253333pt;}
.y3d{bottom:209.786667pt;}
.y159{bottom:210.906667pt;}
.y1e7{bottom:212.826667pt;}
.yf0{bottom:214.106667pt;}
.y276{bottom:216.800000pt;}
.yfb{bottom:216.826667pt;}
.y1bd{bottom:217.826667pt;}
.y1df{bottom:218.746667pt;}
.y227{bottom:219.386667pt;}
.y178{bottom:220.826667pt;}
.ybe{bottom:222.426667pt;}
.y121{bottom:223.386667pt;}
.y1b5{bottom:223.866667pt;}
.y13f{bottom:224.026667pt;}
.y9d{bottom:226.106667pt;}
.y169{bottom:226.906667pt;}
.ycc{bottom:227.386667pt;}
.y14e{bottom:227.706667pt;}
.y275{bottom:229.280000pt;}
.y23c{bottom:229.946667pt;}
.y58{bottom:230.106667pt;}
.y193{bottom:230.586667pt;}
.y24a{bottom:232.506667pt;}
.y1f7{bottom:232.666667pt;}
.y269{bottom:234.013333pt;}
.y1c6{bottom:236.253333pt;}
.y1e6{bottom:238.106667pt;}
.y7b{bottom:238.266667pt;}
.yef{bottom:239.386667pt;}
.y25d{bottom:239.613333pt;}
.ya{bottom:240.826667pt;}
.y262{bottom:241.120000pt;}
.y268{bottom:243.773333pt;}
.y274{bottom:244.640000pt;}
.y3c{bottom:245.786667pt;}
.y19c{bottom:246.586667pt;}
.ybd{bottom:247.706667pt;}
.y196{bottom:247.746667pt;}
.y25c{bottom:247.773333pt;}
.y120{bottom:248.666667pt;}
.y13e{bottom:249.306667pt;}
.y179{bottom:250.373333pt;}
.y1be{bottom:250.746667pt;}
.y261{bottom:250.880000pt;}
.y9c{bottom:251.386667pt;}
.y168{bottom:252.186667pt;}
.ycb{bottom:252.666667pt;}
.yfa{bottom:252.826667pt;}
.y267{bottom:253.373333pt;}
.y1de{bottom:254.906667pt;}
.y226{bottom:255.226667pt;}
.y210{bottom:255.386667pt;}
.y192{bottom:255.706667pt;}
.y273{bottom:257.120000pt;}
.y25b{bottom:257.533333pt;}
.y1f6{bottom:257.946667pt;}
.y1b4{bottom:260.026667pt;}
.y260{bottom:260.480000pt;}
.y7a{bottom:263.386667pt;}
.y266{bottom:264.733333pt;}
.yee{bottom:264.826667pt;}
.y20c{bottom:264.986667pt;}
.y25a{bottom:265.853333pt;}
.y23b{bottom:265.946667pt;}
.y57{bottom:266.106667pt;}
.y1c7{bottom:266.400000pt;}
.y249{bottom:268.506667pt;}
.y1dc{bottom:269.000000pt;}
.y272{bottom:269.440000pt;}
.y197{bottom:271.360000pt;}
.ybc{bottom:272.986667pt;}
.y11f{bottom:273.946667pt;}
.y265{bottom:274.333333pt;}
.y259{bottom:275.453333pt;}
.y9b{bottom:276.826667pt;}
.y167{bottom:277.466667pt;}
.ydb{bottom:277.946667pt;}
.y14d{bottom:278.106667pt;}
.y9{bottom:279.066667pt;}
.y17a{bottom:279.906667pt;}
.y20f{bottom:280.666667pt;}
.y191{bottom:280.986667pt;}
.y3b{bottom:281.786667pt;}
.y1f5{bottom:283.386667pt;}
.y19d{bottom:284.706667pt;}
.y1b3{bottom:285.146667pt;}
.y13d{bottom:285.466667pt;}
.y26b{bottom:288.346667pt;}
.y79{bottom:288.666667pt;}
.yca{bottom:288.826667pt;}
.y264{bottom:289.533333pt;}
.y25f{bottom:289.733333pt;}
.y1cb{bottom:290.080000pt;}
.y198{bottom:290.946667pt;}
.y56{bottom:291.266667pt;}
.y153{bottom:291.840000pt;}
.y1db{bottom:294.946667pt;}
.ybb{bottom:298.306667pt;}
.y263{bottom:299.133333pt;}
.y11e{bottom:299.266667pt;}
.y26a{bottom:299.386667pt;}
.y25e{bottom:300.773333pt;}
.yed{bottom:300.866667pt;}
.y271{bottom:301.146667pt;}
.y23a{bottom:301.986667pt;}
.y248{bottom:304.386667pt;}
.y20e{bottom:305.986667pt;}
.y20b{bottom:306.146667pt;}
.y190{bottom:306.306667pt;}
.y1ca{bottom:306.880000pt;}
.y1f4{bottom:308.706667pt;}
.y17b{bottom:309.440000pt;}
.y1b2{bottom:310.466667pt;}
.y13c{bottom:310.626667pt;}
.y14c{bottom:311.106667pt;}
.y166{bottom:313.666667pt;}
.y78{bottom:313.986667pt;}
.yda{bottom:314.146667pt;}
.y55{bottom:316.546667pt;}
.y3a{bottom:317.826667pt;}
.y9a{bottom:318.146667pt;}
.y1da{bottom:320.866667pt;}
.y8{bottom:321.986667pt;}
.y19e{bottom:322.813333pt;}
.yba{bottom:323.746667pt;}
.y11d{bottom:324.546667pt;}
.yec{bottom:325.986667pt;}
.y225{bottom:327.266667pt;}
.y20a{bottom:331.426667pt;}
.y1f3{bottom:333.986667pt;}
.y1b1{bottom:335.746667pt;}
.y13b{bottom:335.906667pt;}
.y239{bottom:337.986667pt;}
.y165{bottom:338.786667pt;}
.y17c{bottom:338.973333pt;}
.y77{bottom:339.266667pt;}
.y247{bottom:340.386667pt;}
.y54{bottom:341.986667pt;}
.y18f{bottom:342.466667pt;}
.y39{bottom:343.106667pt;}
.y99{bottom:343.266667pt;}
.y1d9{bottom:346.946667pt;}
.yb9{bottom:349.026667pt;}
.y11c{bottom:349.986667pt;}
.yeb{bottom:351.426667pt;}
.y209{bottom:356.706667pt;}
.y1f2{bottom:359.266667pt;}
.y13a{bottom:361.186667pt;}
.y224{bottom:363.266667pt;}
.y1a3{bottom:363.360000pt;}
.y76{bottom:364.546667pt;}
.y7{bottom:364.866667pt;}
.y258{bottom:365.893333pt;}
.y18e{bottom:367.586667pt;}
.y17d{bottom:368.506667pt;}
.y98{bottom:368.546667pt;}
.y164{bottom:371.746667pt;}
.y1b0{bottom:371.906667pt;}
.y16e{bottom:372.640000pt;}
.y1d8{bottom:372.866667pt;}
.y238{bottom:373.826667pt;}
.yb8{bottom:374.306667pt;}
.yc9{bottom:375.426667pt;}
.y257{bottom:375.653333pt;}
.y246{bottom:376.386667pt;}
.y4{bottom:376.453333pt;}
.yea{bottom:376.706667pt;}
.y53{bottom:377.986667pt;}
.y1a2{bottom:380.160000pt;}
.y270{bottom:381.693333pt;}
.y208{bottom:381.986667pt;}
.y38{bottom:384.386667pt;}
.y1f1{bottom:384.546667pt;}
.y256{bottom:385.253333pt;}
.y11b{bottom:385.986667pt;}
.y139{bottom:386.626667pt;}
.y75{bottom:389.826667pt;}
.y18d{bottom:392.866667pt;}
.y97{bottom:393.826667pt;}
.y26e{bottom:394.853333pt;}
.y1af{bottom:397.026667pt;}
.y17e{bottom:398.053333pt;}
.y1d7{bottom:398.786667pt;}
.y223{bottom:399.266667pt;}
.yb7{bottom:399.586667pt;}
.yc8{bottom:400.546667pt;}
.y26f{bottom:400.893333pt;}
.y52{bottom:403.106667pt;}
.y255{bottom:404.506667pt;}
.y207{bottom:407.266667pt;}
.y6{bottom:407.906667pt;}
.y237{bottom:409.826667pt;}
.y11a{bottom:411.106667pt;}
.y245{bottom:412.386667pt;}
.ye9{bottom:412.706667pt;}
.y26d{bottom:414.053333pt;}
.yd9{bottom:415.106667pt;}
.y254{bottom:415.546667pt;}
.y37{bottom:416.386667pt;}
.y18c{bottom:418.146667pt;}
.y96{bottom:419.106667pt;}
.y1f0{bottom:420.706667pt;}
.y1ae{bottom:422.306667pt;}
.y183{bottom:422.466667pt;}
.y138{bottom:422.626667pt;}
.y1d5{bottom:424.706667pt;}
.yc7{bottom:425.826667pt;}
.y74{bottom:425.986667pt;}
.y51{bottom:428.386667pt;}
.y206{bottom:432.546667pt;}
.y222{bottom:435.106667pt;}
.yb6{bottom:435.746667pt;}
.ye8{bottom:437.986667pt;}
.yf9{bottom:440.546667pt;}
.y182{bottom:443.906667pt;}
.y95{bottom:444.386667pt;}
.y1ef{bottom:445.826667pt;}
.y119{bottom:447.266667pt;}
.y1ad{bottom:447.586667pt;}
.y137{bottom:447.746667pt;}
.y244{bottom:448.226667pt;}
.y36{bottom:448.386667pt;}
.y5{bottom:450.786667pt;}
.y73{bottom:451.106667pt;}
.yd8{bottom:451.266667pt;}
.y50{bottom:453.666667pt;}
.y18b{bottom:454.306667pt;}
.y205{bottom:457.826667pt;}
.yb5{bottom:461.026667pt;}
.ye7{bottom:463.266667pt;}
.y181{bottom:465.533333pt;}
.yf8{bottom:465.826667pt;}
.y94{bottom:469.666667pt;}
.y221{bottom:471.106667pt;}
.y1ee{bottom:471.266667pt;}
.y118{bottom:472.386667pt;}
.y136{bottom:473.186667pt;}
.y72{bottom:476.386667pt;}
.y1d4{bottom:476.706667pt;}
.y4f{bottom:479.266667pt;}
.y18a{bottom:479.426667pt;}
.y35{bottom:480.226667pt;}
.y236{bottom:481.826667pt;}
.y204{bottom:483.106667pt;}
.y1ac{bottom:483.746667pt;}
.y243{bottom:484.226667pt;}
.ye6{bottom:488.546667pt;}
.yf7{bottom:491.106667pt;}
.y93{bottom:495.106667pt;}
.y117{bottom:497.666667pt;}
.y135{bottom:498.466667pt;}
.y71{bottom:501.666667pt;}
.y145{bottom:501.826667pt;}
.yb4{bottom:502.306667pt;}
.y1d3{bottom:502.626667pt;}
.y189{bottom:504.706667pt;}
.y23{bottom:505.826667pt;}
.y220{bottom:507.106667pt;}
.y203{bottom:508.386667pt;}
.y1ab{bottom:508.866667pt;}
.y34{bottom:512.226667pt;}
.y1ed{bottom:512.546667pt;}
.y4e{bottom:515.106667pt;}
.yf6{bottom:516.386667pt;}
.y235{bottom:517.826667pt;}
.y242{bottom:520.226667pt;}
.y116{bottom:523.106667pt;}
.y134{bottom:523.746667pt;}
.ye5{bottom:524.706667pt;}
.y12{bottom:526.773333pt;}
.y70{bottom:527.106667pt;}
.yb3{bottom:527.426667pt;}
.y1d2{bottom:528.733333pt;}
.y188{bottom:530.013333pt;}
.y92{bottom:531.133333pt;}
.y202{bottom:533.693333pt;}
.y1aa{bottom:534.173333pt;}
.y1ec{bottom:537.693333pt;}
.y4d{bottom:540.253333pt;}
.y22{bottom:541.693333pt;}
.y21f{bottom:543.133333pt;}
.y33{bottom:544.253333pt;}
.y115{bottom:548.413333pt;}
.y133{bottom:549.053333pt;}
.ye4{bottom:549.853333pt;}
.y6f{bottom:552.413333pt;}
.yb2{bottom:552.733333pt;}
.y234{bottom:553.693333pt;}
.y1d1{bottom:554.653333pt;}
.y241{bottom:556.253333pt;}
.y201{bottom:559.133333pt;}
.y1a9{bottom:559.453333pt;}
.y1eb{bottom:562.973333pt;}
.yc6{bottom:563.133333pt;}
.y4c{bottom:565.853333pt;}
.y187{bottom:566.173333pt;}
.y91{bottom:567.133333pt;}
.y114{bottom:573.693333pt;}
.y32{bottom:576.253333pt;}
.y21{bottom:577.693333pt;}
.yf5{bottom:577.853333pt;}
.yb1{bottom:578.013333pt;}
.y21e{bottom:578.973333pt;}
.ye3{bottom:582.653333pt;}
.y200{bottom:584.413333pt;}
.y1a8{bottom:584.733333pt;}
.y132{bottom:585.213333pt;}
.yc5{bottom:588.253333pt;}
.y1e5{bottom:588.413333pt;}
.y233{bottom:589.693333pt;}
.y186{bottom:591.293333pt;}
.y3{bottom:592.160000pt;}
.y90{bottom:592.253333pt;}
.y31{bottom:601.373333pt;}
.y4b{bottom:601.693333pt;}
.yd7{bottom:602.973333pt;}
.y1d0{bottom:603.133333pt;}
.yb0{bottom:604.413333pt;}
.y1ff{bottom:609.693333pt;}
.y113{bottom:609.853333pt;}
.y1a7{bottom:610.173333pt;}
.y131{bottom:610.333333pt;}
.y20{bottom:613.693333pt;}
.y6e{bottom:613.853333pt;}
.y21d{bottom:614.973333pt;}
.y8f{bottom:617.533333pt;}
.y194{bottom:624.160000pt;}
.y185{bottom:624.253333pt;}
.y130{bottom:624.573333pt;}
.y240{bottom:624.893333pt;}
.y232{bottom:625.693333pt;}
.y4a{bottom:626.813333pt;}
.yd6{bottom:628.253333pt;}
.yaf{bottom:629.693333pt;}
.y30{bottom:633.533333pt;}
.y112{bottom:634.973333pt;}
.y1a6{bottom:638.013333pt;}
.y6d{bottom:638.973333pt;}
.ye0{bottom:639.133333pt;}
.y8e{bottom:643.133333pt;}
.y1f{bottom:649.533333pt;}
.y12c{bottom:650.493333pt;}
.y12a{bottom:650.506667pt;}
.y21c{bottom:650.973333pt;}
.y49{bottom:652.413333pt;}
.yd5{bottom:653.533333pt;}
.yae{bottom:654.973333pt;}
.y111{bottom:660.253333pt;}
.y231{bottom:661.693333pt;}
.y1a5{bottom:663.293333pt;}
.y6c{bottom:664.253333pt;}
.y2f{bottom:665.373333pt;}
.y1cf{bottom:678.813333pt;}
.yad{bottom:680.253333pt;}
.y8d{bottom:684.413333pt;}
.y26c{bottom:685.346667pt;}
.y1e{bottom:685.533333pt;}
.y21b{bottom:686.973333pt;}
.y48{bottom:688.253333pt;}
.ydf{bottom:689.533333pt;}
.yd4{bottom:689.693333pt;}
.y2e{bottom:690.493333pt;}
.y1a4{bottom:696.253333pt;}
.y1b9{bottom:697.440000pt;}
.y230{bottom:697.533333pt;}
.y6b{bottom:700.413333pt;}
.y1ce{bottom:704.093333pt;}
.yac{bottom:706.493333pt;}
.y8c{bottom:709.533333pt;}
.y110{bottom:710.813333pt;}
.y253{bottom:712.866667pt;}
.y47{bottom:713.373333pt;}
.yd3{bottom:714.813333pt;}
.y1d{bottom:721.533333pt;}
.y2d{bottom:722.653333pt;}
.y21a{bottom:722.973333pt;}
.y6a{bottom:725.533333pt;}
.y1ea{bottom:725.693333pt;}
.y128{bottom:727.133333pt;}
.yab{bottom:731.773333pt;}
.y22f{bottom:733.533333pt;}
.y8b{bottom:734.813333pt;}
.y1fe{bottom:736.093333pt;}
.y46{bottom:738.973333pt;}
.yd2{bottom:740.093333pt;}
.y1cd{bottom:740.253333pt;}
.y10f{bottom:746.973333pt;}
.y2c{bottom:747.773333pt;}
.y69{bottom:750.813333pt;}
.y1e4{bottom:750.973333pt;}
.y28b{bottom:756.573333pt;}
.yaa{bottom:757.053333pt;}
.y1c{bottom:757.533333pt;}
.y219{bottom:758.813333pt;}
.y8a{bottom:760.093333pt;}
.y1fd{bottom:761.373333pt;}
.y14b{bottom:761.533333pt;}
.yd1{bottom:765.373333pt;}
.y28a{bottom:767.613333pt;}
.y22e{bottom:769.573333pt;}
.y45{bottom:774.853333pt;}
.y68{bottom:776.133333pt;}
.y1cc{bottom:776.293333pt;}
.y289{bottom:778.653333pt;}
.y2b{bottom:779.973333pt;}
.ya9{bottom:782.373333pt;}
.y10e{bottom:783.013333pt;}
.y89{bottom:785.413333pt;}
.y14a{bottom:786.853333pt;}
.y288{bottom:789.693333pt;}
.yde{bottom:790.693333pt;}
.y1b{bottom:793.733333pt;}
.y218{bottom:794.853333pt;}
.y44{bottom:799.973333pt;}
.y287{bottom:800.733333pt;}
.y67{bottom:801.413333pt;}
.yd0{bottom:801.573333pt;}
.y126{bottom:803.653333pt;}
.y22d{bottom:805.573333pt;}
.ya8{bottom:807.813333pt;}
.y10d{bottom:808.133333pt;}
.y88{bottom:810.693333pt;}
.y286{bottom:811.773333pt;}
.y2a{bottom:811.973333pt;}
.y149{bottom:812.133333pt;}
.yf4{bottom:815.973333pt;}
.y10b{bottom:822.360000pt;}
.y108{bottom:822.373333pt;}
.y285{bottom:822.813333pt;}
.y43{bottom:825.573333pt;}
.y66{bottom:826.693333pt;}
.ydd{bottom:826.853333pt;}
.y1a{bottom:829.573333pt;}
.y217{bottom:830.853333pt;}
.y87{bottom:836.293333pt;}
.y148{bottom:837.413333pt;}
.y22c{bottom:841.573333pt;}
.y29{bottom:843.973333pt;}
.y28d{bottom:844.613333pt;}
.ya7{bottom:844.933333pt;}
.y65{bottom:851.973333pt;}
.yf3{bottom:852.133333pt;}
.y284{bottom:852.226667pt;}
.y28c{bottom:859.813333pt;}
.y42{bottom:861.413333pt;}
.y147{bottom:862.693333pt;}
.yc4{bottom:862.853333pt;}
.y19{bottom:865.573333pt;}
.y22b{bottom:866.693333pt;}
.y216{bottom:866.853333pt;}
.ya6{bottom:870.213333pt;}
.y28{bottom:875.813333pt;}
.ycf{bottom:877.253333pt;}
.y86{bottom:877.413333pt;}
.y41{bottom:886.693333pt;}
.yc3{bottom:887.973333pt;}
.y64{bottom:888.133333pt;}
.y106{bottom:898.840000pt;}
.y104{bottom:898.853333pt;}
.y252{bottom:901.213333pt;}
.y18{bottom:901.573333pt;}
.y85{bottom:902.533333pt;}
.y215{bottom:902.693333pt;}
.y27{bottom:907.813333pt;}
.ya5{bottom:911.493333pt;}
.y63{bottom:913.253333pt;}
.y40{bottom:922.693333pt;}
.y251{bottom:926.813333pt;}
.y84{bottom:927.973333pt;}
.ya4{bottom:936.613333pt;}
.y17{bottom:937.573333pt;}
.y62{bottom:938.533333pt;}
.y144{bottom:938.693333pt;}
.y26{bottom:939.813333pt;}
.y3f{bottom:947.813333pt;}
.y103{bottom:950.213333pt;}
.y250{bottom:953.093333pt;}
.y83{bottom:953.253333pt;}
.ya3{bottom:961.893333pt;}
.y61{bottom:963.813333pt;}
.yce{bottom:963.973333pt;}
.y25{bottom:972.933333pt;}
.y3e{bottom:973.253333pt;}
.y16{bottom:973.413333pt;}
.y101{bottom:976.133333pt;}
.y11{bottom:978.533333pt;}
.y24f{bottom:981.893333pt;}
.ya2{bottom:988.133333pt;}
.y60{bottom:989.093333pt;}
.y82{bottom:989.253333pt;}
.y15{bottom:998.533333pt;}
.y24{bottom:998.693333pt;}
.yff{bottom:1002.053333pt;}
.y24e{bottom:1010.693333pt;}
.ya1{bottom:1013.600000pt;}
.y81{bottom:1014.560000pt;}
.y10{bottom:1014.720000pt;}
.y5d{bottom:1050.400000pt;}
.y1{bottom:1061.760000pt;}
.y5c{bottom:1064.160000pt;}
.he{height:25.266667pt;}
.h19{height:25.280000pt;}
.h2d{height:25.298667pt;}
.hd{height:25.306667pt;}
.h2c{height:25.426667pt;}
.h32{height:33.375000pt;}
.h33{height:38.715000pt;}
.ha{height:44.648750pt;}
.h31{height:44.722500pt;}
.hb{height:50.062500pt;}
.h34{height:50.196000pt;}
.hf{height:50.706667pt;}
.h10{height:50.712000pt;}
.h11{height:50.720000pt;}
.hc{height:52.785000pt;}
.h23{height:55.402500pt;}
.h2{height:61.410000pt;}
.h1b{height:66.750000pt;}
.h1c{height:66.883500pt;}
.h12{height:75.826667pt;}
.h13{height:75.832000pt;}
.h14{height:75.840000pt;}
.h15{height:75.860000pt;}
.h16{height:75.986667pt;}
.h17{height:75.996000pt;}
.h18{height:76.000000pt;}
.h1f{height:77.582500pt;}
.h21{height:77.742500pt;}
.h25{height:78.097500pt;}
.h24{height:78.231000pt;}
.h30{height:83.437500pt;}
.h1d{height:88.777500pt;}
.h4{height:97.062500pt;}
.h7{height:100.125000pt;}
.h2f{height:100.258500pt;}
.h29{height:103.182500pt;}
.h20{height:105.262500pt;}
.h2b{height:111.982500pt;}
.h2a{height:112.675833pt;}
.h9{height:123.400000pt;}
.h22{height:140.515833pt;}
.h5{height:155.527500pt;}
.h6{height:155.661000pt;}
.h27{height:219.289167pt;}
.h28{height:330.720000pt;}
.h26{height:404.000000pt;}
.h3{height:406.720000pt;}
.h1a{height:447.360000pt;}
.h1e{height:492.960000pt;}
.h8{height:691.040000pt;}
.h2e{height:1040.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:140.813333pt;}
.w4{width:141.138667pt;}
.wb{width:206.898667pt;}
.w9{width:207.218667pt;}
.w15{width:282.453333pt;}
.w14{width:282.458667pt;}
.w12{width:282.778667pt;}
.w13{width:282.933333pt;}
.wc{width:349.213333pt;}
.wd{width:349.226667pt;}
.wa{width:349.533333pt;}
.w7{width:415.293333pt;}
.w8{width:415.306667pt;}
.w5{width:415.613333pt;}
.w3{width:557.080000pt;}
.w11{width:567.040000pt;}
.w10{width:572.000000pt;}
.wf{width:591.040000pt;}
.w2{width:718.720000pt;}
.w17{width:719.999989pt;}
.w16{width:720.000000pt;}
.we{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.872000pt;}
.x41{left:9.599989pt;}
.x42{left:12.255989pt;}
.xb{left:21.266667pt;}
.x2b{left:29.306667pt;}
.x35{left:30.586667pt;}
.x46{left:32.031989pt;}
.x29{left:35.386667pt;}
.x52{left:36.895989pt;}
.x47{left:38.111989pt;}
.x3d{left:42.813333pt;}
.x48{left:46.399989pt;}
.x2{left:47.680000pt;}
.x34{left:54.560000pt;}
.x33{left:61.253333pt;}
.x3c{left:62.853333pt;}
.x9{left:69.312000pt;}
.x3f{left:70.786667pt;}
.x3{left:72.032000pt;}
.x5{left:73.792000pt;}
.x2f{left:81.306667pt;}
.x38{left:82.813333pt;}
.x7{left:86.272000pt;}
.x3e{left:89.053333pt;}
.x1{left:113.472000pt;}
.xc{left:116.666667pt;}
.x13{left:129.312000pt;}
.x49{left:131.071989pt;}
.x15{left:137.466667pt;}
.x1c{left:140.093322pt;}
.x40{left:142.946667pt;}
.x6{left:151.546667pt;}
.x16{left:161.466667pt;}
.x1e{left:167.333322pt;}
.x1d{left:173.733322pt;}
.x2d{left:179.933333pt;}
.x8{left:188.826667pt;}
.x39{left:200.960000pt;}
.x4{left:203.386667pt;}
.x2a{left:207.546667pt;}
.x4a{left:223.813323pt;}
.x4c{left:228.733323pt;}
.x4b{left:229.893323pt;}
.x36{left:241.253333pt;}
.x27{left:248.866667pt;}
.x19{left:255.266667pt;}
.x54{left:257.733323pt;}
.x3a{left:260.066667pt;}
.x55{left:263.813323pt;}
.x53{left:310.746656pt;}
.x28{left:318.813333pt;}
.x1b{left:321.346667pt;}
.x2c{left:328.613333pt;}
.x4f{left:332.066656pt;}
.x1f{left:333.826655pt;}
.x50{left:338.146656pt;}
.x20{left:345.826655pt;}
.x21{left:374.973322pt;}
.x10{left:382.013333pt;}
.x1a{left:388.733333pt;}
.x14{left:392.893333pt;}
.x30{left:397.466667pt;}
.xe{left:406.493333pt;}
.xd{left:414.493333pt;}
.x11{left:418.653333pt;}
.x4d{left:428.253323pt;}
.x31{left:450.720000pt;}
.x4e{left:454.786656pt;}
.xa{left:459.133333pt;}
.x51{left:475.746656pt;}
.x58{left:484.639989pt;}
.x59{left:490.719989pt;}
.x3b{left:493.053333pt;}
.x32{left:504.000000pt;}
.x22{left:514.786655pt;}
.x56{left:525.026656pt;}
.x23{left:526.786655pt;}
.x25{left:529.373322pt;}
.x57{left:542.466656pt;}
.x24{left:553.053322pt;}
.x45{left:561.026656pt;}
.x43{left:578.373323pt;}
.x44{left:581.253323pt;}
.x12{left:587.493333pt;}
.xf{left:680.480000pt;}
.x37{left:681.600000pt;}
.x2e{left:685.600000pt;}
.x26{left:705.600000pt;}
.x17{left:743.520000pt;}
}




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