
    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_ab6e71c6122b5c7b92f1a677.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f7b9251b02c05bc71faec3f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_83adcc088d6e7ef34ec32e2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_404e9804c89da17a7c95b0e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_904d3886434ac8f06854f997.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8de023d5ee229592c48e9cf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e9a75d933ae6250a016f2b6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-37.980000px;}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.lsb{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.584000px;}
.ls10{letter-spacing:19.440000px;}
.ls8{letter-spacing:556.962000px;}
.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;}
}
.wsa{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.440000px;}
.wsc{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:333.114000px;}
.ws5{word-spacing:544.818000px;}
._3{margin-left:-5.256000px;}
._2{margin-left:-3.456000px;}
._5{margin-left:-2.154000px;}
._0{margin-left:-1.080000px;}
._1{width:1.290000px;}
._a{width:2.430000px;}
._11{width:3.522000px;}
._10{width:4.680000px;}
._9{width:5.760000px;}
._4{width:6.768000px;}
._6{width:7.848000px;}
._7{width:8.916000px;}
._1c{width:10.008000px;}
._e{width:11.664000px;}
._f{width:12.816000px;}
._12{width:14.058000px;}
._13{width:15.192000px;}
._b{width:16.344000px;}
._18{width:19.584000px;}
._19{width:20.664000px;}
._1a{width:21.960000px;}
._38{width:23.472000px;}
._14{width:24.840000px;}
._15{width:26.352000px;}
._2e{width:28.296000px;}
._2c{width:30.024000px;}
._2b{width:31.032000px;}
._43{width:32.094000px;}
._c{width:33.096000px;}
._d{width:34.698000px;}
._1d{width:36.726000px;}
._1f{width:38.136000px;}
._8{width:40.032000px;}
._52{width:41.256000px;}
._2d{width:42.264000px;}
._16{width:43.488000px;}
._17{width:44.856000px;}
._5a{width:45.864000px;}
._24{width:46.872000px;}
._25{width:47.880000px;}
._33{width:49.110000px;}
._30{width:50.184000px;}
._31{width:51.480000px;}
._1b{width:53.784000px;}
._29{width:55.440000px;}
._2a{width:57.102000px;}
._42{width:59.106000px;}
._41{width:60.120000px;}
._23{width:62.784000px;}
._46{width:64.872000px;}
._32{width:66.600000px;}
._34{width:67.968000px;}
._4d{width:69.408000px;}
._4a{width:71.280000px;}
._4f{width:72.576000px;}
._35{width:75.816000px;}
._36{width:77.016000px;}
._47{width:78.696000px;}
._48{width:80.640000px;}
._49{width:82.296000px;}
._50{width:84.456000px;}
._28{width:86.400000px;}
._37{width:87.768000px;}
._22{width:88.920000px;}
._51{width:91.944000px;}
._20{width:93.504000px;}
._21{width:95.040000px;}
._4c{width:97.344000px;}
._3d{width:101.304000px;}
._3e{width:102.456000px;}
._1e{width:104.904000px;}
._39{width:105.906000px;}
._53{width:110.376000px;}
._4b{width:113.544000px;}
._54{width:118.146000px;}
._57{width:120.816000px;}
._58{width:127.656000px;}
._56{width:134.784000px;}
._2f{width:168.276000px;}
._44{width:177.480000px;}
._45{width:178.632000px;}
._55{width:192.528000px;}
._26{width:216.768000px;}
._27{width:217.872000px;}
._40{width:248.100000px;}
._3f{width:249.312000px;}
._3a{width:254.304000px;}
._3c{width:347.016000px;}
._59{width:361.584000px;}
._3b{width:416.532000px;}
._4e{width:578.232000px;}
.fc3{color:rgb(0,111,192);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y1c3{bottom:-1.449000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:4.500000px;}
.y1bc{bottom:5.235000px;}
.yb5{bottom:7.365000px;}
.yaa{bottom:7.380000px;}
.yad{bottom:7.560000px;}
.yf8{bottom:8.460000px;}
.yfb{bottom:10.620000px;}
.y1c5{bottom:10.800000px;}
.y1be{bottom:10.995000px;}
.y1c0{bottom:15.300000px;}
.y1c8{bottom:16.035000px;}
.ye0{bottom:17.790000px;}
.y105{bottom:19.785000px;}
.y10a{bottom:19.791000px;}
.y103{bottom:19.830000px;}
.y107{bottom:19.965000px;}
.yf6{bottom:19.980000px;}
.yf4{bottom:20.160000px;}
.yc3{bottom:20.880000px;}
.yc6{bottom:21.060000px;}
.ye5{bottom:21.420000px;}
.ye7{bottom:22.500000px;}
.yea{bottom:22.680000px;}
.yec{bottom:22.725000px;}
.yc0{bottom:25.200000px;}
.y1c2{bottom:28.485000px;}
.y102{bottom:31.140000px;}
.ydf{bottom:47.700000px;}
.y3{bottom:58.356000px;}
.yf2{bottom:62.280000px;}
.yd4{bottom:65.265000px;}
.y100{bottom:68.250000px;}
.y2{bottom:79.056000px;}
.yd3{bottom:89.025000px;}
.yd5{bottom:89.100000px;}
.yd0{bottom:108.105000px;}
.y10b{bottom:112.716000px;}
.yd6{bottom:112.935000px;}
.y133{bottom:113.256000px;}
.y185{bottom:113.616000px;}
.y2d{bottom:117.396000px;}
.ycd{bottom:120.636000px;}
.y1b6{bottom:122.256000px;}
.y7f{bottom:122.616000px;}
.y54{bottom:123.156000px;}
.y1c1{bottom:129.816000px;}
.y109{bottom:129.825000px;}
.y19d{bottom:131.076000px;}
.y132{bottom:133.956000px;}
.y184{bottom:134.316000px;}
.y6a{bottom:135.216000px;}
.yd7{bottom:136.800000px;}
.y15c{bottom:142.956000px;}
.y1c6{bottom:144.036000px;}
.y7e{bottom:146.376000px;}
.y53{bottom:146.916000px;}
.y2c{bottom:148.536000px;}
.yd2{bottom:151.020000px;}
.y19c{bottom:151.770000px;}
.y131{bottom:154.650000px;}
.y183{bottom:155.010000px;}
.ycc{bottom:156.450000px;}
.y9f{bottom:158.790000px;}
.y69{bottom:158.970000px;}
.yd8{bottom:160.635000px;}
.y15b{bottom:163.650000px;}
.y108{bottom:166.005000px;}
.y2b{bottom:169.770000px;}
.y7d{bottom:170.130000px;}
.y52{bottom:170.670000px;}
.y19b{bottom:172.470000px;}
.y130{bottom:175.350000px;}
.y182{bottom:175.710000px;}
.y9e{bottom:182.550000px;}
.y68{bottom:182.730000px;}
.y15a{bottom:184.350000px;}
.yd9{bottom:184.470000px;}
.y2a{bottom:190.470000px;}
.ycb{bottom:192.270000px;}
.y19a{bottom:193.170000px;}
.y51{bottom:194.610000px;}
.y181{bottom:196.410000px;}
.y1ba{bottom:200.190000px;}
.y106{bottom:202.185000px;}
.y159{bottom:205.050000px;}
.y12f{bottom:205.770000px;}
.y7c{bottom:206.130000px;}
.y9d{bottom:206.310000px;}
.y67{bottom:206.490000px;}
.yda{bottom:208.335000px;}
.y29{bottom:211.170000px;}
.y180{bottom:217.110000px;}
.y50{bottom:218.370000px;}
.y158{bottom:225.750000px;}
.yca{bottom:228.090000px;}
.y9c{bottom:230.250000px;}
.y66{bottom:230.430000px;}
.y28{bottom:231.870000px;}
.ydb{bottom:232.170000px;}
.y17f{bottom:237.810000px;}
.y104{bottom:238.545000px;}
.yd1{bottom:241.635000px;}
.y7b{bottom:241.950000px;}
.y4f{bottom:242.130000px;}
.y157{bottom:246.450000px;}
.y1ac{bottom:249.690000px;}
.yb6{bottom:251.310000px;}
.y27{bottom:252.570000px;}
.y9b{bottom:254.010000px;}
.y65{bottom:254.190000px;}
.ydc{bottom:255.990000px;}
.y1b5{bottom:258.510000px;}
.yc9{bottom:263.910000px;}
.y7a{bottom:265.530000px;}
.y4e{bottom:265.890000px;}
.y156{bottom:267.150000px;}
.yb4{bottom:268.605000px;}
.y1ab{bottom:270.390000px;}
.y17e{bottom:270.570000px;}
.y26{bottom:273.270000px;}
.yff{bottom:275.445000px;}
.y9a{bottom:277.770000px;}
.y64{bottom:277.950000px;}
.y1b4{bottom:279.210000px;}
.ydd{bottom:279.825000px;}
.y12c{bottom:286.815000px;}
.y155{bottom:287.895000px;}
.y79{bottom:289.515000px;}
.y4d{bottom:289.875000px;}
.y1aa{bottom:291.135000px;}
.y17d{bottom:291.315000px;}
.yb3{bottom:293.115000px;}
.y25{bottom:294.015000px;}
.ycf{bottom:294.090000px;}
.y99{bottom:301.575000px;}
.y63{bottom:301.755000px;}
.yde{bottom:303.690000px;}
.yc8{bottom:306.795000px;}
.y154{bottom:308.595000px;}
.y12b{bottom:310.575000px;}
.y1a9{bottom:311.835000px;}
.y17c{bottom:312.015000px;}
.y101{bottom:312.555000px;}
.y4c{bottom:313.635000px;}
.y24{bottom:314.715000px;}
.yb2{bottom:316.875000px;}
.yc7{bottom:324.255000px;}
.y78{bottom:325.335000px;}
.y98{bottom:325.515000px;}
.y62{bottom:325.695000px;}
.y153{bottom:329.295000px;}
.y1a8{bottom:332.535000px;}
.y17b{bottom:332.715000px;}
.y12a{bottom:334.515000px;}
.y23{bottom:335.415000px;}
.y4b{bottom:337.395000px;}
.yb1{bottom:340.635000px;}
.y199{bottom:341.355000px;}
.y77{bottom:349.095000px;}
.y97{bottom:349.275000px;}
.y61{bottom:349.455000px;}
.y152{bottom:349.995000px;}
.y1a7{bottom:353.235000px;}
.y17a{bottom:353.415000px;}
.y22{bottom:356.115000px;}
.y129{bottom:358.275000px;}
.y4a{bottom:361.155000px;}
.yc5{bottom:361.335000px;}
.y198{bottom:362.055000px;}
.yb0{bottom:364.575000px;}
.y151{bottom:370.695000px;}
.y76{bottom:372.855000px;}
.y96{bottom:373.035000px;}
.y60{bottom:373.215000px;}
.y1a6{bottom:373.935000px;}
.y179{bottom:374.115000px;}
.y21{bottom:376.815000px;}
.yfe{bottom:380.415000px;}
.y197{bottom:382.755000px;}
.y49{bottom:385.095000px;}
.yaf{bottom:388.335000px;}
.y128{bottom:394.275000px;}
.y1a5{bottom:394.635000px;}
.y1b3{bottom:394.815000px;}
.y95{bottom:396.795000px;}
.y5f{bottom:396.975000px;}
.y20{bottom:397.515000px;}
.yc4{bottom:398.595000px;}
.y150{bottom:403.455000px;}
.y178{bottom:406.695000px;}
.y48{bottom:408.855000px;}
.yae{bottom:412.095000px;}
.y1a4{bottom:415.335000px;}
.y1b2{bottom:415.515000px;}
.yfd{bottom:416.235000px;}
.y127{bottom:417.855000px;}
.y1f{bottom:418.215000px;}
.y94{bottom:420.555000px;}
.y5e{bottom:420.915000px;}
.y14f{bottom:424.155000px;}
.y177{bottom:427.395000px;}
.y75{bottom:432.435000px;}
.y47{bottom:432.615000px;}
.yac{bottom:435.855000px;}
.y1b1{bottom:436.215000px;}
.yc2{bottom:436.395000px;}
.y1e{bottom:438.915000px;}
.y126{bottom:441.615000px;}
.y93{bottom:444.495000px;}
.y5d{bottom:444.675000px;}
.y14e{bottom:444.855000px;}
.y176{bottom:448.095000px;}
.yfc{bottom:452.055000px;}
.y74{bottom:456.195000px;}
.y46{bottom:456.375000px;}
.y196{bottom:456.915000px;}
.y1d{bottom:459.615000px;}
.yab{bottom:459.795000px;}
.y125{bottom:465.375000px;}
.y14d{bottom:465.555000px;}
.y92{bottom:468.255000px;}
.y5c{bottom:468.435000px;}
.y175{bottom:468.795000px;}
.yfa{bottom:468.975000px;}
.ybf{bottom:474.375000px;}
.y1bb{bottom:477.420000px;}
.y195{bottom:477.615000px;}
.y1c{bottom:480.315000px;}
.ya9{bottom:484.275000px;}
.y14c{bottom:486.255000px;}
.y124{bottom:489.315000px;}
.y174{bottom:489.495000px;}
.y91{bottom:492.015000px;}
.y5b{bottom:492.195000px;}
.yf9{bottom:495.795000px;}
.y194{bottom:498.315000px;}
.y1bd{bottom:499.380000px;}
.y1b{bottom:500.835000px;}
.y45{bottom:504.075000px;}
.y1b9{bottom:505.155000px;}
.y14b{bottom:506.955000px;}
.y173{bottom:510.195000px;}
.y123{bottom:513.075000px;}
.ya8{bottom:513.255000px;}
.y73{bottom:515.775000px;}
.y5a{bottom:516.135000px;}
.yf7{bottom:516.495000px;}
.y193{bottom:519.015000px;}
.y1a{bottom:521.535000px;}
.y14a{bottom:527.655000px;}
.y44{bottom:527.835000px;}
.y172{bottom:530.895000px;}
.ybe{bottom:536.115000px;}
.y122{bottom:536.835000px;}
.y72{bottom:539.745000px;}
.y59{bottom:539.925000px;}
.yf5{bottom:541.185000px;}
.y19{bottom:542.265000px;}
.y1b8{bottom:548.205000px;}
.y149{bottom:548.385000px;}
.y43{bottom:551.625000px;}
.y12e{bottom:551.805000px;}
.ybd{bottom:559.725000px;}
.y192{bottom:560.445000px;}
.y121{bottom:560.625000px;}
.y18{bottom:562.965000px;}
.y90{bottom:563.505000px;}
.y58{bottom:563.685000px;}
.y1a3{bottom:572.325000px;}
.ya7{bottom:575.025000px;}
.y42{bottom:575.565000px;}
.y71{bottom:575.745000px;}
.yf1{bottom:578.085000px;}
.y148{bottom:581.145000px;}
.ybc{bottom:583.485000px;}
.y17{bottom:583.665000px;}
.y171{bottom:584.385000px;}
.y120{bottom:584.565000px;}
.y8f{bottom:587.265000px;}
.y57{bottom:587.445000px;}
.y191{bottom:593.025000px;}
.y41{bottom:599.325000px;}
.y147{bottom:601.845000px;}
.y16{bottom:604.365000px;}
.y170{bottom:605.085000px;}
.y11f{bottom:608.325000px;}
.y8e{bottom:611.025000px;}
.y56{bottom:611.205000px;}
.y190{bottom:613.725000px;}
.yf3{bottom:615.165000px;}
.ybb{bottom:619.485000px;}
.y146{bottom:622.545000px;}
.y70{bottom:623.085000px;}
.y15{bottom:625.065000px;}
.y16f{bottom:625.785000px;}
.y11e{bottom:632.085000px;}
.y18f{bottom:634.425000px;}
.y8d{bottom:634.605000px;}
.ya6{bottom:634.965000px;}
.y55{bottom:635.145000px;}
.y40{bottom:635.325000px;}
.yba{bottom:643.065000px;}
.y145{bottom:643.245000px;}
.y14{bottom:645.765000px;}
.y1a2{bottom:646.305000px;}
.y16e{bottom:646.485000px;}
.y6f{bottom:646.845000px;}
.y18e{bottom:655.125000px;}
.y11d{bottom:655.845000px;}
.ya5{bottom:658.725000px;}
.y3f{bottom:658.905000px;}
.y144{bottom:663.765000px;}
.y13{bottom:666.465000px;}
.y1a1{bottom:667.005000px;}
.y16d{bottom:667.185000px;}
.ya3{bottom:670.785000px;}
.y8c{bottom:670.965000px;}
.y1b0{bottom:675.825000px;}
.yf0{bottom:676.905000px;}
.y11c{bottom:679.785000px;}
.y3e{bottom:682.665000px;}
.y6e{bottom:682.845000px;}
.y143{bottom:684.465000px;}
.yb9{bottom:686.085000px;}
.y12{bottom:687.165000px;}
.y1a0{bottom:687.705000px;}
.y16c{bottom:687.885000px;}
.y8b{bottom:694.545000px;}
.ya4{bottom:694.725000px;}
.y1af{bottom:696.525000px;}
.yef{bottom:700.485000px;}
.y11b{bottom:703.545000px;}
.y142{bottom:705.165000px;}
.y3d{bottom:706.425000px;}
.y11{bottom:707.865000px;}
.y19f{bottom:708.405000px;}
.y18d{bottom:708.585000px;}
.yb8{bottom:717.225000px;}
.y8a{bottom:718.305000px;}
.y16b{bottom:720.465000px;}
.y11a{bottom:727.305000px;}
.y18c{bottom:729.285000px;}
.y3c{bottom:730.365000px;}
.y10{bottom:731.265000px;}
.yee{bottom:736.485000px;}
.y141{bottom:737.925000px;}
.y16a{bottom:741.165000px;}
.y89{bottom:742.065000px;}
.y18b{bottom:749.985000px;}
.y119{bottom:751.065000px;}
.y3b{bottom:754.125000px;}
.y12d{bottom:754.305000px;}
.yb7{bottom:755.925000px;}
.yce{bottom:756.000000px;}
.y140{bottom:758.625000px;}
.y169{bottom:761.865000px;}
.yf{bottom:764.385000px;}
.y88{bottom:765.825000px;}
.y18a{bottom:770.685000px;}
.yed{bottom:771.945000px;}
.y118{bottom:774.825000px;}
.y3a{bottom:777.885000px;}
.y13f{bottom:779.325000px;}
.y168{bottom:782.565000px;}
.ye{bottom:785.085000px;}
.yeb{bottom:789.225000px;}
.y87{bottom:789.765000px;}
.y189{bottom:791.385000px;}
.y117{bottom:798.810000px;}
.y13e{bottom:800.070000px;}
.y39{bottom:801.690000px;}
.y167{bottom:803.310000px;}
.yd{bottom:805.470000px;}
.y188{bottom:812.130000px;}
.ya2{bottom:813.210000px;}
.y86{bottom:813.570000px;}
.y13d{bottom:820.770000px;}
.y116{bottom:822.570000px;}
.y166{bottom:824.010000px;}
.y38{bottom:825.630000px;}
.ye9{bottom:828.150000px;}
.y187{bottom:832.830000px;}
.yc{bottom:836.430000px;}
.y85{bottom:837.330000px;}
.y165{bottom:844.710000px;}
.y115{bottom:846.330000px;}
.y37{bottom:849.390000px;}
.ya1{bottom:849.570000px;}
.y13c{bottom:853.530000px;}
.yb{bottom:860.190000px;}
.y84{bottom:861.090000px;}
.y19e{bottom:865.230000px;}
.y1b7{bottom:865.410000px;}
.ye8{bottom:867.030000px;}
.y114{bottom:870.090000px;}
.y36{bottom:873.150000px;}
.y13b{bottom:874.230000px;}
.y164{bottom:877.470000px;}
.ya{bottom:883.950000px;}
.y83{bottom:885.030000px;}
.y186{bottom:886.110000px;}
.y113{bottom:894.030000px;}
.y1ae{bottom:894.930000px;}
.y6d{bottom:896.550000px;}
.y35{bottom:896.910000px;}
.y163{bottom:898.170000px;}
.ye6{bottom:906.630000px;}
.y13a{bottom:906.810000px;}
.y82{bottom:908.790000px;}
.y1ad{bottom:915.630000px;}
.y112{bottom:917.790000px;}
.y9{bottom:918.690000px;}
.y162{bottom:918.870000px;}
.y6c{bottom:920.490000px;}
.y34{bottom:920.850000px;}
.y139{bottom:927.510000px;}
.y81{bottom:932.190000px;}
.y8{bottom:936.330000px;}
.y161{bottom:939.570000px;}
.y111{bottom:941.550000px;}
.y6b{bottom:944.250000px;}
.y33{bottom:944.610000px;}
.ye4{bottom:946.230000px;}
.y138{bottom:948.210000px;}
.y7{bottom:960.090000px;}
.y160{bottom:960.270000px;}
.y110{bottom:965.310000px;}
.y32{bottom:968.370000px;}
.y80{bottom:968.550000px;}
.y137{bottom:968.910000px;}
.y15f{bottom:980.970000px;}
.y6{bottom:984.030000px;}
.y10f{bottom:989.250000px;}
.y136{bottom:989.610000px;}
.y31{bottom:992.130000px;}
.y15e{bottom:1001.670000px;}
.ye3{bottom:1004.190000px;}
.y135{bottom:1010.310000px;}
.y10e{bottom:1013.010000px;}
.y30{bottom:1016.070000px;}
.y1c7{bottom:1016.415000px;}
.y15d{bottom:1022.370000px;}
.ye2{bottom:1027.770000px;}
.y10d{bottom:1036.770000px;}
.y5{bottom:1037.490000px;}
.y2f{bottom:1039.830000px;}
.y134{bottom:1043.070000px;}
.y4{bottom:1059.120000px;}
.y10c{bottom:1060.380000px;}
.ya0{bottom:1063.260000px;}
.y2e{bottom:1063.620000px;}
.ye1{bottom:1063.800000px;}
.y1bf{bottom:1103.040000px;}
.y1{bottom:1117.800000px;}
.y1c4{bottom:1121.040000px;}
.h25{height:14.760000px;}
.h18{height:20.685000px;}
.h22{height:21.420000px;}
.h7{height:23.745000px;}
.h9{height:23.760000px;}
.ha{height:23.781000px;}
.h8{height:23.925000px;}
.h17{height:24.690000px;}
.h19{height:26.805000px;}
.h26{height:27.000000px;}
.h23{height:27.180000px;}
.h24{height:31.500000px;}
.h27{height:32.580000px;}
.h1d{height:36.165000px;}
.h1f{height:36.171000px;}
.h16{height:36.180000px;}
.h1c{height:36.201000px;}
.h1e{height:36.345000px;}
.h15{height:36.360000px;}
.hc{height:37.065000px;}
.hd{height:37.245000px;}
.h10{height:37.605000px;}
.h11{height:38.685000px;}
.h12{height:38.865000px;}
.h13{height:38.902500px;}
.hb{height:41.400000px;}
.h5{height:47.344922px;}
.h1b{height:47.505000px;}
.h4{height:48.802500px;}
.h20{height:52.066406px;}
.hf{height:53.709961px;}
.h6{height:70.628906px;}
.h1{height:70.664062px;}
.h3{height:72.562500px;}
.h21{height:74.004654px;}
.h14{height:78.480000px;}
.h1a{height:84.621000px;}
.h2{height:90.703125px;}
.he{height:324.000000px;}
.h0{height:1188.000000px;}
.w5{width:34.185000px;}
.w3{width:47.520000px;}
.w7{width:52.185000px;}
.w23{width:53.985000px;}
.w2b{width:54.021000px;}
.w26{width:55.080000px;}
.w29{width:56.145000px;}
.w24{width:56.181000px;}
.w2c{width:57.225000px;}
.w27{width:57.240000px;}
.w2a{width:60.465000px;}
.w25{width:61.560000px;}
.w28{width:65.916000px;}
.we{width:74.160000px;}
.w19{width:74.700000px;}
.w10{width:75.405000px;}
.wc{width:81.021000px;}
.w17{width:81.561000px;}
.w1b{width:81.885000px;}
.w1{width:82.431000px;}
.wd{width:87.840000px;}
.w18{width:88.560000px;}
.w1c{width:96.501000px;}
.w11{width:101.541000px;}
.w1d{width:102.591000px;}
.wf{width:110.016000px;}
.w1e{width:110.181000px;}
.w1a{width:110.736000px;}
.w22{width:111.261000px;}
.w2d{width:113.242500px;}
.w2{width:115.401000px;}
.w21{width:116.625000px;}
.w1f{width:116.640000px;}
.w20{width:123.156000px;}
.w8{width:138.231000px;}
.w13{width:139.491000px;}
.w4{width:155.910000px;}
.w2e{width:164.010000px;}
.w6{width:168.135000px;}
.w9{width:168.855000px;}
.w14{width:170.115000px;}
.wb{width:176.955000px;}
.w16{width:178.395000px;}
.wa{width:184.170000px;}
.w15{width:185.610000px;}
.w32{width:276.375000px;}
.w31{width:341.700000px;}
.w2f{width:393.375000px;}
.w30{width:421.635000px;}
.w12{width:636.660000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:7.011000px;}
.xf{left:8.091000px;}
.x23{left:9.756000px;}
.x3b{left:12.765000px;}
.x22{left:16.596000px;}
.x3c{left:38.145000px;}
.x44{left:51.870000px;}
.x40{left:66.060000px;}
.x1d{left:81.435000px;}
.x24{left:92.550000px;}
.x35{left:99.000000px;}
.x1{left:108.036000px;}
.x16{left:111.105000px;}
.x5{left:113.256000px;}
.x6{left:116.676000px;}
.x21{left:126.465000px;}
.x42{left:128.010000px;}
.x8{left:132.336000px;}
.x36{left:135.036000px;}
.xa{left:140.616000px;}
.x3e{left:154.440000px;}
.x9{left:156.450000px;}
.x3{left:174.990000px;}
.x10{left:190.485000px;}
.x4{left:205.230000px;}
.x2d{left:211.365000px;}
.x1e{left:230.940000px;}
.xc{left:234.930000px;}
.x17{left:249.345000px;}
.x26{left:250.605000px;}
.x41{left:251.685000px;}
.x25{left:262.875000px;}
.x31{left:265.365000px;}
.x3a{left:268.785000px;}
.xd{left:300.675000px;}
.x3d{left:304.635000px;}
.x11{left:305.895000px;}
.x2e{left:321.555000px;}
.x1a{left:330.375000px;}
.x29{left:332.175000px;}
.x7{left:353.055000px;}
.xb{left:369.795000px;}
.x1f{left:373.650000px;}
.x32{left:383.115000px;}
.x18{left:418.215000px;}
.x27{left:420.735000px;}
.x2f{left:438.195000px;}
.x2{left:445.575000px;}
.x38{left:477.075000px;}
.xe{left:486.075000px;}
.x1b{left:492.375000px;}
.x2a{left:495.615000px;}
.x12{left:509.340000px;}
.x37{left:513.105000px;}
.x20{left:519.735000px;}
.x13{left:543.540000px;}
.x30{left:561.360000px;}
.x19{left:602.400000px;}
.x28{left:606.360000px;}
.x33{left:617.520000px;}
.x1c{left:677.820000px;}
.x2b{left:688.260000px;}
.x14{left:711.690000px;}
.x34{left:732.030000px;}
.x15{left:744.810000px;}
.x39{left:751.650000px;}
.x43{left:810.150000px;}
.x3f{left:821.310000px;}
@media print{
.v4{vertical-align:-33.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsb{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.408000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls8{letter-spacing:495.077333pt;}
.wsa{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.280000pt;}
.wsc{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:296.101333pt;}
.ws5{word-spacing:484.282667pt;}
._3{margin-left:-4.672000pt;}
._2{margin-left:-3.072000pt;}
._5{margin-left:-1.914667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.146667pt;}
._a{width:2.160000pt;}
._11{width:3.130667pt;}
._10{width:4.160000pt;}
._9{width:5.120000pt;}
._4{width:6.016000pt;}
._6{width:6.976000pt;}
._7{width:7.925333pt;}
._1c{width:8.896000pt;}
._e{width:10.368000pt;}
._f{width:11.392000pt;}
._12{width:12.496000pt;}
._13{width:13.504000pt;}
._b{width:14.528000pt;}
._18{width:17.408000pt;}
._19{width:18.368000pt;}
._1a{width:19.520000pt;}
._38{width:20.864000pt;}
._14{width:22.080000pt;}
._15{width:23.424000pt;}
._2e{width:25.152000pt;}
._2c{width:26.688000pt;}
._2b{width:27.584000pt;}
._43{width:28.528000pt;}
._c{width:29.418667pt;}
._d{width:30.842667pt;}
._1d{width:32.645333pt;}
._1f{width:33.898667pt;}
._8{width:35.584000pt;}
._52{width:36.672000pt;}
._2d{width:37.568000pt;}
._16{width:38.656000pt;}
._17{width:39.872000pt;}
._5a{width:40.768000pt;}
._24{width:41.664000pt;}
._25{width:42.560000pt;}
._33{width:43.653333pt;}
._30{width:44.608000pt;}
._31{width:45.760000pt;}
._1b{width:47.808000pt;}
._29{width:49.280000pt;}
._2a{width:50.757333pt;}
._42{width:52.538667pt;}
._41{width:53.440000pt;}
._23{width:55.808000pt;}
._46{width:57.664000pt;}
._32{width:59.200000pt;}
._34{width:60.416000pt;}
._4d{width:61.696000pt;}
._4a{width:63.360000pt;}
._4f{width:64.512000pt;}
._35{width:67.392000pt;}
._36{width:68.458667pt;}
._47{width:69.952000pt;}
._48{width:71.680000pt;}
._49{width:73.152000pt;}
._50{width:75.072000pt;}
._28{width:76.800000pt;}
._37{width:78.016000pt;}
._22{width:79.040000pt;}
._51{width:81.728000pt;}
._20{width:83.114667pt;}
._21{width:84.480000pt;}
._4c{width:86.528000pt;}
._3d{width:90.048000pt;}
._3e{width:91.072000pt;}
._1e{width:93.248000pt;}
._39{width:94.138667pt;}
._53{width:98.112000pt;}
._4b{width:100.928000pt;}
._54{width:105.018667pt;}
._57{width:107.392000pt;}
._58{width:113.472000pt;}
._56{width:119.808000pt;}
._2f{width:149.578667pt;}
._44{width:157.760000pt;}
._45{width:158.784000pt;}
._55{width:171.136000pt;}
._26{width:192.682667pt;}
._27{width:193.664000pt;}
._40{width:220.533333pt;}
._3f{width:221.610667pt;}
._3a{width:226.048000pt;}
._3c{width:308.458667pt;}
._59{width:321.408000pt;}
._3b{width:370.250667pt;}
._4e{width:513.984000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y1c3{bottom:-1.288000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:4.000000pt;}
.y1bc{bottom:4.653333pt;}
.yb5{bottom:6.546667pt;}
.yaa{bottom:6.560000pt;}
.yad{bottom:6.720000pt;}
.yf8{bottom:7.520000pt;}
.yfb{bottom:9.440000pt;}
.y1c5{bottom:9.600000pt;}
.y1be{bottom:9.773333pt;}
.y1c0{bottom:13.600000pt;}
.y1c8{bottom:14.253333pt;}
.ye0{bottom:15.813333pt;}
.y105{bottom:17.586667pt;}
.y10a{bottom:17.592000pt;}
.y103{bottom:17.626667pt;}
.y107{bottom:17.746667pt;}
.yf6{bottom:17.760000pt;}
.yf4{bottom:17.920000pt;}
.yc3{bottom:18.560000pt;}
.yc6{bottom:18.720000pt;}
.ye5{bottom:19.040000pt;}
.ye7{bottom:20.000000pt;}
.yea{bottom:20.160000pt;}
.yec{bottom:20.200000pt;}
.yc0{bottom:22.400000pt;}
.y1c2{bottom:25.320000pt;}
.y102{bottom:27.680000pt;}
.ydf{bottom:42.400000pt;}
.y3{bottom:51.872000pt;}
.yf2{bottom:55.360000pt;}
.yd4{bottom:58.013333pt;}
.y100{bottom:60.666667pt;}
.y2{bottom:70.272000pt;}
.yd3{bottom:79.133333pt;}
.yd5{bottom:79.200000pt;}
.yd0{bottom:96.093333pt;}
.y10b{bottom:100.192000pt;}
.yd6{bottom:100.386667pt;}
.y133{bottom:100.672000pt;}
.y185{bottom:100.992000pt;}
.y2d{bottom:104.352000pt;}
.ycd{bottom:107.232000pt;}
.y1b6{bottom:108.672000pt;}
.y7f{bottom:108.992000pt;}
.y54{bottom:109.472000pt;}
.y1c1{bottom:115.392000pt;}
.y109{bottom:115.400000pt;}
.y19d{bottom:116.512000pt;}
.y132{bottom:119.072000pt;}
.y184{bottom:119.392000pt;}
.y6a{bottom:120.192000pt;}
.yd7{bottom:121.600000pt;}
.y15c{bottom:127.072000pt;}
.y1c6{bottom:128.032000pt;}
.y7e{bottom:130.112000pt;}
.y53{bottom:130.592000pt;}
.y2c{bottom:132.032000pt;}
.yd2{bottom:134.240000pt;}
.y19c{bottom:134.906667pt;}
.y131{bottom:137.466667pt;}
.y183{bottom:137.786667pt;}
.ycc{bottom:139.066667pt;}
.y9f{bottom:141.146667pt;}
.y69{bottom:141.306667pt;}
.yd8{bottom:142.786667pt;}
.y15b{bottom:145.466667pt;}
.y108{bottom:147.560000pt;}
.y2b{bottom:150.906667pt;}
.y7d{bottom:151.226667pt;}
.y52{bottom:151.706667pt;}
.y19b{bottom:153.306667pt;}
.y130{bottom:155.866667pt;}
.y182{bottom:156.186667pt;}
.y9e{bottom:162.266667pt;}
.y68{bottom:162.426667pt;}
.y15a{bottom:163.866667pt;}
.yd9{bottom:163.973333pt;}
.y2a{bottom:169.306667pt;}
.ycb{bottom:170.906667pt;}
.y19a{bottom:171.706667pt;}
.y51{bottom:172.986667pt;}
.y181{bottom:174.586667pt;}
.y1ba{bottom:177.946667pt;}
.y106{bottom:179.720000pt;}
.y159{bottom:182.266667pt;}
.y12f{bottom:182.906667pt;}
.y7c{bottom:183.226667pt;}
.y9d{bottom:183.386667pt;}
.y67{bottom:183.546667pt;}
.yda{bottom:185.186667pt;}
.y29{bottom:187.706667pt;}
.y180{bottom:192.986667pt;}
.y50{bottom:194.106667pt;}
.y158{bottom:200.666667pt;}
.yca{bottom:202.746667pt;}
.y9c{bottom:204.666667pt;}
.y66{bottom:204.826667pt;}
.y28{bottom:206.106667pt;}
.ydb{bottom:206.373333pt;}
.y17f{bottom:211.386667pt;}
.y104{bottom:212.040000pt;}
.yd1{bottom:214.786667pt;}
.y7b{bottom:215.066667pt;}
.y4f{bottom:215.226667pt;}
.y157{bottom:219.066667pt;}
.y1ac{bottom:221.946667pt;}
.yb6{bottom:223.386667pt;}
.y27{bottom:224.506667pt;}
.y9b{bottom:225.786667pt;}
.y65{bottom:225.946667pt;}
.ydc{bottom:227.546667pt;}
.y1b5{bottom:229.786667pt;}
.yc9{bottom:234.586667pt;}
.y7a{bottom:236.026667pt;}
.y4e{bottom:236.346667pt;}
.y156{bottom:237.466667pt;}
.yb4{bottom:238.760000pt;}
.y1ab{bottom:240.346667pt;}
.y17e{bottom:240.506667pt;}
.y26{bottom:242.906667pt;}
.yff{bottom:244.840000pt;}
.y9a{bottom:246.906667pt;}
.y64{bottom:247.066667pt;}
.y1b4{bottom:248.186667pt;}
.ydd{bottom:248.733333pt;}
.y12c{bottom:254.946667pt;}
.y155{bottom:255.906667pt;}
.y79{bottom:257.346667pt;}
.y4d{bottom:257.666667pt;}
.y1aa{bottom:258.786667pt;}
.y17d{bottom:258.946667pt;}
.yb3{bottom:260.546667pt;}
.y25{bottom:261.346667pt;}
.ycf{bottom:261.413333pt;}
.y99{bottom:268.066667pt;}
.y63{bottom:268.226667pt;}
.yde{bottom:269.946667pt;}
.yc8{bottom:272.706667pt;}
.y154{bottom:274.306667pt;}
.y12b{bottom:276.066667pt;}
.y1a9{bottom:277.186667pt;}
.y17c{bottom:277.346667pt;}
.y101{bottom:277.826667pt;}
.y4c{bottom:278.786667pt;}
.y24{bottom:279.746667pt;}
.yb2{bottom:281.666667pt;}
.yc7{bottom:288.226667pt;}
.y78{bottom:289.186667pt;}
.y98{bottom:289.346667pt;}
.y62{bottom:289.506667pt;}
.y153{bottom:292.706667pt;}
.y1a8{bottom:295.586667pt;}
.y17b{bottom:295.746667pt;}
.y12a{bottom:297.346667pt;}
.y23{bottom:298.146667pt;}
.y4b{bottom:299.906667pt;}
.yb1{bottom:302.786667pt;}
.y199{bottom:303.426667pt;}
.y77{bottom:310.306667pt;}
.y97{bottom:310.466667pt;}
.y61{bottom:310.626667pt;}
.y152{bottom:311.106667pt;}
.y1a7{bottom:313.986667pt;}
.y17a{bottom:314.146667pt;}
.y22{bottom:316.546667pt;}
.y129{bottom:318.466667pt;}
.y4a{bottom:321.026667pt;}
.yc5{bottom:321.186667pt;}
.y198{bottom:321.826667pt;}
.yb0{bottom:324.066667pt;}
.y151{bottom:329.506667pt;}
.y76{bottom:331.426667pt;}
.y96{bottom:331.586667pt;}
.y60{bottom:331.746667pt;}
.y1a6{bottom:332.386667pt;}
.y179{bottom:332.546667pt;}
.y21{bottom:334.946667pt;}
.yfe{bottom:338.146667pt;}
.y197{bottom:340.226667pt;}
.y49{bottom:342.306667pt;}
.yaf{bottom:345.186667pt;}
.y128{bottom:350.466667pt;}
.y1a5{bottom:350.786667pt;}
.y1b3{bottom:350.946667pt;}
.y95{bottom:352.706667pt;}
.y5f{bottom:352.866667pt;}
.y20{bottom:353.346667pt;}
.yc4{bottom:354.306667pt;}
.y150{bottom:358.626667pt;}
.y178{bottom:361.506667pt;}
.y48{bottom:363.426667pt;}
.yae{bottom:366.306667pt;}
.y1a4{bottom:369.186667pt;}
.y1b2{bottom:369.346667pt;}
.yfd{bottom:369.986667pt;}
.y127{bottom:371.426667pt;}
.y1f{bottom:371.746667pt;}
.y94{bottom:373.826667pt;}
.y5e{bottom:374.146667pt;}
.y14f{bottom:377.026667pt;}
.y177{bottom:379.906667pt;}
.y75{bottom:384.386667pt;}
.y47{bottom:384.546667pt;}
.yac{bottom:387.426667pt;}
.y1b1{bottom:387.746667pt;}
.yc2{bottom:387.906667pt;}
.y1e{bottom:390.146667pt;}
.y126{bottom:392.546667pt;}
.y93{bottom:395.106667pt;}
.y5d{bottom:395.266667pt;}
.y14e{bottom:395.426667pt;}
.y176{bottom:398.306667pt;}
.yfc{bottom:401.826667pt;}
.y74{bottom:405.506667pt;}
.y46{bottom:405.666667pt;}
.y196{bottom:406.146667pt;}
.y1d{bottom:408.546667pt;}
.yab{bottom:408.706667pt;}
.y125{bottom:413.666667pt;}
.y14d{bottom:413.826667pt;}
.y92{bottom:416.226667pt;}
.y5c{bottom:416.386667pt;}
.y175{bottom:416.706667pt;}
.yfa{bottom:416.866667pt;}
.ybf{bottom:421.666667pt;}
.y1bb{bottom:424.373333pt;}
.y195{bottom:424.546667pt;}
.y1c{bottom:426.946667pt;}
.ya9{bottom:430.466667pt;}
.y14c{bottom:432.226667pt;}
.y124{bottom:434.946667pt;}
.y174{bottom:435.106667pt;}
.y91{bottom:437.346667pt;}
.y5b{bottom:437.506667pt;}
.yf9{bottom:440.706667pt;}
.y194{bottom:442.946667pt;}
.y1bd{bottom:443.893333pt;}
.y1b{bottom:445.186667pt;}
.y45{bottom:448.066667pt;}
.y1b9{bottom:449.026667pt;}
.y14b{bottom:450.626667pt;}
.y173{bottom:453.506667pt;}
.y123{bottom:456.066667pt;}
.ya8{bottom:456.226667pt;}
.y73{bottom:458.466667pt;}
.y5a{bottom:458.786667pt;}
.yf7{bottom:459.106667pt;}
.y193{bottom:461.346667pt;}
.y1a{bottom:463.586667pt;}
.y14a{bottom:469.026667pt;}
.y44{bottom:469.186667pt;}
.y172{bottom:471.906667pt;}
.ybe{bottom:476.546667pt;}
.y122{bottom:477.186667pt;}
.y72{bottom:479.773333pt;}
.y59{bottom:479.933333pt;}
.yf5{bottom:481.053333pt;}
.y19{bottom:482.013333pt;}
.y1b8{bottom:487.293333pt;}
.y149{bottom:487.453333pt;}
.y43{bottom:490.333333pt;}
.y12e{bottom:490.493333pt;}
.ybd{bottom:497.533333pt;}
.y192{bottom:498.173333pt;}
.y121{bottom:498.333333pt;}
.y18{bottom:500.413333pt;}
.y90{bottom:500.893333pt;}
.y58{bottom:501.053333pt;}
.y1a3{bottom:508.733333pt;}
.ya7{bottom:511.133333pt;}
.y42{bottom:511.613333pt;}
.y71{bottom:511.773333pt;}
.yf1{bottom:513.853333pt;}
.y148{bottom:516.573333pt;}
.ybc{bottom:518.653333pt;}
.y17{bottom:518.813333pt;}
.y171{bottom:519.453333pt;}
.y120{bottom:519.613333pt;}
.y8f{bottom:522.013333pt;}
.y57{bottom:522.173333pt;}
.y191{bottom:527.133333pt;}
.y41{bottom:532.733333pt;}
.y147{bottom:534.973333pt;}
.y16{bottom:537.213333pt;}
.y170{bottom:537.853333pt;}
.y11f{bottom:540.733333pt;}
.y8e{bottom:543.133333pt;}
.y56{bottom:543.293333pt;}
.y190{bottom:545.533333pt;}
.yf3{bottom:546.813333pt;}
.ybb{bottom:550.653333pt;}
.y146{bottom:553.373333pt;}
.y70{bottom:553.853333pt;}
.y15{bottom:555.613333pt;}
.y16f{bottom:556.253333pt;}
.y11e{bottom:561.853333pt;}
.y18f{bottom:563.933333pt;}
.y8d{bottom:564.093333pt;}
.ya6{bottom:564.413333pt;}
.y55{bottom:564.573333pt;}
.y40{bottom:564.733333pt;}
.yba{bottom:571.613333pt;}
.y145{bottom:571.773333pt;}
.y14{bottom:574.013333pt;}
.y1a2{bottom:574.493333pt;}
.y16e{bottom:574.653333pt;}
.y6f{bottom:574.973333pt;}
.y18e{bottom:582.333333pt;}
.y11d{bottom:582.973333pt;}
.ya5{bottom:585.533333pt;}
.y3f{bottom:585.693333pt;}
.y144{bottom:590.013333pt;}
.y13{bottom:592.413333pt;}
.y1a1{bottom:592.893333pt;}
.y16d{bottom:593.053333pt;}
.ya3{bottom:596.253333pt;}
.y8c{bottom:596.413333pt;}
.y1b0{bottom:600.733333pt;}
.yf0{bottom:601.693333pt;}
.y11c{bottom:604.253333pt;}
.y3e{bottom:606.813333pt;}
.y6e{bottom:606.973333pt;}
.y143{bottom:608.413333pt;}
.yb9{bottom:609.853333pt;}
.y12{bottom:610.813333pt;}
.y1a0{bottom:611.293333pt;}
.y16c{bottom:611.453333pt;}
.y8b{bottom:617.373333pt;}
.ya4{bottom:617.533333pt;}
.y1af{bottom:619.133333pt;}
.yef{bottom:622.653333pt;}
.y11b{bottom:625.373333pt;}
.y142{bottom:626.813333pt;}
.y3d{bottom:627.933333pt;}
.y11{bottom:629.213333pt;}
.y19f{bottom:629.693333pt;}
.y18d{bottom:629.853333pt;}
.yb8{bottom:637.533333pt;}
.y8a{bottom:638.493333pt;}
.y16b{bottom:640.413333pt;}
.y11a{bottom:646.493333pt;}
.y18c{bottom:648.253333pt;}
.y3c{bottom:649.213333pt;}
.y10{bottom:650.013333pt;}
.yee{bottom:654.653333pt;}
.y141{bottom:655.933333pt;}
.y16a{bottom:658.813333pt;}
.y89{bottom:659.613333pt;}
.y18b{bottom:666.653333pt;}
.y119{bottom:667.613333pt;}
.y3b{bottom:670.333333pt;}
.y12d{bottom:670.493333pt;}
.yb7{bottom:671.933333pt;}
.yce{bottom:672.000000pt;}
.y140{bottom:674.333333pt;}
.y169{bottom:677.213333pt;}
.yf{bottom:679.453333pt;}
.y88{bottom:680.733333pt;}
.y18a{bottom:685.053333pt;}
.yed{bottom:686.173333pt;}
.y118{bottom:688.733333pt;}
.y3a{bottom:691.453333pt;}
.y13f{bottom:692.733333pt;}
.y168{bottom:695.613333pt;}
.ye{bottom:697.853333pt;}
.yeb{bottom:701.533333pt;}
.y87{bottom:702.013333pt;}
.y189{bottom:703.453333pt;}
.y117{bottom:710.053333pt;}
.y13e{bottom:711.173333pt;}
.y39{bottom:712.613333pt;}
.y167{bottom:714.053333pt;}
.yd{bottom:715.973333pt;}
.y188{bottom:721.893333pt;}
.ya2{bottom:722.853333pt;}
.y86{bottom:723.173333pt;}
.y13d{bottom:729.573333pt;}
.y116{bottom:731.173333pt;}
.y166{bottom:732.453333pt;}
.y38{bottom:733.893333pt;}
.ye9{bottom:736.133333pt;}
.y187{bottom:740.293333pt;}
.yc{bottom:743.493333pt;}
.y85{bottom:744.293333pt;}
.y165{bottom:750.853333pt;}
.y115{bottom:752.293333pt;}
.y37{bottom:755.013333pt;}
.ya1{bottom:755.173333pt;}
.y13c{bottom:758.693333pt;}
.yb{bottom:764.613333pt;}
.y84{bottom:765.413333pt;}
.y19e{bottom:769.093333pt;}
.y1b7{bottom:769.253333pt;}
.ye8{bottom:770.693333pt;}
.y114{bottom:773.413333pt;}
.y36{bottom:776.133333pt;}
.y13b{bottom:777.093333pt;}
.y164{bottom:779.973333pt;}
.ya{bottom:785.733333pt;}
.y83{bottom:786.693333pt;}
.y186{bottom:787.653333pt;}
.y113{bottom:794.693333pt;}
.y1ae{bottom:795.493333pt;}
.y6d{bottom:796.933333pt;}
.y35{bottom:797.253333pt;}
.y163{bottom:798.373333pt;}
.ye6{bottom:805.893333pt;}
.y13a{bottom:806.053333pt;}
.y82{bottom:807.813333pt;}
.y1ad{bottom:813.893333pt;}
.y112{bottom:815.813333pt;}
.y9{bottom:816.613333pt;}
.y162{bottom:816.773333pt;}
.y6c{bottom:818.213333pt;}
.y34{bottom:818.533333pt;}
.y139{bottom:824.453333pt;}
.y81{bottom:828.613333pt;}
.y8{bottom:832.293333pt;}
.y161{bottom:835.173333pt;}
.y111{bottom:836.933333pt;}
.y6b{bottom:839.333333pt;}
.y33{bottom:839.653333pt;}
.ye4{bottom:841.093333pt;}
.y138{bottom:842.853333pt;}
.y7{bottom:853.413333pt;}
.y160{bottom:853.573333pt;}
.y110{bottom:858.053333pt;}
.y32{bottom:860.773333pt;}
.y80{bottom:860.933333pt;}
.y137{bottom:861.253333pt;}
.y15f{bottom:871.973333pt;}
.y6{bottom:874.693333pt;}
.y10f{bottom:879.333333pt;}
.y136{bottom:879.653333pt;}
.y31{bottom:881.893333pt;}
.y15e{bottom:890.373333pt;}
.ye3{bottom:892.613333pt;}
.y135{bottom:898.053333pt;}
.y10e{bottom:900.453333pt;}
.y30{bottom:903.173333pt;}
.y1c7{bottom:903.480000pt;}
.y15d{bottom:908.773333pt;}
.ye2{bottom:913.573333pt;}
.y10d{bottom:921.573333pt;}
.y5{bottom:922.213333pt;}
.y2f{bottom:924.293333pt;}
.y134{bottom:927.173333pt;}
.y4{bottom:941.440000pt;}
.y10c{bottom:942.560000pt;}
.ya0{bottom:945.120000pt;}
.y2e{bottom:945.440000pt;}
.ye1{bottom:945.600000pt;}
.y1bf{bottom:980.480000pt;}
.y1{bottom:993.600000pt;}
.y1c4{bottom:996.480000pt;}
.h25{height:13.120000pt;}
.h18{height:18.386667pt;}
.h22{height:19.040000pt;}
.h7{height:21.106667pt;}
.h9{height:21.120000pt;}
.ha{height:21.138667pt;}
.h8{height:21.266667pt;}
.h17{height:21.946667pt;}
.h19{height:23.826667pt;}
.h26{height:24.000000pt;}
.h23{height:24.160000pt;}
.h24{height:28.000000pt;}
.h27{height:28.960000pt;}
.h1d{height:32.146667pt;}
.h1f{height:32.152000pt;}
.h16{height:32.160000pt;}
.h1c{height:32.178667pt;}
.h1e{height:32.306667pt;}
.h15{height:32.320000pt;}
.hc{height:32.946667pt;}
.hd{height:33.106667pt;}
.h10{height:33.426667pt;}
.h11{height:34.386667pt;}
.h12{height:34.546667pt;}
.h13{height:34.580000pt;}
.hb{height:36.800000pt;}
.h5{height:42.084375pt;}
.h1b{height:42.226667pt;}
.h4{height:43.380000pt;}
.h20{height:46.281250pt;}
.hf{height:47.742188pt;}
.h6{height:62.781250pt;}
.h1{height:62.812500pt;}
.h3{height:64.500000pt;}
.h21{height:65.781915pt;}
.h14{height:69.760000pt;}
.h1a{height:75.218667pt;}
.h2{height:80.625000pt;}
.he{height:288.000000pt;}
.h0{height:1056.000000pt;}
.w5{width:30.386667pt;}
.w3{width:42.240000pt;}
.w7{width:46.386667pt;}
.w23{width:47.986667pt;}
.w2b{width:48.018667pt;}
.w26{width:48.960000pt;}
.w29{width:49.906667pt;}
.w24{width:49.938667pt;}
.w2c{width:50.866667pt;}
.w27{width:50.880000pt;}
.w2a{width:53.746667pt;}
.w25{width:54.720000pt;}
.w28{width:58.592000pt;}
.we{width:65.920000pt;}
.w19{width:66.400000pt;}
.w10{width:67.026667pt;}
.wc{width:72.018667pt;}
.w17{width:72.498667pt;}
.w1b{width:72.786667pt;}
.w1{width:73.272000pt;}
.wd{width:78.080000pt;}
.w18{width:78.720000pt;}
.w1c{width:85.778667pt;}
.w11{width:90.258667pt;}
.w1d{width:91.192000pt;}
.wf{width:97.792000pt;}
.w1e{width:97.938667pt;}
.w1a{width:98.432000pt;}
.w22{width:98.898667pt;}
.w2d{width:100.660000pt;}
.w2{width:102.578667pt;}
.w21{width:103.666667pt;}
.w1f{width:103.680000pt;}
.w20{width:109.472000pt;}
.w8{width:122.872000pt;}
.w13{width:123.992000pt;}
.w4{width:138.586667pt;}
.w2e{width:145.786667pt;}
.w6{width:149.453333pt;}
.w9{width:150.093333pt;}
.w14{width:151.213333pt;}
.wb{width:157.293333pt;}
.w16{width:158.573333pt;}
.wa{width:163.706667pt;}
.w15{width:164.986667pt;}
.w32{width:245.666667pt;}
.w31{width:303.733333pt;}
.w2f{width:349.666667pt;}
.w30{width:374.786667pt;}
.w12{width:565.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.232000pt;}
.xf{left:7.192000pt;}
.x23{left:8.672000pt;}
.x3b{left:11.346667pt;}
.x22{left:14.752000pt;}
.x3c{left:33.906667pt;}
.x44{left:46.106667pt;}
.x40{left:58.720000pt;}
.x1d{left:72.386667pt;}
.x24{left:82.266667pt;}
.x35{left:88.000000pt;}
.x1{left:96.032000pt;}
.x16{left:98.760000pt;}
.x5{left:100.672000pt;}
.x6{left:103.712000pt;}
.x21{left:112.413333pt;}
.x42{left:113.786667pt;}
.x8{left:117.632000pt;}
.x36{left:120.032000pt;}
.xa{left:124.992000pt;}
.x3e{left:137.280000pt;}
.x9{left:139.066667pt;}
.x3{left:155.546667pt;}
.x10{left:169.320000pt;}
.x4{left:182.426667pt;}
.x2d{left:187.880000pt;}
.x1e{left:205.280000pt;}
.xc{left:208.826667pt;}
.x17{left:221.640000pt;}
.x26{left:222.760000pt;}
.x41{left:223.720000pt;}
.x25{left:233.666667pt;}
.x31{left:235.880000pt;}
.x3a{left:238.920000pt;}
.xd{left:267.266667pt;}
.x3d{left:270.786667pt;}
.x11{left:271.906667pt;}
.x2e{left:285.826667pt;}
.x1a{left:293.666667pt;}
.x29{left:295.266667pt;}
.x7{left:313.826667pt;}
.xb{left:328.706667pt;}
.x1f{left:332.133333pt;}
.x32{left:340.546667pt;}
.x18{left:371.746667pt;}
.x27{left:373.986667pt;}
.x2f{left:389.506667pt;}
.x2{left:396.066667pt;}
.x38{left:424.066667pt;}
.xe{left:432.066667pt;}
.x1b{left:437.666667pt;}
.x2a{left:440.546667pt;}
.x12{left:452.746667pt;}
.x37{left:456.093333pt;}
.x20{left:461.986667pt;}
.x13{left:483.146667pt;}
.x30{left:498.986667pt;}
.x19{left:535.466667pt;}
.x28{left:538.986667pt;}
.x33{left:548.906667pt;}
.x1c{left:602.506667pt;}
.x2b{left:611.786667pt;}
.x14{left:632.613333pt;}
.x34{left:650.693333pt;}
.x15{left:662.053333pt;}
.x39{left:668.133333pt;}
.x43{left:720.133333pt;}
.x3f{left:730.053333pt;}
}




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