
    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_1ac8a58fe7f78c2b952df5dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_54dcb0c75f4cfd5a7a63ecdc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_e20ef8ea74a59bc2416184d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9cc4f7b6b604d2d01dc8b517.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_b3c22d96d059e303ccacf973.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_7671008c979b28987a662a28.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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.249526,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249526,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249526,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(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.879928px;}
.v8{vertical-align:-5.759856px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560000px;}
.v1{vertical-align:18.720018px;}
.v6{vertical-align:20.880000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036702px;}
.ls1{letter-spacing:0.036707px;}
.ls4{letter-spacing:0.036774px;}
.ls3{letter-spacing:0.036810px;}
.ls0{letter-spacing:0.036842px;}
.ls5{letter-spacing:0.036846px;}
.ls16{letter-spacing:0.596466px;}
.ls2{letter-spacing:0.756999px;}
.ls15{letter-spacing:20.197770px;}
.ls13{letter-spacing:20.197838px;}
.ls14{letter-spacing:21.808368px;}
.ls7{letter-spacing:46.117883px;}
.ls9{letter-spacing:46.117950px;}
.lsb{letter-spacing:76.522806px;}
.lsc{letter-spacing:121.882815px;}
.lsd{letter-spacing:145.642811px;}
.lsf{letter-spacing:165.802860px;}
.ls11{letter-spacing:183.082770px;}
.ls12{letter-spacing:185.962838px;}
.lsa{letter-spacing:233.482829px;}
.lse{letter-spacing:257.962838px;}
.ls10{letter-spacing:296.842837px;}
.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:-14.911650px;}
.ws6{word-spacing:-13.499965px;}
.ws2{word-spacing:-13.474463px;}
.ws7{word-spacing:-12.060057px;}
.ws0{word-spacing:-12.037163px;}
.ws5{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws4{word-spacing:0.000000px;}
._5a{margin-left:-10.528565px;}
._47{margin-left:-2.100410px;}
._2{margin-left:-1.100187px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._5{width:4.123448px;}
._7{width:5.325004px;}
._3{width:6.976394px;}
._4{width:8.461196px;}
._8{width:10.297498px;}
._9{width:11.847378px;}
._6{width:13.854465px;}
._14{width:16.633534px;}
._c{width:18.036537px;}
._b{width:19.153604px;}
._a{width:20.249788px;}
._17{width:21.499249px;}
._12{width:22.644345px;}
._11{width:23.798133px;}
._27{width:25.534714px;}
._e{width:26.819141px;}
._10{width:28.083530px;}
._f{width:29.226834px;}
._2e{width:30.241364px;}
._19{width:31.279427px;}
._18{width:33.163510px;}
._15{width:34.348270px;}
._13{width:36.113542px;}
._d{width:37.614243px;}
._34{width:38.640118px;}
._26{width:40.089810px;}
._1b{width:41.691648px;}
._24{width:43.516605px;}
._29{width:44.709931px;}
._2c{width:45.742651px;}
._1d{width:47.717280px;}
._2b{width:49.179914px;}
._2d{width:50.817183px;}
._1f{width:52.168874px;}
._1e{width:53.392006px;}
._20{width:54.456342px;}
._16{width:55.467288px;}
._2a{width:57.490308px;}
._35{width:58.796622px;}
._1c{width:60.649248px;}
._4c{width:62.627138px;}
._59{width:64.395567px;}
._58{width:66.311553px;}
._57{width:67.500846px;}
._3a{width:68.593590px;}
._1a{width:70.211809px;}
._28{width:73.365318px;}
._53{width:74.607878px;}
._39{width:75.689743px;}
._52{width:77.178776px;}
._38{width:78.234044px;}
._5c{width:80.359026px;}
._51{width:81.458150px;}
._36{width:82.518974px;}
._2f{width:83.899611px;}
._30{width:85.044707px;}
._37{width:86.364388px;}
._25{width:87.670483px;}
._23{width:93.754043px;}
._22{width:94.897275px;}
._42{width:96.588365px;}
._55{width:98.066377px;}
._56{width:99.073469px;}
._40{width:104.193679px;}
._3f{width:109.434170px;}
._44{width:114.361884px;}
._21{width:121.189149px;}
._33{width:123.205267px;}
._32{width:124.428777px;}
._5d{width:131.737976px;}
._31{width:137.602448px;}
._3d{width:150.962439px;}
._49{width:155.530963px;}
._5b{width:158.657698px;}
._4a{width:177.551542px;}
._3b{width:179.515810px;}
._50{width:182.872984px;}
._4d{width:190.668654px;}
._3e{width:196.430693px;}
._4f{width:201.742843px;}
._4e{width:209.446627px;}
._45{width:216.824194px;}
._41{width:221.140646px;}
._3c{width:226.244300px;}
._46{width:240.143564px;}
._4b{width:243.150683px;}
._43{width:281.009221px;}
._48{width:304.779957px;}
._54{width:353.105614px;}
._5e{width:856.136846px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:17.965890px;}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fsb{font-size:48.240229px;}
.fs5{font-size:53.897850px;}
.fsa{font-size:53.999861px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs8{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.yd6{bottom:2.519989px;}
.yd3{bottom:2.519990px;}
.yd0{bottom:2.520024px;}
.ydb{bottom:2.520057px;}
.y10e{bottom:2.699958px;}
.y114{bottom:2.700027px;}
.y11a{bottom:2.879997px;}
.y110{bottom:2.879998px;}
.ya{bottom:35.640061px;}
.y9{bottom:52.919975px;}
.y8{bottom:66.960022px;}
.y157{bottom:88.919975px;}
.y1a0{bottom:89.279983px;}
.ycc{bottom:93.779983px;}
.y3a{bottom:94.320030px;}
.y16c{bottom:98.279983px;}
.y71{bottom:99.179970px;}
.y9e{bottom:102.600013px;}
.y129{bottom:103.679970px;}
.y156{bottom:106.200027px;}
.y19f{bottom:106.559967px;}
.ycb{bottom:111.059967px;}
.y39{bottom:111.419975px;}
.y16b{bottom:115.559967px;}
.y70{bottom:116.279983px;}
.y1de{bottom:117.899986px;}
.y9d{bottom:119.879998px;}
.y128{bottom:120.779983px;}
.y155{bottom:123.480011px;}
.y19e{bottom:123.840019px;}
.yca{bottom:128.340019px;}
.y38{bottom:128.700027px;}
.y16a{bottom:132.840019px;}
.y6f{bottom:133.559967px;}
.y9c{bottom:136.980011px;}
.y127{bottom:138.059967px;}
.y154{bottom:140.580025px;}
.yf3{bottom:142.559967px;}
.y19d{bottom:144.000000px;}
.yc9{bottom:145.620002px;}
.y37{bottom:145.980011px;}
.y6e{bottom:150.840019px;}
.y169{bottom:153.000000px;}
.y9b{bottom:154.259994px;}
.y126{bottom:155.340019px;}
.y153{bottom:157.860008px;}
.yf2{bottom:158.580025px;}
.y19c{bottom:161.279983px;}
.yc8{bottom:162.899986px;}
.y36{bottom:163.259994px;}
.y6d{bottom:168.120002px;}
.y168{bottom:170.279983px;}
.y9a{bottom:171.539977px;}
.y125{bottom:172.620002px;}
.y152{bottom:175.139992px;}
.yf1{bottom:175.860008px;}
.y19b{bottom:178.559967px;}
.yc7{bottom:180.179970px;}
.y35{bottom:180.539977px;}
.y1dd{bottom:181.620002px;}
.y6c{bottom:185.399986px;}
.y167{bottom:187.559967px;}
.y99{bottom:188.820030px;}
.y124{bottom:189.899986px;}
.y151{bottom:192.419975px;}
.yf0{bottom:193.139992px;}
.y19a{bottom:195.840019px;}
.yc6{bottom:197.279983px;}
.y34{bottom:198.360008px;}
.y1dc{bottom:201.779983px;}
.y6b{bottom:202.679970px;}
.y166{bottom:204.840019px;}
.y98{bottom:206.100013px;}
.y123{bottom:207.179970px;}
.y150{bottom:209.700027px;}
.yef{bottom:210.419975px;}
.y199{bottom:213.120002px;}
.yc5{bottom:214.559967px;}
.y33{bottom:218.340019px;}
.y1db{bottom:219.059967px;}
.y6a{bottom:219.779983px;}
.y165{bottom:222.120002px;}
.y97{bottom:223.379998px;}
.y14f{bottom:226.799973px;}
.y1b6{bottom:227.340019px;}
.yee{bottom:227.700027px;}
.y122{bottom:229.860008px;}
.yc4{bottom:231.840019px;}
.y198{bottom:233.279983px;}
.y32{bottom:235.620002px;}
.y1da{bottom:236.340019px;}
.y69{bottom:237.059967px;}
.y164{bottom:239.399986px;}
.y96{bottom:240.480011px;}
.y14e{bottom:244.080025px;}
.y1b5{bottom:244.620002px;}
.yed{bottom:244.980011px;}
.yc3{bottom:249.120002px;}
.y197{bottom:250.559967px;}
.y121{bottom:251.460022px;}
.y31{bottom:252.899986px;}
.y1d9{bottom:253.620002px;}
.y68{bottom:254.340019px;}
.y163{bottom:256.679970px;}
.y95{bottom:257.759994px;}
.y14d{bottom:261.360008px;}
.y1b4{bottom:261.899986px;}
.yec{bottom:262.080025px;}
.y120{bottom:264.960022px;}
.yc2{bottom:266.399986px;}
.y196{bottom:267.840019px;}
.y30{bottom:270.179970px;}
.y1d8{bottom:270.899986px;}
.y67{bottom:271.620002px;}
.y162{bottom:273.779983px;}
.y94{bottom:275.039977px;}
.y14c{bottom:278.639992px;}
.y1b3{bottom:279.179970px;}
.yeb{bottom:279.360008px;}
.y11f{bottom:281.159981px;}
.yc1{bottom:283.679970px;}
.y195{bottom:285.120002px;}
.y2f{bottom:287.460022px;}
.y1d7{bottom:288.179970px;}
.y66{bottom:288.899986px;}
.y11e{bottom:289.620002px;}
.y11d{bottom:289.799973px;}
.y161{bottom:291.059967px;}
.y93{bottom:292.320030px;}
.y11c{bottom:293.220017px;}
.y14b{bottom:295.919975px;}
.y1b2{bottom:299.340019px;}
.yc0{bottom:300.779983px;}
.yea{bottom:302.220017px;}
.y194{bottom:302.399986px;}
.y2e{bottom:304.740006px;}
.y1d6{bottom:305.279983px;}
.y65{bottom:306.179970px;}
.y92{bottom:309.600013px;}
.y160{bottom:311.220017px;}
.y14a{bottom:313.200027px;}
.ye9{bottom:315.720017px;}
.y1b1{bottom:316.620002px;}
.ybf{bottom:318.059967px;}
.y193{bottom:319.500000px;}
.y11b{bottom:321.659981px;}
.y2d{bottom:321.840019px;}
.y64{bottom:323.279983px;}
.y1d5{bottom:325.620002px;}
.y91{bottom:326.700027px;}
.y15f{bottom:328.500000px;}
.ye8{bottom:330.299973px;}
.y119{bottom:332.460022px;}
.y118{bottom:332.639992px;}
.y1b0{bottom:333.899986px;}
.ybe{bottom:335.340019px;}
.y117{bottom:336.059967px;}
.y192{bottom:336.779983px;}
.y2c{bottom:339.120002px;}
.y63{bottom:340.559967px;}
.y1d4{bottom:342.899986px;}
.y90{bottom:343.980011px;}
.y15e{bottom:345.779983px;}
.ye7{bottom:346.500000px;}
.y149{bottom:347.580025px;}
.y116{bottom:350.639992px;}
.y1af{bottom:351.000000px;}
.ybd{bottom:352.620002px;}
.y2b{bottom:356.399986px;}
.y191{bottom:357.120002px;}
.y62{bottom:357.840019px;}
.ye6{bottom:358.559967px;}
.y1d3{bottom:360.000000px;}
.y8f{bottom:361.259994px;}
.y115{bottom:361.620002px;}
.y113{bottom:361.799973px;}
.y15d{bottom:363.059967px;}
.y148{bottom:364.860008px;}
.y112{bottom:365.220017px;}
.y1ae{bottom:368.279983px;}
.ybc{bottom:369.899986px;}
.ye5{bottom:373.139992px;}
.y2a{bottom:373.679970px;}
.y190{bottom:374.399986px;}
.y61{bottom:375.120002px;}
.y1d2{bottom:377.279983px;}
.y8e{bottom:378.539977px;}
.y111{bottom:379.799973px;}
.y15c{bottom:380.340019px;}
.y147{bottom:382.139992px;}
.ybb{bottom:387.000000px;}
.y1ad{bottom:388.620002px;}
.ye4{bottom:389.519989px;}
.y10f{bottom:390.779983px;}
.y29{bottom:390.960022px;}
.y18f{bottom:391.500000px;}
.y60{bottom:392.399986px;}
.y10d{bottom:394.379998px;}
.y1d1{bottom:394.559967px;}
.y8d{bottom:395.820030px;}
.y15b{bottom:400.500000px;}
.ye3{bottom:401.399986px;}
.yba{bottom:404.279983px;}
.y146{bottom:404.820030px;}
.y1ac{bottom:405.899986px;}
.y28{bottom:408.240006px;}
.y18e{bottom:408.779983px;}
.y10c{bottom:408.960022px;}
.y5f{bottom:409.500000px;}
.y1d0{bottom:411.840019px;}
.y8c{bottom:413.100013px;}
.ye2{bottom:417.779983px;}
.y145{bottom:420.659981px;}
.yb9{bottom:421.559967px;}
.y1ab{bottom:423.000000px;}
.y10b{bottom:425.159981px;}
.y27{bottom:425.340019px;}
.y18d{bottom:426.059967px;}
.y5e{bottom:426.779983px;}
.y1cf{bottom:429.120002px;}
.ye1{bottom:429.840019px;}
.y8b{bottom:430.200027px;}
.y15a{bottom:435.059967px;}
.y144{bottom:436.139992px;}
.yb8{bottom:438.840019px;}
.y1aa{bottom:440.279983px;}
.y26{bottom:442.620002px;}
.y18c{bottom:443.340019px;}
.y5d{bottom:444.059967px;}
.y10a{bottom:446.039977px;}
.ye0{bottom:446.220017px;}
.y8a{bottom:447.480011px;}
.y143{bottom:448.740006px;}
.y1ce{bottom:449.279983px;}
.y159{bottom:455.220017px;}
.yb7{bottom:456.120002px;}
.ydf{bottom:458.100013px;}
.y25{bottom:459.899986px;}
.y1a9{bottom:460.620002px;}
.y5c{bottom:461.340019px;}
.y18b{bottom:463.500000px;}
.y89{bottom:464.759994px;}
.y1cd{bottom:466.559967px;}
.yb6{bottom:473.399986px;}
.yde{bottom:474.480011px;}
.y158{bottom:475.559967px;}
.y24{bottom:477.179970px;}
.y1a8{bottom:477.899986px;}
.y5b{bottom:478.620002px;}
.y109{bottom:480.059967px;}
.y18a{bottom:480.779983px;}
.y88{bottom:482.039977px;}
.y1cc{bottom:483.840019px;}
.ydd{bottom:486.539977px;}
.yb5{bottom:490.500000px;}
.y23{bottom:494.460022px;}
.y1a7{bottom:495.000000px;}
.y5a{bottom:495.899986px;}
.y108{bottom:497.340019px;}
.y189{bottom:498.059967px;}
.y87{bottom:499.320030px;}
.y1cb{bottom:501.120002px;}
.ydc{bottom:502.740006px;}
.yb4{bottom:507.779983px;}
.y22{bottom:511.559967px;}
.y1a6{bottom:512.279983px;}
.y59{bottom:513.000000px;}
.y107{bottom:514.440033px;}
.yda{bottom:514.799973px;}
.y188{bottom:515.340019px;}
.y86{bottom:516.600013px;}
.y1ca{bottom:518.399986px;}
.yb3{bottom:525.059967px;}
.y21{bottom:528.840019px;}
.y58{bottom:530.279983px;}
.yd9{bottom:531.179970px;}
.y106{bottom:531.720017px;}
.y187{bottom:532.620002px;}
.y85{bottom:533.700027px;}
.y1c9{bottom:535.500000px;}
.yb2{bottom:542.340019px;}
.yd8{bottom:543.240006px;}
.y20{bottom:546.120002px;}
.y57{bottom:547.559967px;}
.y105{bottom:549.000000px;}
.y186{bottom:549.899986px;}
.y84{bottom:550.980011px;}
.y1c8{bottom:552.779983px;}
.yd7{bottom:559.440033px;}
.yb1{bottom:559.620002px;}
.y1f{bottom:563.399986px;}
.y56{bottom:564.840019px;}
.y104{bottom:566.279983px;}
.y185{bottom:567.000000px;}
.y83{bottom:568.259994px;}
.y1c7{bottom:570.059967px;}
.yd5{bottom:571.500000px;}
.yb0{bottom:576.899986px;}
.y1e{bottom:580.679970px;}
.y55{bottom:582.120002px;}
.y184{bottom:584.279983px;}
.y82{bottom:585.539977px;}
.yd4{bottom:587.879998px;}
.y103{bottom:588.960022px;}
.y1c6{bottom:590.220017px;}
.yaf{bottom:594.000000px;}
.y1d{bottom:597.960022px;}
.y54{bottom:599.399986px;}
.yd2{bottom:599.940033px;}
.y183{bottom:601.559967px;}
.y81{bottom:602.820030px;}
.y102{bottom:604.620002px;}
.y1c5{bottom:607.500000px;}
.yae{bottom:611.279983px;}
.y1c{bottom:615.060001px;}
.yd1{bottom:616.139992px;}
.y53{bottom:616.500000px;}
.y80{bottom:620.100013px;}
.y101{bottom:620.279983px;}
.y182{bottom:621.720017px;}
.y1a5{bottom:621.899986px;}
.y1c4{bottom:624.779983px;}
.ycf{bottom:628.199993px;}
.yad{bottom:628.560001px;}
.y52{bottom:633.779983px;}
.y7f{bottom:637.199993px;}
.y1b{bottom:637.560001px;}
.y181{bottom:639.000000px;}
.y1c3{bottom:642.060001px;}
.y142{bottom:644.220017px;}
.yac{bottom:645.839985px;}
.y1a{bottom:649.620002px;}
.y51{bottom:651.060001px;}
.yce{bottom:651.600013px;}
.y100{bottom:653.760934px;}
.y7e{bottom:654.480011px;}
.y180{bottom:656.279983px;}
.y1c2{bottom:659.339985px;}
.y141{bottom:661.500000px;}
.yab{bottom:663.120002px;}
.y50{bottom:668.339985px;}
.yff{bottom:668.345247px;}
.y7d{bottom:671.759994px;}
.y17f{bottom:673.560001px;}
.y19{bottom:675.540012px;}
.y140{bottom:678.779983px;}
.y1c1{bottom:679.500000px;}
.yaa{bottom:680.220017px;}
.yfe{bottom:683.102603px;}
.y4f{bottom:685.620002px;}
.y7c{bottom:689.040012px;}
.y17e{bottom:693.720017px;}
.y13f{bottom:696.060001px;}
.y1c0{bottom:696.779983px;}
.ya9{bottom:697.500000px;}
.y4e{bottom:702.720017px;}
.y7b{bottom:706.319995px;}
.y18{bottom:706.500000px;}
.yfd{bottom:707.043148px;}
.y17d{bottom:711.000000px;}
.y13e{bottom:713.160015px;}
.y1bf{bottom:714.060001px;}
.ya8{bottom:714.779983px;}
.y4d{bottom:720.000000px;}
.yf4{bottom:722.521439px;}
.y7a{bottom:723.420010px;}
.y17c{bottom:728.279983px;}
.y13d{bottom:730.439999px;}
.y1be{bottom:731.339985px;}
.ya7{bottom:732.060001px;}
.y17{bottom:732.420010px;}
.y4c{bottom:737.279983px;}
.y79{bottom:740.699993px;}
.y17b{bottom:745.560001px;}
.yf5{bottom:746.461984px;}
.y13c{bottom:747.720017px;}
.y1bd{bottom:748.620002px;}
.ya6{bottom:749.339985px;}
.y16{bottom:753.120002px;}
.y4b{bottom:754.560001px;}
.y78{bottom:757.980011px;}
.y17a{bottom:762.839985px;}
.y13b{bottom:765.000000px;}
.y1bc{bottom:765.720017px;}
.ya5{bottom:766.620002px;}
.yf6{bottom:770.402489px;}
.y4a{bottom:771.839985px;}
.y77{bottom:775.259994px;}
.y179{bottom:780.120002px;}
.y13a{bottom:782.279983px;}
.y1a4{bottom:783.000000px;}
.ya4{bottom:783.720017px;}
.y15{bottom:784.259994px;}
.y1bb{bottom:786.060001px;}
.y49{bottom:789.120002px;}
.y76{bottom:792.540012px;}
.yf7{bottom:794.338890px;}
.y178{bottom:797.220017px;}
.y139{bottom:799.379998px;}
.y1a3{bottom:800.279983px;}
.ya3{bottom:801.000000px;}
.y1ba{bottom:803.339985px;}
.y14{bottom:804.779983px;}
.y48{bottom:806.220017px;}
.y75{bottom:809.819995px;}
.y138{bottom:816.660015px;}
.y177{bottom:817.560001px;}
.yf8{bottom:818.102249px;}
.ya2{bottom:818.279983px;}
.y1b9{bottom:820.620002px;}
.y47{bottom:823.500000px;}
.y74{bottom:826.920010px;}
.y137{bottom:833.939999px;}
.y176{bottom:834.839985px;}
.ya1{bottom:835.560001px;}
.y13{bottom:835.920010px;}
.y1b8{bottom:837.720017px;}
.y46{bottom:840.779983px;}
.yf9{bottom:842.043599px;}
.ycd{bottom:843.480011px;}
.y73{bottom:844.199993px;}
.y175{bottom:852.120002px;}
.ya0{bottom:852.839985px;}
.y1b7{bottom:855.000000px;}
.y12{bottom:856.620002px;}
.y136{bottom:856.800007px;}
.y45{bottom:858.060001px;}
.y72{bottom:860.759994px;}
.yfa{bottom:865.978371px;}
.y174{bottom:869.220017px;}
.y135{bottom:870.300007px;}
.y1a2{bottom:872.279983px;}
.y9f{bottom:874.439999px;}
.y44{bottom:875.339985px;}
.y134{bottom:884.879998px;}
.y173{bottom:886.500000px;}
.y11{bottom:887.759994px;}
.y1a1{bottom:889.560001px;}
.yfb{bottom:889.919700px;}
.y43{bottom:892.620002px;}
.y133{bottom:899.279983px;}
.y10{bottom:904.139992px;}
.y172{bottom:906.840002px;}
.y42{bottom:909.719999px;}
.yfc{bottom:913.861050px;}
.y132{bottom:915.659998px;}
.yf{bottom:921.419992px;}
.y171{bottom:924.120002px;}
.y41{bottom:927.000000px;}
.y12c{bottom:927.719021px;}
.y170{bottom:941.219999px;}
.y40{bottom:944.280001px;}
.ye{bottom:947.699993px;}
.y12d{bottom:949.136778px;}
.y12f{bottom:953.098234px;}
.y16f{bottom:958.500000px;}
.y3f{bottom:961.560001px;}
.y131{bottom:965.340002px;}
.yd{bottom:966.960004px;}
.y16e{bottom:975.780001px;}
.y3e{bottom:978.840002px;}
.y130{bottom:979.199993px;}
.y12e{bottom:988.739645px;}
.y12b{bottom:993.060001px;}
.yc{bottom:994.680004px;}
.y16d{bottom:995.939999px;}
.y3d{bottom:996.120002px;}
.y3c{bottom:1013.219999px;}
.y12a{bottom:1013.759994px;}
.yb{bottom:1022.219999px;}
.y3b{bottom:1030.500000px;}
.y7{bottom:1049.939999px;}
.y6{bottom:1062.180004px;}
.y5{bottom:1074.060001px;}
.y4{bottom:1088.099997px;}
.y3{bottom:1102.679318px;}
.y2{bottom:1103.579999px;}
.y1{bottom:1119.960000px;}
.h1e{height:2.699958px;}
.h20{height:2.700027px;}
.h21{height:2.879997px;}
.h1f{height:2.879998px;}
.h27{height:5.942184px;}
.h1b{height:13.319961px;}
.h18{height:13.319962px;}
.h15{height:13.319996px;}
.h29{height:13.320013px;}
.h1a{height:13.320029px;}
.h19{height:13.320030px;}
.h17{height:13.500000px;}
.h2a{height:13.500018px;}
.h24{height:21.417757px;}
.h28{height:25.379213px;}
.hb{height:27.797343px;}
.h10{height:33.972070px;}
.h25{height:34.036685px;}
.h16{height:34.489292px;}
.h23{height:34.554891px;}
.h6{height:35.738832px;}
.h1d{height:38.100488px;}
.h1c{height:38.680564px;}
.h4{height:40.340156px;}
.h14{height:41.081320px;}
.hd{height:42.084637px;}
.h3{height:42.164290px;}
.h7{height:42.500134px;}
.h2{height:42.725372px;}
.hf{height:43.424356px;}
.h5{height:44.378823px;}
.h1{height:45.463058px;}
.h9{height:48.260478px;}
.h12{height:48.677136px;}
.h13{height:48.677271px;}
.hc{height:48.677276px;}
.ha{height:48.677406px;}
.h11{height:48.677411px;}
.he{height:51.476550px;}
.h26{height:61.020625px;}
.h8{height:68.463808px;}
.h22{height:76.502063px;}
.h0{height:1188.000000px;}
.w43{width:3.959988px;}
.w44{width:3.960022px;}
.w7{width:5.939964px;}
.w14{width:5.939965px;}
.w5{width:5.939998px;}
.w2{width:5.939999px;}
.w2f{width:5.940007px;}
.w20{width:5.940016px;}
.wa{width:5.940033px;}
.we{width:5.940034px;}
.w2c{width:12.060001px;}
.w42{width:12.060002px;}
.w3a{width:13.856128px;}
.w3d{width:13.856847px;}
.w3b{width:13.860513px;}
.w3c{width:13.860549px;}
.w39{width:13.862023px;}
.w3e{width:13.864215px;}
.wb{width:20.700010px;}
.w1a{width:21.060001px;}
.w25{width:23.939964px;}
.w23{width:23.939998px;}
.w45{width:25.380006px;}
.w11{width:25.920010px;}
.w12{width:26.100013px;}
.w41{width:27.000000px;}
.w2d{width:27.180003px;}
.w1d{width:31.319962px;}
.w4{width:32.580025px;}
.w19{width:33.299998px;}
.w13{width:35.279983px;}
.w21{width:36.719948px;}
.w17{width:37.980002px;}
.wd{width:38.699958px;}
.w1e{width:41.939999px;}
.w38{width:42.300007px;}
.w2a{width:43.919975px;}
.w10{width:43.920009px;}
.w24{width:48.240006px;}
.w37{width:49.320005px;}
.w31{width:50.040003px;}
.wf{width:51.299998px;}
.w1c{width:52.019989px;}
.w1f{width:53.999991px;}
.w8{width:54.719982px;}
.w3{width:55.259994px;}
.w18{width:56.699992px;}
.wc{width:60.300007px;}
.w2b{width:62.640000px;}
.w9{width:66.059967px;}
.w16{width:66.240006px;}
.w1b{width:68.579990px;}
.w40{width:68.940007px;}
.w26{width:69.659981px;}
.w1{width:71.279992px;}
.w6{width:72.000000px;}
.w22{width:82.260003px;}
.w15{width:85.319995px;}
.w34{width:95.580025px;}
.w28{width:128.339985px;}
.w29{width:131.939964px;}
.w3f{width:131.940007px;}
.w27{width:158.399985px;}
.w33{width:185.400020px;}
.w32{width:278.280017px;}
.w2e{width:296.639992px;}
.w30{width:319.319996px;}
.w35{width:332.640026px;}
.w36{width:333.540012px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x56{left:10.976545px;}
.x6b{left:129.780001px;}
.x5{left:134.640000px;}
.xd{left:138.060001px;}
.x14{left:140.400003px;}
.xf{left:143.280001px;}
.x40{left:151.017684px;}
.x6c{left:156.419992px;}
.x3f{left:157.681974px;}
.x11{left:161.099997px;}
.x67{left:168.300007px;}
.x30{left:176.219999px;}
.x6a{left:179.819996px;}
.x1b{left:181.439999px;}
.x15{left:187.919992px;}
.x50{left:192.960005px;}
.x2a{left:194.219999px;}
.x36{left:196.919992px;}
.x41{left:198.181862px;}
.x9{left:204.479994px;}
.x49{left:205.560001px;}
.x18{left:209.159998px;}
.x8{left:210.419992px;}
.x60{left:211.860008px;}
.x45{left:212.939999px;}
.x1c{left:214.199993px;}
.x43{left:222.659998px;}
.x38{left:225.180005px;}
.xb{left:227.520006px;}
.x2{left:246.780001px;}
.x26{left:259.379998px;}
.x53{left:266.039996px;}
.x5f{left:274.860008px;}
.x27{left:280.080008px;}
.x16{left:282.060001px;}
.x39{left:283.319996px;}
.xc{left:288.720017px;}
.x46{left:297.540012px;}
.x13{left:302.939999px;}
.xa{left:307.620002px;}
.x4a{left:313.560001px;}
.x2f{left:316.079990px;}
.x1d{left:319.860008px;}
.x4b{left:325.620002px;}
.x32{left:327.959988px;}
.x44{left:333.540012px;}
.x57{left:339.483555px;}
.x47{left:341.459988px;}
.x2e{left:344.699993px;}
.x58{left:350.460100px;}
.x61{left:351.899987px;}
.x55{left:367.019989px;}
.x3{left:369.360008px;}
.x12{left:375.120002px;}
.x42{left:378.717556px;}
.x4c{left:389.339985px;}
.x10{left:390.779983px;}
.xe{left:398.160015px;}
.x4{left:399.600014px;}
.x59{left:403.199296px;}
.x62{left:414.720017px;}
.x4d{left:416.519989px;}
.x17{left:418.139992px;}
.x5b{left:420.121941px;}
.x5a{left:428.402925px;}
.x54{left:431.639992px;}
.x6{left:444.060001px;}
.x22{left:451.800007px;}
.x7{left:459.000000px;}
.x5c{left:464.581626px;}
.x68{left:468.000000px;}
.x19{left:469.800007px;}
.x31{left:472.860008px;}
.x2b{left:477.720017px;}
.x69{left:486.000000px;}
.x5d{left:489.604935px;}
.x63{left:491.040012px;}
.x35{left:493.740006px;}
.x3a{left:500.040012px;}
.x33{left:503.819996px;}
.x23{left:506.519989px;}
.x28{left:512.100014px;}
.x1e{left:519.839985px;}
.x1a{left:523.800007px;}
.x48{left:534.959988px;}
.x5e{left:550.620002px;}
.x1f{left:552.420010px;}
.x64{left:554.579990px;}
.x51{left:574.740006px;}
.x3d{left:580.139992px;}
.x6d{left:626.399987px;}
.x24{left:636.840019px;}
.x65{left:640.080025px;}
.x3b{left:660.779983px;}
.x2c{left:662.580025px;}
.x34{left:668.159981px;}
.x20{left:669.960023px;}
.x37{left:673.559967px;}
.x29{left:675.539978px;}
.x2d{left:697.860008px;}
.x25{left:702.899987px;}
.x3c{left:706.500000px;}
.x4f{left:708.659981px;}
.x4e{left:713.159981px;}
.x52{left:721.980011px;}
.x66{left:725.580025px;}
.x21{left:741.960023px;}
.x3e{left:768.779983px;}
.x1{left:783.360008px;}
@media print{
.v7{vertical-align:-18.559936pt;}
.v8{vertical-align:-5.119872pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720000pt;}
.v1{vertical-align:16.640016pt;}
.v6{vertical-align:18.560000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032624pt;}
.ls1{letter-spacing:0.032628pt;}
.ls4{letter-spacing:0.032688pt;}
.ls3{letter-spacing:0.032720pt;}
.ls0{letter-spacing:0.032748pt;}
.ls5{letter-spacing:0.032752pt;}
.ls16{letter-spacing:0.530192pt;}
.ls2{letter-spacing:0.672888pt;}
.ls15{letter-spacing:17.953574pt;}
.ls13{letter-spacing:17.953634pt;}
.ls14{letter-spacing:19.385216pt;}
.ls7{letter-spacing:40.993674pt;}
.ls9{letter-spacing:40.993734pt;}
.lsb{letter-spacing:68.020272pt;}
.lsc{letter-spacing:108.340280pt;}
.lsd{letter-spacing:129.460276pt;}
.lsf{letter-spacing:147.380320pt;}
.ls11{letter-spacing:162.740240pt;}
.ls12{letter-spacing:165.300300pt;}
.lsa{letter-spacing:207.540292pt;}
.lse{letter-spacing:229.300300pt;}
.ls10{letter-spacing:263.860300pt;}
.ws3{word-spacing:-13.254800pt;}
.ws6{word-spacing:-11.999969pt;}
.ws2{word-spacing:-11.977300pt;}
.ws7{word-spacing:-10.720051pt;}
.ws0{word-spacing:-10.699700pt;}
.ws5{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws4{word-spacing:0.000000pt;}
._5a{margin-left:-9.358725pt;}
._47{margin-left:-1.867031pt;}
._2{margin-left:-0.977944pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._5{width:3.665288pt;}
._7{width:4.733337pt;}
._3{width:6.201239pt;}
._4{width:7.521063pt;}
._8{width:9.153332pt;}
._9{width:10.531003pt;}
._6{width:12.315080pt;}
._14{width:14.785363pt;}
._c{width:16.032477pt;}
._b{width:17.025426pt;}
._a{width:17.999811pt;}
._17{width:19.110443pt;}
._12{width:20.128306pt;}
._11{width:21.153896pt;}
._27{width:22.697523pt;}
._e{width:23.839236pt;}
._10{width:24.963138pt;}
._f{width:25.979408pt;}
._2e{width:26.881213pt;}
._19{width:27.803935pt;}
._18{width:29.478675pt;}
._15{width:30.531795pt;}
._13{width:32.100926pt;}
._d{width:33.434883pt;}
._34{width:34.346772pt;}
._26{width:35.635387pt;}
._1b{width:37.059242pt;}
._24{width:38.681427pt;}
._29{width:39.742161pt;}
._2c{width:40.660135pt;}
._1d{width:42.415360pt;}
._2b{width:43.715479pt;}
._2d{width:45.170830pt;}
._1f{width:46.372332pt;}
._1e{width:47.459561pt;}
._20{width:48.405637pt;}
._16{width:49.304256pt;}
._2a{width:51.102496pt;}
._35{width:52.263664pt;}
._1c{width:53.910442pt;}
._4c{width:55.668567pt;}
._59{width:57.240504pt;}
._58{width:58.943602pt;}
._57{width:60.000752pt;}
._3a{width:60.972080pt;}
._1a{width:62.410497pt;}
._28{width:65.213616pt;}
._53{width:66.318114pt;}
._39{width:67.279772pt;}
._52{width:68.603357pt;}
._38{width:69.541372pt;}
._5c{width:71.430245pt;}
._51{width:72.407245pt;}
._36{width:73.350199pt;}
._2f{width:74.577432pt;}
._30{width:75.595295pt;}
._37{width:76.768345pt;}
._25{width:77.929318pt;}
._23{width:83.336927pt;}
._22{width:84.353133pt;}
._42{width:85.856325pt;}
._55{width:87.170113pt;}
._56{width:88.065305pt;}
._40{width:92.616603pt;}
._3f{width:97.274818pt;}
._44{width:101.655008pt;}
._21{width:107.723688pt;}
._33{width:109.515793pt;}
._32{width:110.603357pt;}
._5d{width:117.100423pt;}
._31{width:122.313287pt;}
._3d{width:134.188834pt;}
._49{width:138.249745pt;}
._5b{width:141.029065pt;}
._4a{width:157.823593pt;}
._3b{width:159.569609pt;}
._50{width:162.553763pt;}
._4d{width:169.483248pt;}
._3e{width:174.605061pt;}
._4f{width:179.326972pt;}
._4e{width:186.174780pt;}
._45{width:192.732617pt;}
._41{width:196.569463pt;}
._3c{width:201.106044pt;}
._46{width:213.460945pt;}
._4b{width:216.133940pt;}
._43{width:249.785974pt;}
._48{width:270.915517pt;}
._54{width:313.871657pt;}
._5e{width:761.010530pt;}
.fs9{font-size:15.969680pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fsb{font-size:42.880204pt;}
.fs5{font-size:47.909200pt;}
.fsa{font-size:47.999876pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs8{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:2.239990pt;}
.yd3{bottom:2.239991pt;}
.yd0{bottom:2.240021pt;}
.ydb{bottom:2.240051pt;}
.y10e{bottom:2.399963pt;}
.y114{bottom:2.400024pt;}
.y11a{bottom:2.559997pt;}
.y110{bottom:2.559998pt;}
.ya{bottom:31.680054pt;}
.y9{bottom:47.039978pt;}
.y8{bottom:59.520020pt;}
.y157{bottom:79.039978pt;}
.y1a0{bottom:79.359985pt;}
.ycc{bottom:83.359985pt;}
.y3a{bottom:83.840027pt;}
.y16c{bottom:87.359985pt;}
.y71{bottom:88.159973pt;}
.y9e{bottom:91.200012pt;}
.y129{bottom:92.159973pt;}
.y156{bottom:94.400024pt;}
.y19f{bottom:94.719971pt;}
.ycb{bottom:98.719971pt;}
.y39{bottom:99.039978pt;}
.y16b{bottom:102.719971pt;}
.y70{bottom:103.359985pt;}
.y1de{bottom:104.799988pt;}
.y9d{bottom:106.559998pt;}
.y128{bottom:107.359985pt;}
.y155{bottom:109.760010pt;}
.y19e{bottom:110.080017pt;}
.yca{bottom:114.080017pt;}
.y38{bottom:114.400024pt;}
.y16a{bottom:118.080017pt;}
.y6f{bottom:118.719971pt;}
.y9c{bottom:121.760010pt;}
.y127{bottom:122.719971pt;}
.y154{bottom:124.960022pt;}
.yf3{bottom:126.719971pt;}
.y19d{bottom:128.000000pt;}
.yc9{bottom:129.440002pt;}
.y37{bottom:129.760010pt;}
.y6e{bottom:134.080017pt;}
.y169{bottom:136.000000pt;}
.y9b{bottom:137.119995pt;}
.y126{bottom:138.080017pt;}
.y153{bottom:140.320007pt;}
.yf2{bottom:140.960022pt;}
.y19c{bottom:143.359985pt;}
.yc8{bottom:144.799988pt;}
.y36{bottom:145.119995pt;}
.y6d{bottom:149.440002pt;}
.y168{bottom:151.359985pt;}
.y9a{bottom:152.479980pt;}
.y125{bottom:153.440002pt;}
.y152{bottom:155.679993pt;}
.yf1{bottom:156.320007pt;}
.y19b{bottom:158.719971pt;}
.yc7{bottom:160.159973pt;}
.y35{bottom:160.479980pt;}
.y1dd{bottom:161.440002pt;}
.y6c{bottom:164.799988pt;}
.y167{bottom:166.719971pt;}
.y99{bottom:167.840027pt;}
.y124{bottom:168.799988pt;}
.y151{bottom:171.039978pt;}
.yf0{bottom:171.679993pt;}
.y19a{bottom:174.080017pt;}
.yc6{bottom:175.359985pt;}
.y34{bottom:176.320007pt;}
.y1dc{bottom:179.359985pt;}
.y6b{bottom:180.159973pt;}
.y166{bottom:182.080017pt;}
.y98{bottom:183.200012pt;}
.y123{bottom:184.159973pt;}
.y150{bottom:186.400024pt;}
.yef{bottom:187.039978pt;}
.y199{bottom:189.440002pt;}
.yc5{bottom:190.719971pt;}
.y33{bottom:194.080017pt;}
.y1db{bottom:194.719971pt;}
.y6a{bottom:195.359985pt;}
.y165{bottom:197.440002pt;}
.y97{bottom:198.559998pt;}
.y14f{bottom:201.599976pt;}
.y1b6{bottom:202.080017pt;}
.yee{bottom:202.400024pt;}
.y122{bottom:204.320007pt;}
.yc4{bottom:206.080017pt;}
.y198{bottom:207.359985pt;}
.y32{bottom:209.440002pt;}
.y1da{bottom:210.080017pt;}
.y69{bottom:210.719971pt;}
.y164{bottom:212.799988pt;}
.y96{bottom:213.760010pt;}
.y14e{bottom:216.960022pt;}
.y1b5{bottom:217.440002pt;}
.yed{bottom:217.760010pt;}
.yc3{bottom:221.440002pt;}
.y197{bottom:222.719971pt;}
.y121{bottom:223.520020pt;}
.y31{bottom:224.799988pt;}
.y1d9{bottom:225.440002pt;}
.y68{bottom:226.080017pt;}
.y163{bottom:228.159973pt;}
.y95{bottom:229.119995pt;}
.y14d{bottom:232.320007pt;}
.y1b4{bottom:232.799988pt;}
.yec{bottom:232.960022pt;}
.y120{bottom:235.520020pt;}
.yc2{bottom:236.799988pt;}
.y196{bottom:238.080017pt;}
.y30{bottom:240.159973pt;}
.y1d8{bottom:240.799988pt;}
.y67{bottom:241.440002pt;}
.y162{bottom:243.359985pt;}
.y94{bottom:244.479980pt;}
.y14c{bottom:247.679993pt;}
.y1b3{bottom:248.159973pt;}
.yeb{bottom:248.320007pt;}
.y11f{bottom:249.919983pt;}
.yc1{bottom:252.159973pt;}
.y195{bottom:253.440002pt;}
.y2f{bottom:255.520020pt;}
.y1d7{bottom:256.159973pt;}
.y66{bottom:256.799988pt;}
.y11e{bottom:257.440002pt;}
.y11d{bottom:257.599976pt;}
.y161{bottom:258.719971pt;}
.y93{bottom:259.840027pt;}
.y11c{bottom:260.640015pt;}
.y14b{bottom:263.039978pt;}
.y1b2{bottom:266.080017pt;}
.yc0{bottom:267.359985pt;}
.yea{bottom:268.640015pt;}
.y194{bottom:268.799988pt;}
.y2e{bottom:270.880005pt;}
.y1d6{bottom:271.359985pt;}
.y65{bottom:272.159973pt;}
.y92{bottom:275.200012pt;}
.y160{bottom:276.640015pt;}
.y14a{bottom:278.400024pt;}
.ye9{bottom:280.640015pt;}
.y1b1{bottom:281.440002pt;}
.ybf{bottom:282.719971pt;}
.y193{bottom:284.000000pt;}
.y11b{bottom:285.919983pt;}
.y2d{bottom:286.080017pt;}
.y64{bottom:287.359985pt;}
.y1d5{bottom:289.440002pt;}
.y91{bottom:290.400024pt;}
.y15f{bottom:292.000000pt;}
.ye8{bottom:293.599976pt;}
.y119{bottom:295.520020pt;}
.y118{bottom:295.679993pt;}
.y1b0{bottom:296.799988pt;}
.ybe{bottom:298.080017pt;}
.y117{bottom:298.719971pt;}
.y192{bottom:299.359985pt;}
.y2c{bottom:301.440002pt;}
.y63{bottom:302.719971pt;}
.y1d4{bottom:304.799988pt;}
.y90{bottom:305.760010pt;}
.y15e{bottom:307.359985pt;}
.ye7{bottom:308.000000pt;}
.y149{bottom:308.960022pt;}
.y116{bottom:311.679993pt;}
.y1af{bottom:312.000000pt;}
.ybd{bottom:313.440002pt;}
.y2b{bottom:316.799988pt;}
.y191{bottom:317.440002pt;}
.y62{bottom:318.080017pt;}
.ye6{bottom:318.719971pt;}
.y1d3{bottom:320.000000pt;}
.y8f{bottom:321.119995pt;}
.y115{bottom:321.440002pt;}
.y113{bottom:321.599976pt;}
.y15d{bottom:322.719971pt;}
.y148{bottom:324.320007pt;}
.y112{bottom:324.640015pt;}
.y1ae{bottom:327.359985pt;}
.ybc{bottom:328.799988pt;}
.ye5{bottom:331.679993pt;}
.y2a{bottom:332.159973pt;}
.y190{bottom:332.799988pt;}
.y61{bottom:333.440002pt;}
.y1d2{bottom:335.359985pt;}
.y8e{bottom:336.479980pt;}
.y111{bottom:337.599976pt;}
.y15c{bottom:338.080017pt;}
.y147{bottom:339.679993pt;}
.ybb{bottom:344.000000pt;}
.y1ad{bottom:345.440002pt;}
.ye4{bottom:346.239990pt;}
.y10f{bottom:347.359985pt;}
.y29{bottom:347.520020pt;}
.y18f{bottom:348.000000pt;}
.y60{bottom:348.799988pt;}
.y10d{bottom:350.559998pt;}
.y1d1{bottom:350.719971pt;}
.y8d{bottom:351.840027pt;}
.y15b{bottom:356.000000pt;}
.ye3{bottom:356.799988pt;}
.yba{bottom:359.359985pt;}
.y146{bottom:359.840027pt;}
.y1ac{bottom:360.799988pt;}
.y28{bottom:362.880005pt;}
.y18e{bottom:363.359985pt;}
.y10c{bottom:363.520020pt;}
.y5f{bottom:364.000000pt;}
.y1d0{bottom:366.080017pt;}
.y8c{bottom:367.200012pt;}
.ye2{bottom:371.359985pt;}
.y145{bottom:373.919983pt;}
.yb9{bottom:374.719971pt;}
.y1ab{bottom:376.000000pt;}
.y10b{bottom:377.919983pt;}
.y27{bottom:378.080017pt;}
.y18d{bottom:378.719971pt;}
.y5e{bottom:379.359985pt;}
.y1cf{bottom:381.440002pt;}
.ye1{bottom:382.080017pt;}
.y8b{bottom:382.400024pt;}
.y15a{bottom:386.719971pt;}
.y144{bottom:387.679993pt;}
.yb8{bottom:390.080017pt;}
.y1aa{bottom:391.359985pt;}
.y26{bottom:393.440002pt;}
.y18c{bottom:394.080017pt;}
.y5d{bottom:394.719971pt;}
.y10a{bottom:396.479980pt;}
.ye0{bottom:396.640015pt;}
.y8a{bottom:397.760010pt;}
.y143{bottom:398.880005pt;}
.y1ce{bottom:399.359985pt;}
.y159{bottom:404.640015pt;}
.yb7{bottom:405.440002pt;}
.ydf{bottom:407.200012pt;}
.y25{bottom:408.799988pt;}
.y1a9{bottom:409.440002pt;}
.y5c{bottom:410.080017pt;}
.y18b{bottom:412.000000pt;}
.y89{bottom:413.119995pt;}
.y1cd{bottom:414.719971pt;}
.yb6{bottom:420.799988pt;}
.yde{bottom:421.760010pt;}
.y158{bottom:422.719971pt;}
.y24{bottom:424.159973pt;}
.y1a8{bottom:424.799988pt;}
.y5b{bottom:425.440002pt;}
.y109{bottom:426.719971pt;}
.y18a{bottom:427.359985pt;}
.y88{bottom:428.479980pt;}
.y1cc{bottom:430.080017pt;}
.ydd{bottom:432.479980pt;}
.yb5{bottom:436.000000pt;}
.y23{bottom:439.520020pt;}
.y1a7{bottom:440.000000pt;}
.y5a{bottom:440.799988pt;}
.y108{bottom:442.080017pt;}
.y189{bottom:442.719971pt;}
.y87{bottom:443.840027pt;}
.y1cb{bottom:445.440002pt;}
.ydc{bottom:446.880005pt;}
.yb4{bottom:451.359985pt;}
.y22{bottom:454.719971pt;}
.y1a6{bottom:455.359985pt;}
.y59{bottom:456.000000pt;}
.y107{bottom:457.280029pt;}
.yda{bottom:457.599976pt;}
.y188{bottom:458.080017pt;}
.y86{bottom:459.200012pt;}
.y1ca{bottom:460.799988pt;}
.yb3{bottom:466.719971pt;}
.y21{bottom:470.080017pt;}
.y58{bottom:471.359985pt;}
.yd9{bottom:472.159973pt;}
.y106{bottom:472.640015pt;}
.y187{bottom:473.440002pt;}
.y85{bottom:474.400024pt;}
.y1c9{bottom:476.000000pt;}
.yb2{bottom:482.080017pt;}
.yd8{bottom:482.880005pt;}
.y20{bottom:485.440002pt;}
.y57{bottom:486.719971pt;}
.y105{bottom:488.000000pt;}
.y186{bottom:488.799988pt;}
.y84{bottom:489.760010pt;}
.y1c8{bottom:491.359985pt;}
.yd7{bottom:497.280029pt;}
.yb1{bottom:497.440002pt;}
.y1f{bottom:500.799988pt;}
.y56{bottom:502.080017pt;}
.y104{bottom:503.359985pt;}
.y185{bottom:504.000000pt;}
.y83{bottom:505.119995pt;}
.y1c7{bottom:506.719971pt;}
.yd5{bottom:508.000000pt;}
.yb0{bottom:512.799988pt;}
.y1e{bottom:516.159973pt;}
.y55{bottom:517.440002pt;}
.y184{bottom:519.359985pt;}
.y82{bottom:520.479980pt;}
.yd4{bottom:522.559998pt;}
.y103{bottom:523.520020pt;}
.y1c6{bottom:524.640015pt;}
.yaf{bottom:528.000000pt;}
.y1d{bottom:531.520020pt;}
.y54{bottom:532.799988pt;}
.yd2{bottom:533.280029pt;}
.y183{bottom:534.719971pt;}
.y81{bottom:535.840027pt;}
.y102{bottom:537.440002pt;}
.y1c5{bottom:540.000000pt;}
.yae{bottom:543.359985pt;}
.y1c{bottom:546.720001pt;}
.yd1{bottom:547.679993pt;}
.y53{bottom:548.000000pt;}
.y80{bottom:551.200012pt;}
.y101{bottom:551.359985pt;}
.y182{bottom:552.640015pt;}
.y1a5{bottom:552.799988pt;}
.y1c4{bottom:555.359985pt;}
.ycf{bottom:558.399994pt;}
.yad{bottom:558.720001pt;}
.y52{bottom:563.359985pt;}
.y7f{bottom:566.399994pt;}
.y1b{bottom:566.720001pt;}
.y181{bottom:568.000000pt;}
.y1c3{bottom:570.720001pt;}
.y142{bottom:572.640015pt;}
.yac{bottom:574.079987pt;}
.y1a{bottom:577.440002pt;}
.y51{bottom:578.720001pt;}
.yce{bottom:579.200012pt;}
.y100{bottom:581.120830pt;}
.y7e{bottom:581.760010pt;}
.y180{bottom:583.359985pt;}
.y1c2{bottom:586.079987pt;}
.y141{bottom:588.000000pt;}
.yab{bottom:589.440002pt;}
.y50{bottom:594.079987pt;}
.yff{bottom:594.084664pt;}
.y7d{bottom:597.119995pt;}
.y17f{bottom:598.720001pt;}
.y19{bottom:600.480011pt;}
.y140{bottom:603.359985pt;}
.y1c1{bottom:604.000000pt;}
.yaa{bottom:604.640015pt;}
.yfe{bottom:607.202314pt;}
.y4f{bottom:609.440002pt;}
.y7c{bottom:612.480011pt;}
.y17e{bottom:616.640015pt;}
.y13f{bottom:618.720001pt;}
.y1c0{bottom:619.359985pt;}
.ya9{bottom:620.000000pt;}
.y4e{bottom:624.640015pt;}
.y7b{bottom:627.839996pt;}
.y18{bottom:628.000000pt;}
.yfd{bottom:628.482798pt;}
.y17d{bottom:632.000000pt;}
.y13e{bottom:633.920013pt;}
.y1bf{bottom:634.720001pt;}
.ya8{bottom:635.359985pt;}
.y4d{bottom:640.000000pt;}
.yf4{bottom:642.241279pt;}
.y7a{bottom:643.040009pt;}
.y17c{bottom:647.359985pt;}
.y13d{bottom:649.279999pt;}
.y1be{bottom:650.079987pt;}
.ya7{bottom:650.720001pt;}
.y17{bottom:651.040009pt;}
.y4c{bottom:655.359985pt;}
.y79{bottom:658.399994pt;}
.y17b{bottom:662.720001pt;}
.yf5{bottom:663.521764pt;}
.y13c{bottom:664.640015pt;}
.y1bd{bottom:665.440002pt;}
.ya6{bottom:666.079987pt;}
.y16{bottom:669.440002pt;}
.y4b{bottom:670.720001pt;}
.y78{bottom:673.760010pt;}
.y17a{bottom:678.079987pt;}
.y13b{bottom:680.000000pt;}
.y1bc{bottom:680.640015pt;}
.ya5{bottom:681.440002pt;}
.yf6{bottom:684.802213pt;}
.y4a{bottom:686.079987pt;}
.y77{bottom:689.119995pt;}
.y179{bottom:693.440002pt;}
.y13a{bottom:695.359985pt;}
.y1a4{bottom:696.000000pt;}
.ya4{bottom:696.640015pt;}
.y15{bottom:697.119995pt;}
.y1bb{bottom:698.720001pt;}
.y49{bottom:701.440002pt;}
.y76{bottom:704.480011pt;}
.yf7{bottom:706.079014pt;}
.y178{bottom:708.640015pt;}
.y139{bottom:710.559998pt;}
.y1a3{bottom:711.359985pt;}
.ya3{bottom:712.000000pt;}
.y1ba{bottom:714.079987pt;}
.y14{bottom:715.359985pt;}
.y48{bottom:716.640015pt;}
.y75{bottom:719.839996pt;}
.y138{bottom:725.920013pt;}
.y177{bottom:726.720001pt;}
.yf8{bottom:727.201999pt;}
.ya2{bottom:727.359985pt;}
.y1b9{bottom:729.440002pt;}
.y47{bottom:732.000000pt;}
.y74{bottom:735.040009pt;}
.y137{bottom:741.279999pt;}
.y176{bottom:742.079987pt;}
.ya1{bottom:742.720001pt;}
.y13{bottom:743.040009pt;}
.y1b8{bottom:744.640015pt;}
.y46{bottom:747.359985pt;}
.yf9{bottom:748.483199pt;}
.ycd{bottom:749.760010pt;}
.y73{bottom:750.399994pt;}
.y175{bottom:757.440002pt;}
.ya0{bottom:758.079987pt;}
.y1b7{bottom:760.000000pt;}
.y12{bottom:761.440002pt;}
.y136{bottom:761.600006pt;}
.y45{bottom:762.720001pt;}
.y72{bottom:765.119995pt;}
.yfa{bottom:769.758552pt;}
.y174{bottom:772.640015pt;}
.y135{bottom:773.600006pt;}
.y1a2{bottom:775.359985pt;}
.y9f{bottom:777.279999pt;}
.y44{bottom:778.079987pt;}
.y134{bottom:786.559998pt;}
.y173{bottom:788.000000pt;}
.y11{bottom:789.119995pt;}
.y1a1{bottom:790.720001pt;}
.yfb{bottom:791.039734pt;}
.y43{bottom:793.440002pt;}
.y133{bottom:799.359985pt;}
.y10{bottom:803.679993pt;}
.y172{bottom:806.080002pt;}
.y42{bottom:808.639999pt;}
.yfc{bottom:812.320933pt;}
.y132{bottom:813.919998pt;}
.yf{bottom:819.039993pt;}
.y171{bottom:821.440002pt;}
.y41{bottom:824.000000pt;}
.y12c{bottom:824.639130pt;}
.y170{bottom:836.639999pt;}
.y40{bottom:839.360001pt;}
.ye{bottom:842.399994pt;}
.y12d{bottom:843.677136pt;}
.y12f{bottom:847.198430pt;}
.y16f{bottom:852.000000pt;}
.y3f{bottom:854.720001pt;}
.y131{bottom:858.080002pt;}
.yd{bottom:859.520004pt;}
.y16e{bottom:867.360001pt;}
.y3e{bottom:870.080002pt;}
.y130{bottom:870.399994pt;}
.y12e{bottom:878.879685pt;}
.y12b{bottom:882.720001pt;}
.yc{bottom:884.160004pt;}
.y16d{bottom:885.279999pt;}
.y3d{bottom:885.440002pt;}
.y3c{bottom:900.639999pt;}
.y12a{bottom:901.119995pt;}
.yb{bottom:908.639999pt;}
.y3b{bottom:916.000000pt;}
.y7{bottom:933.279999pt;}
.y6{bottom:944.160004pt;}
.y5{bottom:954.720001pt;}
.y4{bottom:967.199997pt;}
.y3{bottom:980.159394pt;}
.y2{bottom:980.959999pt;}
.y1{bottom:995.520000pt;}
.h1e{height:2.399963pt;}
.h20{height:2.400024pt;}
.h21{height:2.559997pt;}
.h1f{height:2.559998pt;}
.h27{height:5.281942pt;}
.h1b{height:11.839965pt;}
.h18{height:11.839966pt;}
.h15{height:11.839996pt;}
.h29{height:11.840012pt;}
.h1a{height:11.840026pt;}
.h19{height:11.840027pt;}
.h17{height:12.000000pt;}
.h2a{height:12.000016pt;}
.h24{height:19.038006pt;}
.h28{height:22.559301pt;}
.hb{height:24.708750pt;}
.h10{height:30.197396pt;}
.h25{height:30.254831pt;}
.h16{height:30.657148pt;}
.h23{height:30.715459pt;}
.h6{height:31.767850pt;}
.h1d{height:33.867100pt;}
.h1c{height:34.382724pt;}
.h4{height:35.857917pt;}
.h14{height:36.516729pt;}
.hd{height:37.408566pt;}
.h3{height:37.479369pt;}
.h7{height:37.777897pt;}
.h2{height:37.978109pt;}
.hf{height:38.599427pt;}
.h5{height:39.447842pt;}
.h1{height:40.411607pt;}
.h9{height:42.898203pt;}
.h12{height:43.268566pt;}
.h13{height:43.268686pt;}
.hc{height:43.268690pt;}
.ha{height:43.268806pt;}
.h11{height:43.268810pt;}
.he{height:45.756933pt;}
.h26{height:54.240555pt;}
.h8{height:60.856719pt;}
.h22{height:68.001834pt;}
.h0{height:1056.000000pt;}
.w43{width:3.519989pt;}
.w44{width:3.520020pt;}
.w7{width:5.279968pt;}
.w14{width:5.279969pt;}
.w5{width:5.279998pt;}
.w2{width:5.279999pt;}
.w2f{width:5.280006pt;}
.w20{width:5.280014pt;}
.wa{width:5.280029pt;}
.we{width:5.280030pt;}
.w2c{width:10.720001pt;}
.w42{width:10.720002pt;}
.w3a{width:12.316559pt;}
.w3d{width:12.317198pt;}
.w3b{width:12.320456pt;}
.w3c{width:12.320488pt;}
.w39{width:12.321798pt;}
.w3e{width:12.323747pt;}
.wb{width:18.400009pt;}
.w1a{width:18.720001pt;}
.w25{width:21.279968pt;}
.w23{width:21.279998pt;}
.w45{width:22.560005pt;}
.w11{width:23.040009pt;}
.w12{width:23.200012pt;}
.w41{width:24.000000pt;}
.w2d{width:24.160003pt;}
.w1d{width:27.839966pt;}
.w4{width:28.960022pt;}
.w19{width:29.599998pt;}
.w13{width:31.359985pt;}
.w21{width:32.639954pt;}
.w17{width:33.760002pt;}
.wd{width:34.399963pt;}
.w1e{width:37.279999pt;}
.w38{width:37.600006pt;}
.w2a{width:39.039978pt;}
.w10{width:39.040008pt;}
.w24{width:42.880005pt;}
.w37{width:43.840004pt;}
.w31{width:44.480003pt;}
.wf{width:45.599998pt;}
.w1c{width:46.239990pt;}
.w1f{width:47.999992pt;}
.w8{width:48.639984pt;}
.w3{width:49.119995pt;}
.w18{width:50.399993pt;}
.wc{width:53.600006pt;}
.w2b{width:55.680000pt;}
.w9{width:58.719971pt;}
.w16{width:58.880005pt;}
.w1b{width:60.959991pt;}
.w40{width:61.280006pt;}
.w26{width:61.919983pt;}
.w1{width:63.359993pt;}
.w6{width:64.000000pt;}
.w22{width:73.120003pt;}
.w15{width:75.839996pt;}
.w34{width:84.960022pt;}
.w28{width:114.079987pt;}
.w29{width:117.279968pt;}
.w3f{width:117.280006pt;}
.w27{width:140.799987pt;}
.w33{width:164.800018pt;}
.w32{width:247.360015pt;}
.w2e{width:263.679993pt;}
.w30{width:283.839996pt;}
.w35{width:295.680023pt;}
.w36{width:296.480011pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x56{left:9.756929pt;}
.x6b{left:115.360001pt;}
.x5{left:119.680000pt;}
.xd{left:122.720001pt;}
.x14{left:124.800003pt;}
.xf{left:127.360001pt;}
.x40{left:134.237941pt;}
.x6c{left:139.039993pt;}
.x3f{left:140.161754pt;}
.x11{left:143.199997pt;}
.x67{left:149.600006pt;}
.x30{left:156.639999pt;}
.x6a{left:159.839996pt;}
.x1b{left:161.279999pt;}
.x15{left:167.039993pt;}
.x50{left:171.520004pt;}
.x2a{left:172.639999pt;}
.x36{left:175.039993pt;}
.x41{left:176.161655pt;}
.x9{left:181.759995pt;}
.x49{left:182.720001pt;}
.x18{left:185.919998pt;}
.x8{left:187.039993pt;}
.x60{left:188.320007pt;}
.x45{left:189.279999pt;}
.x1c{left:190.399994pt;}
.x43{left:197.919998pt;}
.x38{left:200.160004pt;}
.xb{left:202.240005pt;}
.x2{left:219.360001pt;}
.x26{left:230.559998pt;}
.x53{left:236.479996pt;}
.x5f{left:244.320007pt;}
.x27{left:248.960007pt;}
.x16{left:250.720001pt;}
.x39{left:251.839996pt;}
.xc{left:256.640015pt;}
.x46{left:264.480011pt;}
.x13{left:269.279999pt;}
.xa{left:273.440002pt;}
.x4a{left:278.720001pt;}
.x2f{left:280.959991pt;}
.x1d{left:284.320007pt;}
.x4b{left:289.440002pt;}
.x32{left:291.519989pt;}
.x44{left:296.480011pt;}
.x57{left:301.763160pt;}
.x47{left:303.519989pt;}
.x2e{left:306.399994pt;}
.x58{left:311.520089pt;}
.x61{left:312.799988pt;}
.x55{left:326.239990pt;}
.x3{left:328.320007pt;}
.x12{left:333.440002pt;}
.x42{left:336.637827pt;}
.x4c{left:346.079987pt;}
.x10{left:347.359985pt;}
.xe{left:353.920013pt;}
.x4{left:355.200012pt;}
.x59{left:358.399374pt;}
.x62{left:368.640015pt;}
.x4d{left:370.239990pt;}
.x17{left:371.679993pt;}
.x5b{left:373.441725pt;}
.x5a{left:380.802600pt;}
.x54{left:383.679993pt;}
.x6{left:394.720001pt;}
.x22{left:401.600006pt;}
.x7{left:408.000000pt;}
.x5c{left:412.961445pt;}
.x68{left:416.000000pt;}
.x19{left:417.600006pt;}
.x31{left:420.320007pt;}
.x2b{left:424.640015pt;}
.x69{left:432.000000pt;}
.x5d{left:435.204386pt;}
.x63{left:436.480011pt;}
.x35{left:438.880005pt;}
.x3a{left:444.480011pt;}
.x33{left:447.839996pt;}
.x23{left:450.239990pt;}
.x28{left:455.200012pt;}
.x1e{left:462.079987pt;}
.x1a{left:465.600006pt;}
.x48{left:475.519989pt;}
.x5e{left:489.440002pt;}
.x1f{left:491.040009pt;}
.x64{left:492.959991pt;}
.x51{left:510.880005pt;}
.x3d{left:515.679993pt;}
.x6d{left:556.799988pt;}
.x24{left:566.080017pt;}
.x65{left:568.960022pt;}
.x3b{left:587.359985pt;}
.x2c{left:588.960022pt;}
.x34{left:593.919983pt;}
.x20{left:595.520020pt;}
.x37{left:598.719971pt;}
.x29{left:600.479980pt;}
.x2d{left:620.320007pt;}
.x25{left:624.799988pt;}
.x3c{left:628.000000pt;}
.x4f{left:629.919983pt;}
.x4e{left:633.919983pt;}
.x52{left:641.760010pt;}
.x66{left:644.960022pt;}
.x21{left:659.520020pt;}
.x3e{left:683.359985pt;}
.x1{left:696.320007pt;}
}




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