From d85d85f68772d96483b5eeeda195a04aa8a5f901 Mon Sep 17 00:00:00 2001 From: Guido Wolf Reichert Date: Thu, 7 Jul 2022 18:18:39 +0200 Subject: [PATCH] initial commit --- .gitattributes | 26 + .gitignore | 12 + .../Examples/TeaCupComponentBased1.mo | 32 + .../Examples/TeaCupComponentBased1S.mo | 30 + .../Examples/TeaCupComponentBased2.mo | 32 + .../Examples/TeaCupComponentBased2S.mo | 30 + .../Examples/TeaCupComponentBased3.mo | 22 + .../Examples/TeaCupComponentBased4.mo | 36 + .../Examples/TeaCupComponentBased5.mo | 48 + ISDC2022_Workshops/Examples/TeaCupTextual.mo | 25 + ISDC2022_Workshops/Examples/package.mo | 12 + ISDC2022_Workshops/Examples/package.order | 8 + .../Resources/HTML/HTMLFiles/HMTL.css | 13045 ++++++++++++++++ .../HTML/HTMLFiles/xhtml-math11-f.dtd | 9823 ++++++++++++ .../UsersGuide/Contact/ContactInformation.png | Bin 0 -> 92403 bytes .../Images/UsersGuide/Contact/bslFullLogo.png | Bin 0 -> 28927 bytes ISDC2022_Workshops/Resources/Images/icon.svg | 9 + ISDC2022_Workshops/UsersGuide/Contact.mo | 57 + ISDC2022_Workshops/UsersGuide/Licence.mo | 10 + ISDC2022_Workshops/UsersGuide/package.mo | 12 + ISDC2022_Workshops/UsersGuide/package.order | 2 + ISDC2022_Workshops/package.mo | 20 + ISDC2022_Workshops/package.order | 2 + LICENSE.md | 287 + README.md | 24 + 25 files changed, 23604 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased1.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased1S.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased2.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased2S.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased3.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased4.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupComponentBased5.mo create mode 100644 ISDC2022_Workshops/Examples/TeaCupTextual.mo create mode 100644 ISDC2022_Workshops/Examples/package.mo create mode 100644 ISDC2022_Workshops/Examples/package.order create mode 100644 ISDC2022_Workshops/Resources/HTML/HTMLFiles/HMTL.css create mode 100644 ISDC2022_Workshops/Resources/HTML/HTMLFiles/xhtml-math11-f.dtd create mode 100644 ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/ContactInformation.png create mode 100644 ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/bslFullLogo.png create mode 100644 ISDC2022_Workshops/Resources/Images/icon.svg create mode 100644 ISDC2022_Workshops/UsersGuide/Contact.mo create mode 100644 ISDC2022_Workshops/UsersGuide/Licence.mo create mode 100644 ISDC2022_Workshops/UsersGuide/package.mo create mode 100644 ISDC2022_Workshops/UsersGuide/package.order create mode 100644 ISDC2022_Workshops/package.mo create mode 100644 ISDC2022_Workshops/package.order create mode 100644 LICENSE.md create mode 100644 README.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9dfb284 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,26 @@ +# Explicitly declare text files we want to always be normalized and converted +# to native line endings on checkout. +*.c text +*.csv text +*.h text +*.htm* text +*.md text +*.mo text +*.mos text +*.order text +*.py text +*.svg text +*.txt text +*.yml text +.gitattributes text +.gitignore text +LICENSE text + +# pdf and notebooks as binary +*.pdf binary +*.nb binary + +# list of files that git archive should ignore +.gitattributes export-ignore +.github export-ignore +.gitignore export-ignore \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dca3888 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# exclude following files +.bak +.bak-mo +.exe +.exp +.la +.lo +.m4 +.o +.deps +.dirstamp +.libs diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased1.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased1.mo new file mode 100644 index 0000000..e18d071 --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased1.mo @@ -0,0 +1,32 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased1 "Component-based version of the tea cup model (unidirectional flow)" + extends BusinessSimulation.Icons.Example; + inner BusinessSimulation.ModelSettings modelSettings(modelDisplayTimeBase = BusinessSimulation.Types.TimeBases.minutes, modelTimeHorizon(displayUnit = "min") = 1800, dt(displayUnit = "min") = 15) annotation(Placement(visible = true, transformation(origin = {-40, -60}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Stocks.MaterialStock tempCup(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), initialValue = 90) "Temperature of tea in a cup" annotation(Placement(visible = true, transformation(origin = {0, -20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Flows.Unidirectional.Transition losingHeat "Heat flow from the cup" annotation(Placement(visible = true, transformation(origin = {40, -20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.SourcesOrSinks.Cloud cloud "Unlimited heat capacity of ambient" annotation(Placement(visible = true, transformation(origin = {85, -20}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverter tempRoom(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), value = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {-50, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Gap tempDifference "Room temperature minus the temperature of the tea" annotation(Placement(visible = true, transformation(origin = {-20, 40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Division heatLoss "Rate for the outflow of heat" annotation(Placement(visible = true, transformation(origin = {15, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverterTime adjTime(value(displayUnit = "min") = 1200) "Time constant for the cooling process" annotation(Placement(visible = true, transformation(origin = {-20, 1.717}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); +equation + connect(tempCup.outflow, losingHeat.portA) annotation(Line(visible = true, origin = {20, -20}, points = {{-10, 0}, {10, 0}}, color = {128, 0, 128})); + connect(losingHeat.portB, cloud.massPort) annotation(Line(visible = true, origin = {62.5, -20}, points = {{-12.5, 0}, {12.5, 0}}, color = {128, 0, 128})); + connect(tempDifference.y, heatLoss.u1) annotation(Line(visible = true, origin = {-3.75, 32.5}, points = {{-8.25, 7.5}, {-1.25, 7.5}, {-1.25, -7.5}, {10.75, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(adjTime.y, heatLoss.u2) annotation(Line(visible = true, origin = {-4.25, 8.358}, points = {{-9.75, -6.642}, {-0.75, -6.642}, {-0.75, 6.642}, {11.25, 6.642}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(heatLoss.y, losingHeat.u) annotation(Line(visible = true, origin = {31, 10}, points = {{-8, 10}, {4, 10}, {4, -20}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempRoom.y, tempDifference.u2) annotation(Line(visible = true, origin = {-35.5, 27.5}, points = {{-8.5, -7.5}, {0.5, -7.5}, {0.5, 7.5}, {7.5, 7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.y2, tempDifference.u1) annotation(Line(visible = true, origin = {-45.109, 10}, points = {{34.609, -35}, {-24.891, -35}, {-24.891, 35}, {17.109, 35}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are modeling the outflow from the cup as a unidirectional flow (losingHeat). Since in this case the flow is an explicit outflow, we need to modify the equation for heatFlow in the textual model and determine its postive rate as (tempCup - tempRoom)/adjTime. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased1S +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup.y)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using unidirectional flow", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased1; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased1S.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased1S.mo new file mode 100644 index 0000000..b861284 --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased1S.mo @@ -0,0 +1,30 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased1S "Component-based version of the tea cup model (unidirectional sink)" + extends BusinessSimulation.Icons.Example; + inner BusinessSimulation.ModelSettings modelSettings(modelDisplayTimeBase = BusinessSimulation.Types.TimeBases.minutes, modelTimeHorizon(displayUnit = "min") = 1800, dt(displayUnit = "min") = 15) annotation(Placement(visible = true, transformation(origin = {-40, -60}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Stocks.MaterialStock tempCup(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), initialValue = 90) "Temperature of tea in a cup" annotation(Placement(visible = true, transformation(origin = {0, -20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverter tempRoom(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), value = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {-50, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Gap tempDifference "Room temperature minus the temperature of the tea" annotation(Placement(visible = true, transformation(origin = {-20, 40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Division heatLoss "Rate for the outflow of heat" annotation(Placement(visible = true, transformation(origin = {15, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverterTime adjTime(value(displayUnit = "min") = 1200) "Time constant for the cooling process" annotation(Placement(visible = true, transformation(origin = {-20, 1.717}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.SourcesOrSinks.Decline losingHeat "Heatflow from the cup" annotation(Placement(visible = true, transformation(origin = {40, -20}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); +equation + connect(tempDifference.y, heatLoss.u1) annotation(Line(visible = true, origin = {-3.75, 32.5}, points = {{-8.25, 7.5}, {-1.25, 7.5}, {-1.25, -7.5}, {10.75, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(adjTime.y, heatLoss.u2) annotation(Line(visible = true, origin = {-4.25, 8.358}, points = {{-9.75, -6.642}, {-0.75, -6.642}, {-0.75, 6.642}, {11.25, 6.642}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempRoom.y, tempDifference.u2) annotation(Line(visible = true, origin = {-35.5, 27.5}, points = {{-8.5, -7.5}, {0.5, -7.5}, {0.5, 7.5}, {7.5, 7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.y2, tempDifference.u1) annotation(Line(visible = true, origin = {-45.109, 10}, points = {{34.609, -35}, {-24.891, -35}, {-24.891, 35}, {17.109, 35}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.outflow, losingHeat.massPort) annotation(Line(visible = true, origin = {20, -20}, points = {{-10, 0}, {10, 0}}, color = {128, 0, 128})); + connect(heatLoss.y, losingHeat.u) annotation(Line(visible = true, origin = {37.667, 10}, points = {{-14.667, 10}, {7.333, 10}, {7.333, -20}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are modeling the outflow from the cup as a unidirectional flow (losingHeat). Since in this case the flow is an explicit outflow, we need to modify the equation for heatFlow in the textual model and determine its postive rate as (tempCup - tempRoom)/adjTime. This variant combines flow and cloud into a single SourceOrSink component. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased1 +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup.y)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using unidirectional sink", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased1S; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased2.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased2.mo new file mode 100644 index 0000000..8c31530 --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased2.mo @@ -0,0 +1,32 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased2 "Component-based version of the tea cup model (bidirectional flow)" + extends BusinessSimulation.Icons.Example; + inner BusinessSimulation.ModelSettings modelSettings(modelDisplayTimeBase = BusinessSimulation.Types.TimeBases.minutes, modelTimeHorizon(displayUnit = "min") = 1800, dt(displayUnit = "min") = 15) annotation(Placement(visible = true, transformation(origin = {-40, -60}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Stocks.MaterialStock tempCup(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), initialValue = 90) "Temperature of tea in a cup" annotation(Placement(visible = true, transformation(origin = {0, -40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.SourcesOrSinks.Cloud cloud "Unlimited heat capacity of ambient" annotation(Placement(visible = true, transformation(origin = {85, -40}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverter tempRoom(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), value = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {-60, 40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Gap tempDifference "Room temperature minus the temperature of the tea" annotation(Placement(visible = true, transformation(origin = {-20, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Division heatFlow "Heatflow rate" annotation(Placement(visible = true, transformation(origin = {15, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverterTime adjTime(value(displayUnit = "min") = 1200) "Time constant for the cooling process" annotation(Placement(visible = true, transformation(origin = {-20, -18.283}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Flows.Bidirectional.Switching changing "Flow of heat to or from the cup" annotation(Placement(visible = true, transformation(origin = {40, -40}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); +equation + connect(tempDifference.y, heatFlow.u1) annotation(Line(visible = true, origin = {-3.75, 12.5}, points = {{-8.25, 7.5}, {-1.25, 7.5}, {-1.25, -7.5}, {10.75, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(adjTime.y, heatFlow.u2) annotation(Line(visible = true, origin = {-4.25, -11.642}, points = {{-9.75, -6.642}, {-0.75, -6.642}, {-0.75, 6.642}, {11.25, 6.642}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempRoom.y, tempDifference.u1) annotation(Line(visible = true, origin = {-43, 32.5}, points = {{-11, 7.5}, {-2, 7.5}, {-2, -7.5}, {15, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.y2, tempDifference.u2) annotation(Line(visible = true, origin = {-39.625, 5}, points = {{29.125, -50}, {-20.375, -50}, {-20.375, 10}, {11.625, 10}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(heatFlow.y, changing.u) annotation(Line(visible = true, origin = {37.667, -10}, points = {{-14.667, 10}, {7.333, 10}, {7.333, -20}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.outflow, changing.portB) annotation(Line(visible = true, origin = {20, -40}, points = {{-10, 0}, {10, 0}}, color = {128, 0, 128})); + connect(changing.portA, cloud.massPort) annotation(Line(visible = true, origin = {62.5, -40}, points = {{-12.5, 0}, {12.5, 0}}, color = {128, 0, 128})); + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are modeling the outflow from the cup as a biflow (changing) and can thus have all formulae match up with the textual model. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased2S +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup.y)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using biflow", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased2; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased2S.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased2S.mo new file mode 100644 index 0000000..a949865 --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased2S.mo @@ -0,0 +1,30 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased2S "Component-based version of the tea cup model (bidirectional sink)" + extends BusinessSimulation.Icons.Example; + inner BusinessSimulation.ModelSettings modelSettings(modelDisplayTimeBase = BusinessSimulation.Types.TimeBases.minutes, modelTimeHorizon(displayUnit = "min") = 1800, dt(displayUnit = "min") = 15) annotation(Placement(visible = true, transformation(origin = {-40, -60}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Stocks.MaterialStock tempCup(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), initialValue = 90) "Temperature of tea in a cup" annotation(Placement(visible = true, transformation(origin = {0, -40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverter tempRoom(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), value = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {-60, 40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Gap tempDifference "Room temperature minus the temperature of the tea" annotation(Placement(visible = true, transformation(origin = {-20, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.Division heatFlow "Heatflow rate" annotation(Placement(visible = true, transformation(origin = {15, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverterTime adjTime(value(displayUnit = "min") = 1200) "Time constant for the cooling process" annotation(Placement(visible = true, transformation(origin = {-20, -18.283}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.SourcesOrSinks.ExogenousChange changing "Flow of heat to or from the cup" annotation(Placement(visible = true, transformation(origin = {40, -40}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); +equation + connect(tempDifference.y, heatFlow.u1) annotation(Line(visible = true, origin = {-3.75, 12.5}, points = {{-8.25, 7.5}, {-1.25, 7.5}, {-1.25, -7.5}, {10.75, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(adjTime.y, heatFlow.u2) annotation(Line(visible = true, origin = {-4.25, -11.642}, points = {{-9.75, -6.642}, {-0.75, -6.642}, {-0.75, 6.642}, {11.25, 6.642}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempRoom.y, tempDifference.u1) annotation(Line(visible = true, origin = {-43, 32.5}, points = {{-11, 7.5}, {-2, 7.5}, {-2, -7.5}, {15, -7.5}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.y2, tempDifference.u2) annotation(Line(visible = true, origin = {-39.625, -15}, points = {{29.125, -30}, {-20.375, -30}, {-20.375, 30}, {11.625, 30}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(heatFlow.y, changing.u) annotation(Line(visible = true, origin = {37.667, -10}, points = {{-14.667, 10}, {7.333, 10}, {7.333, -20}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempCup.outflow, changing.massPort) annotation(Line(visible = true, origin = {20, -40}, points = {{-10, 0}, {10, 0}}, color = {128, 0, 128})); + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are modeling the outflow from the cup as a biflow (changing) and can thus have all formulae match up with the textual model. This variant combines flow and cloud into a single SourceOrSink component. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased2 +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup.y)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using bidirectional sink", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased2S; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased3.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased3.mo new file mode 100644 index 0000000..b2b8ade --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased3.mo @@ -0,0 +1,22 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased3 "Component-based version of the tea cup model (smooth)" + extends BusinessSimulation.Icons.Example; + inner BusinessSimulation.ModelSettings modelSettings(modelDisplayTimeBase = BusinessSimulation.Types.TimeBases.minutes, modelTimeHorizon(displayUnit = "min") = 1800, dt(displayUnit = "min") = 15) annotation(Placement(visible = true, transformation(origin = {-40, -40}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverter tempRoom(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), value = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {-40, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.ConstantConverterTime adjTime(value(displayUnit = "min") = 1200) "Time constant for the cooling process" annotation(Placement(visible = true, transformation(origin = {-20, 20}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + BusinessSimulation.Converters.DiscreteDelay.Smooth tempCup(redeclare replaceable type OutputType = BusinessSimulation.Types.Reals(unit = "degC"), initialValue = 90, hasConstantDelayTime = false) "Temperature of tea in the cup" annotation(Placement(visible = true, transformation(origin = {0, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); +equation + connect(adjTime.y, tempCup.u_delayTime) annotation(Line(visible = true, origin = {-4.667, 15}, points = {{-9.333, 5}, {4.667, 5}, {4.667, -10}}, color = {1, 37, 163}, smooth = Smooth.Bezier)); + connect(tempRoom.y, tempCup.u) annotation(Line(visible = true, origin = {-21.681, 0}, points = {{-12.319, 0}, {12.319, 0}}, color = {1, 37, 163})); + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are modeling the cooling process rather compactly as a first-order exponential smooth. All we need is the room temperature (tempRoom) and the adjustment time (adjTime). +

+

See also

+

+TeaCupTextual +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup.y)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using smooth", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased3; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased4.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased4.mo new file mode 100644 index 0000000..e23c389 --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased4.mo @@ -0,0 +1,36 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased4 "Component-based version of the tea cup model (conductive heat transfer)" + import Modelica.SIunits.{Mass,SpecificHeatCapacity,Length,ThermalConductivity,ThermalConductance}; + import Modelica.Constants.pi; + extends BusinessSimulation.Icons.Example; + // parameters + parameter Mass m(displayUnit = "g") = 0.25 "Mass of tea in the cup" annotation(Dialog(group = "Specification for hot liquid in the cup")); + parameter SpecificHeatCapacity c_p = 4181 "Specific heat capacity for liquid water/tea" annotation(Dialog(group = "Specification for hot liquid in the cup")); + parameter Length d(displayUnit = "cm") = 0.07 "Outer diameter of cup" annotation(Dialog(group = "Specification of cup")); + parameter Length h(displayUnit = "cm") = 0.09 "Height of cup" annotation(Dialog(group = "Specification of cup")); + parameter Length t(displayUnit = "mm") = 0.003 "Thickness of cup" annotation(Dialog(group = "Specification of cup")); + parameter ThermalConductivity k = 1.5 "Thermal conductivity of cup material (e.g., porcelain = 1.5 [W/m.k])" annotation(Dialog(group = "Specification of cup")); + // components + Modelica.Thermal.HeatTransfer.Components.HeatCapacitor teaCup(T.start = 363.15, C = m * c_p, der_T.start = 0) "Tea cup model" annotation(Placement(visible = true, transformation(origin = {-40, 20}, extent = {{-10, -10}, {10, 10}}, rotation = -360))); + Modelica.Thermal.HeatTransfer.Celsius.FixedTemperature tempRoom(T = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {50, -30}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Celsius.TemperatureSensor tempCup "Temperature of tea in the cup" annotation(Placement(visible = true, transformation(origin = {27.866, 30}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Components.ThermalConductor conduction(G = G_cup) "Conductive heatflow according to the surface, thickness, and conductivity of the cup" annotation(Placement(visible = true, transformation(origin = {0, -30}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); +protected + parameter ThermalConductance G_cup = 2 * pi * k * h / log(d / (d - t)) "Thermal conductance of cup" annotation(Dialog(group = "Specification of cup", enable = false)); +equation + connect(teaCup.port, tempCup.port) annotation(Line(visible = true, origin = {-24.583, 14.386}, points = {{-15.417, -4.386}, {-15.417, -14.386}, {24.583, -14.386}, {24.583, 15.614}, {42.449, 15.614}}, color = {191, 0, 0})); + connect(teaCup.port, conduction.port_a) annotation(Line(visible = true, origin = {-30, -16.667}, points = {{-10, 26.667}, {-10, -13.333}, {20, -13.333}}, color = {191, 0, 0})); + connect(conduction.port_b, tempRoom.port) annotation(Line(visible = true, origin = {25, -30}, points = {{-15, 0}, {15, 0}}, color = {191, 0, 0})); + annotation(experiment(StopTime = 3600, __Wolfram_DisplayTimeUnit = "min"), Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are using components from the Thermal package of the Modelica Standard Library (MSL) to come up with a rather simplified model of a heat capacitator, i.e., the tea in the cup, which is losing heat via conduction to the air in the room. The rate of the heat flow is implicitly determined by the thermal conductance of the cup, which is calculated from elementary properties of the cup. In a physical model we typically need sensors to report quantities and in this model we are using a thermometer to report the intensive quantity tempCup. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased5 +

+"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using physical components (MSL)", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased4; diff --git a/ISDC2022_Workshops/Examples/TeaCupComponentBased5.mo b/ISDC2022_Workshops/Examples/TeaCupComponentBased5.mo new file mode 100644 index 0000000..4aa98bf --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupComponentBased5.mo @@ -0,0 +1,48 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupComponentBased5 "Component-based version of the tea cup model (convective and conductive heat transfer)" + import Modelica.SIunits.{Mass,SpecificHeatCapacity,Length,ThermalConductivity,ThermalConductance,CoefficientOfHeatTransfer}; + import Modelica.Constants.pi; + extends BusinessSimulation.Icons.Example; + // parameters + parameter Mass m(displayUnit = "g") = 0.25 "Mass of tea in the cup" annotation(Dialog(group = "Specification for hot liquid in the cup")); + parameter SpecificHeatCapacity c_p = 4181 "Specific heat capacity for liquid water/tea" annotation(Dialog(group = "Specification for hot liquid in the cup")); + parameter Length d(displayUnit = "cm") = 0.07 "Outer diameter of cup" annotation(Dialog(group = "Specification of cup")); + parameter Length h(displayUnit = "cm") = 0.09 "Height of cup" annotation(Dialog(group = "Specification of cup")); + parameter Length t(displayUnit = "mm") = 0.003 "Thickness of cup" annotation(Dialog(group = "Specification of cup")); + parameter ThermalConductivity k = 1.5 "Thermal conductivity of cup material (e.g., porcelain = 1.5 [W/m.k])" annotation(Dialog(group = "Specification of cup")); + parameter CoefficientOfHeatTransfer h_tea = 750 "Convective heat transfer coefficient for tea" annotation(Dialog(group = "Specficiation of convective heat transfer")); + parameter CoefficientOfHeatTransfer h_air = 10 "Convective heat transfer coefficient for free air, i.e., not forced" annotation(Dialog(group = "Specficiation of convective heat transfer")); + // components + Modelica.Thermal.HeatTransfer.Components.HeatCapacitor teaCup(T.start = 363.15, C = m * c_p, der_T.start = 0) "Tea cup model" annotation(Placement(visible = true, transformation(origin = {-60, 20}, extent = {{-10, -10}, {10, 10}}, rotation = -360))); + Modelica.Thermal.HeatTransfer.Celsius.FixedTemperature tempRoom(T = 20) "Room temperature" annotation(Placement(visible = true, transformation(origin = {80, -30}, extent = {{10, -10}, {-10, 10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Celsius.TemperatureSensor tempCup "Temperature of tea in the cup" annotation(Placement(visible = true, transformation(origin = {10, 30}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Components.ThermalResistor conduction_cup(R = 1 / G_cup) "Condictive resistance of cup walls" annotation(Placement(visible = true, transformation(origin = {0, -30}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Components.ConvectiveResistor convection_tea "Convective resistance of tea" annotation(Placement(visible = true, transformation(origin = {-40, -30}, extent = {{10, 10}, {-10, -10}}, rotation = 0))); + Modelica.Thermal.HeatTransfer.Components.ConvectiveResistor convection_air "Convective resistance of air" annotation(Placement(visible = true, transformation(origin = {40, -30}, extent = {{-10, 10}, {10, -10}}, rotation = 0))); + Modelica.Blocks.Sources.Constant Rc_tea(k = 1 / Gc_tea) "Thermal resistance for hot liquid" annotation(Placement(visible = true, transformation(origin = {-70, -70}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); + Modelica.Blocks.Sources.Constant Rc_air(k = 1 / Gc_air) "Thermal resistance for air" annotation(Placement(visible = true, transformation(origin = {10, -70}, extent = {{-10, -10}, {10, 10}}, rotation = 0))); +protected + parameter ThermalConductance G_cup = 2 * pi * k * h / log(d / (d - t)) "Thermal conductance of cup" annotation(Dialog(group = "Specification of cup", enable = false)); + parameter ThermalConductance Gc_tea = 2 * pi * (d - t) * h * h_tea "Convective thermal conductance of tea" annotation(Dialog(enable = false, group = "Specficiation of convective heat transfer")); + parameter ThermalConductance Gc_air = 2 * pi * d * h * h_air "Convective thermal conductance of air" annotation(Dialog(enable = false, group = "Specficiation of convective heat transfer")); +equation + connect(teaCup.port, tempCup.port) annotation(Line(visible = true, origin = {-44.583, 14.386}, points = {{-15.417, -4.386}, {-15.417, -14.386}, {24.583, -14.386}, {24.583, 15.614}, {44.583, 15.614}}, color = {191, 0, 0})); + connect(teaCup.port, convection_tea.fluid) annotation(Line(visible = true, origin = {-56.667, -16.667}, points = {{-3.333, 26.667}, {-3.333, -13.333}, {6.667, -13.333}}, color = {191, 0, 0})); + connect(convection_tea.solid, conduction_cup.port_a) annotation(Line(visible = true, origin = {-20, -30}, points = {{-10, 0}, {10, 0}}, color = {191, 0, 0})); + connect(tempRoom.port, convection_air.fluid) annotation(Line(visible = true, origin = {60, -30}, points = {{10, 0}, {-10, 0}}, color = {191, 0, 0})); + connect(conduction_cup.port_b, convection_air.solid) annotation(Line(visible = true, origin = {20, -30}, points = {{-10, 0}, {10, 0}}, color = {191, 0, 0})); + connect(Rc_tea.y, convection_tea.Rc) annotation(Line(visible = true, origin = {-46.333, -60}, points = {{-12.667, -10}, {6.333, -10}, {6.333, 20}}, color = {1, 37, 163})); + connect(Rc_air.y, convection_air.Rc) annotation(Line(visible = true, origin = {33.667, -60}, points = {{-12.667, -10}, {6.333, -10}, {6.333, 20}}, color = {1, 37, 163})); + annotation(experiment(StopTime = 3600, __Wolfram_DisplayTimeUnit = "min"), Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+In this component-based version of the TeaCup model we are using components from the Thermal package of the Modelica Standard Library (MSL) to come up with a more elaborate model of a heat capacitator, i.e., the tea in the cup, which is losing heat via convective and conductive heat transfer to the air in the room. +

+

See also

+

+TeaCupTextual, +TeaCupComponentBased4 +

+"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {0, 65}, textColor = {76, 112, 136}, extent = {{-140, -6}, {140, 6}}, textString = "... using more physical components (MSL)", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end TeaCupComponentBased5; diff --git a/ISDC2022_Workshops/Examples/TeaCupTextual.mo b/ISDC2022_Workshops/Examples/TeaCupTextual.mo new file mode 100644 index 0000000..8b2aede --- /dev/null +++ b/ISDC2022_Workshops/Examples/TeaCupTextual.mo @@ -0,0 +1,25 @@ +within ISDC2022_Workshops.Examples; + +model TeaCupTextual "Textual model for cooling cup" + import BusinessSimulation.Units.{Time,Rate}; + extends BusinessSimulation.Icons.Example; + // parameters + parameter Real initTempCup(unit = "degC") = 90 "Initial temperature in the cup"; + parameter Real tempRoom(unit = "degC") = 20 "Temperature in the room"; + parameter Time adjTime(displayUnit = "min") = 600 "Time constant for adjustment process"; + // stock & flow variables + Real tempCup(start = initTempCup, unit = "degC") "Temperature in the cup is modeled as a stock"; + Rate heatFlow(displayUnit = "1/min") "Outflow of heat from the cup"; +equation + heatFlow = (tempRoom - tempCup) / adjTime; + der(tempCup) = heatFlow; + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

+This is a stylized model of heat loss for a cup of tea. The model given here is textual only, e.g., there are no components with connections. +

+

+The temperature in the cup is modeled as a stock (tempCup) with a flow (heatFlow). The outflow of heat, i.e., a negative flow of heat, can be obtained as (tempRoom - tempCup)/adjTime. +

+", figures = {Figure(title = "Cooling Process", identifier = "cooling", preferred = true, plots = {Plot(curves = {Curve(y = tempCup)}, __Wolfram_markerAppearances = {MarkerAppearance(marker = "d3d94"), MarkerAppearance(marker = "e4da3")})}, caption = "Teacup cooling down to room temperature", __Wolfram_markers = {Marker(identifier = "e4da3", position = MarkerPosition(x = 300, xUnit = "s")), Marker(identifier = "d3d94", position = MarkerPosition(x = 600, xUnit = "s"))}, __Wolfram_intervals = {Interval(identifier = "556e0", startMarker = "e4da3", endMarker = "d3d94")})}), experiment(StopTime = 1800, __Wolfram_DisplayTimeUnit = "min"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}), graphics = {Text(visible = true, origin = {3.28, 10}, rotation = 33.802, textColor = {76, 112, 136}, extent = {{-86.72, -12}, {86.72, 12}}, textString = "textual model only", fontName = "Lato Black")})); +end TeaCupTextual; diff --git a/ISDC2022_Workshops/Examples/package.mo b/ISDC2022_Workshops/Examples/package.mo new file mode 100644 index 0000000..a00f676 --- /dev/null +++ b/ISDC2022_Workshops/Examples/package.mo @@ -0,0 +1,12 @@ +within ISDC2022_Workshops; + +package Examples "Exemplary models" + extends BusinessSimulation.Icons.ExamplesPackage; + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

This package contains models used as examples in the workshops.

+
+
+

Copyright © 2022 Guido Wolf Reichert
Licensed under the EUPL-1.2 or later

+")); +end Examples; diff --git a/ISDC2022_Workshops/Examples/package.order b/ISDC2022_Workshops/Examples/package.order new file mode 100644 index 0000000..31fadc1 --- /dev/null +++ b/ISDC2022_Workshops/Examples/package.order @@ -0,0 +1,8 @@ +TeaCupTextual +TeaCupComponentBased1 +TeaCupComponentBased1S +TeaCupComponentBased2 +TeaCupComponentBased2S +TeaCupComponentBased3 +TeaCupComponentBased4 +TeaCupComponentBased5 diff --git a/ISDC2022_Workshops/Resources/HTML/HTMLFiles/HMTL.css b/ISDC2022_Workshops/Resources/HTML/HTMLFiles/HMTL.css new file mode 100644 index 0000000..dd008c5 --- /dev/null +++ b/ISDC2022_Workshops/Resources/HTML/HTMLFiles/HMTL.css @@ -0,0 +1,13045 @@ +/* Notebook:*/ +html { + font-size: 12px; + padding: 8px; +} +/* Title:*/ +.Title { + font-size: 45px; + font-family: Source Sans Pro; + color: #CC0B02; + line-height: 1.08889; + margin-left: 27px; + margin-top: 30px; + margin-bottom: 10px; + padding: 8px; +} +.TitleInline { + font-size: 45px; + font-family: Source Sans Pro; + color: #CC0B02; + line-height: 1.08889; + margin-left: 27px; + margin-top: 30px; + margin-bottom: 10px; + padding: 8px; +} +/* Subtitle:*/ +.Subtitle { + font-size: 24px; + font-family: Source Sans Pro; + color: #595959; + margin-left: 27px; + margin-top: 2px; + margin-bottom: 20px; + padding: 8px; +} +.SubtitleInline { + font-size: 24px; + font-family: Source Sans Pro; + color: #595959; + margin-left: 27px; + margin-top: 2px; + margin-bottom: 20px; + padding: 8px; +} +/* Subsubtitle:*/ +.Subsubtitle { + font-size: 16px; + font-family: Source Sans Pro; + color: #4C4C4C; + margin-left: 27px; + margin-top: 2px; + margin-bottom: 8px; + padding: 8px; +} +.SubsubtitleInline { + font-size: 16px; + font-family: Source Sans Pro; + color: #4C4C4C; + margin-left: 27px; + margin-top: 2px; + margin-bottom: 8px; + padding: 8px; +} +/* Chapter:*/ +.Chapter { + font-size: 34px; + font-family: Source Sans Pro; + color: #343434; + line-height: 1.11765; + margin-left: 27px; + margin-top: 15px; + margin-bottom: 10px; + padding: 8px; +} +.ChapterInline { + font-size: 34px; + font-family: Source Sans Pro; + color: #343434; + line-height: 1.11765; + margin-left: 27px; + margin-top: 15px; + margin-bottom: 10px; + padding: 8px; +} +/* Subchapter:*/ +.Subchapter { + font-size: 28px; + font-family: Source Sans Pro; + color: #4C4C4C; + margin-left: 63px; + margin-top: 20px; + margin-bottom: 8px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.SubchapterInline { + font-size: 28px; + font-family: Source Sans Pro; + color: #4C4C4C; + margin-left: 63px; + margin-top: 20px; + margin-bottom: 8px; + padding: 8px; +} +/* Section:*/ +.Section { + font-size: 28px; + font-family: Source Sans Pro; + color: #C24B16; + line-height: 1.07143; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #B2B2B2; + margin-left: 27px; + margin-top: 18px; + margin-bottom: 8px; + padding: 4px; +} +.SectionInline { + font-size: 28px; + font-family: Source Sans Pro; + color: #C24B16; + line-height: 1.07143; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #B2B2B2; + margin-left: 27px; + margin-top: 18px; + margin-bottom: 8px; + padding: 4px; +} +/* Subsection:*/ +.Subsection { + font-size: 20px; + font-family: Source Sans Pro; + color: #C66C29; + margin-left: 51px; + margin-right: 3px; + margin-top: 20px; + margin-bottom: 8px; + padding: 8px; +} +.SubsectionInline { + font-size: 20px; + font-family: Source Sans Pro; + color: #C66C29; + margin-left: 51px; + margin-right: 3px; + margin-top: 20px; + margin-bottom: 8px; + padding: 8px; +} +/* Subsubsection:*/ +.Subsubsection { + font-size: 19px; + font-family: Source Sans Pro; + color: #B63809; + margin-left: 66px; + margin-top: 12px; + margin-bottom: 8px; + padding: 8px; +} +.SubsubsectionInline { + font-size: 19px; + font-family: Source Sans Pro; + color: #B63809; + margin-left: 66px; + margin-top: 12px; + margin-bottom: 8px; + padding: 8px; +} +/* Subsubsubsection:*/ +.Subsubsubsection { + font-size: 15px; + font-family: Source Sans Pro; + font-weight: bold; + color: #C66C29; + margin-left: 66px; + margin-top: 10px; + margin-bottom: 2px; + padding: 8px; +} +.SubsubsubsectionInline { + font-size: 15px; + font-family: Source Sans Pro; + font-weight: bold; + color: #C66C29; + margin-left: 66px; + margin-top: 10px; + margin-bottom: 2px; + padding: 8px; +} +/* Subsubsubsubsection:*/ +.Subsubsubsubsection { + font-size: 14px; + font-family: Source Sans Pro; + color: #960E00; + margin-left: 66px; + margin-top: 10px; + margin-bottom: 2px; + padding: 8px; +} +.SubsubsubsubsectionInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #960E00; + margin-left: 66px; + margin-top: 10px; + margin-bottom: 2px; + padding: 8px; +} +/* Text:*/ +.Text { + font-size: 15px; + font-family: Source Sans Pro; + line-height: 1.2; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +.TextInline { + font-size: 15px; + font-family: Source Sans Pro; + line-height: 1.2; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +/* SmallText:*/ +.SmallText { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + line-height: 1.21429; + margin-left: 66px; + margin-right: 10px; + margin-top: 6px; + margin-bottom: 6px; + padding: 8px; +} +.SmallTextInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + line-height: 1.21429; + margin-left: 66px; + margin-right: 10px; + margin-top: 6px; + margin-bottom: 6px; + padding: 8px; +} +/* CodeText:*/ +.CodeText { + font-size: 15px; + font-family: Source Sans Pro; + color: #737373; + line-height: 1.06667; + margin-left: 66px; + margin-right: 10px; + margin-top: 15px; + margin-bottom: 3px; + padding: 8px; +} +.CodeTextInline { + font-size: 15px; + font-family: Source Sans Pro; + color: #737373; + line-height: 1.06667; + margin-left: 66px; + margin-right: 10px; + margin-top: 15px; + margin-bottom: 3px; + padding: 8px; +} +/* Item:*/ +.Item { + font-size: 15px; + font-family: Source Sans Pro; + margin-left: 81px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.ItemInline { + font-size: 15px; + font-family: Source Sans Pro; + margin-left: 81px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 4px; + padding: 8px; +} +/* ItemParagraph:*/ +.ItemParagraph { + font-size: 15px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 81px; + margin-right: 10px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +.ItemParagraphInline { + font-size: 15px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 81px; + margin-right: 10px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +/* Subitem:*/ +.Subitem { + font-size: 14px; + font-family: Source Sans Pro; + margin-left: 105px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.SubitemInline { + font-size: 14px; + font-family: Source Sans Pro; + margin-left: 105px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* SubitemParagraph:*/ +.SubitemParagraph { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 105px; + margin-right: 12px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +.SubitemParagraphInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 105px; + margin-right: 12px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +/* Subsubitem:*/ +.Subsubitem { + font-size: 13px; + font-family: Source Sans Pro; + margin-left: 129px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.SubsubitemInline { + font-size: 13px; + font-family: Source Sans Pro; + margin-left: 129px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* SubsubitemParagraph:*/ +.SubsubitemParagraph { + font-size: 13px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 129px; + margin-right: 12px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +.SubsubitemParagraphInline { + font-size: 13px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 129px; + margin-right: 12px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +/* ItemNumbered:*/ +.ItemNumbered { + font-size: 15px; + font-family: Source Sans Pro; + margin-left: 81px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.ItemNumberedInline { + font-size: 15px; + font-family: Source Sans Pro; + margin-left: 81px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 4px; + padding: 8px; +} +/* SubitemNumbered:*/ +.SubitemNumbered { + font-size: 14px; + font-family: Source Sans Pro; + margin-left: 105px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.SubitemNumberedInline { + font-size: 14px; + font-family: Source Sans Pro; + margin-left: 105px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* SubsubitemNumbered:*/ +.SubsubitemNumbered { + font-size: 13px; + font-family: Source Sans Pro; + margin-left: 129px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.SubsubitemNumberedInline { + font-size: 13px; + font-family: Source Sans Pro; + margin-left: 129px; + margin-right: 12px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* SideCaptionArray:*/ +.SideCaptionArray { + font-size: 15px; + font-family: Source Sans Pro; + line-height: 1.2; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +.SideCaptionArrayInline { + font-size: 15px; + font-family: Source Sans Pro; + line-height: 1.2; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +/* SideCaption:*/ +.SideCaption { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + line-height: 1.21429; + margin-left: 66px; + margin-right: 10px; + margin-top: 6px; + margin-bottom: 6px; + padding: 8px; +} +.SideCaptionInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + line-height: 1.21429; + margin-left: 66px; + margin-right: 10px; + margin-top: 6px; + margin-bottom: 6px; + padding: 8px; +} +/* Input:*/ +.Input { + font-size: 13px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 5px; + padding: 8px; +} +.InputInline { + font-size: 13px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 5px; + padding: 8px; +} +/* InputOnly:*/ +.InputOnly { + font-size: 13px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +.InputOnlyInline { + font-size: 13px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 7px; + padding: 8px; +} +/* ExternalLanguage:*/ +.ExternalLanguage { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #000000; + background-color: #FAF8F2; + border: 1px; + border-style: solid; + border-color: #DAD4B9; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding-left: 4px; + padding-right: 8px; + padding-top: 8px; + padding-bottom: 8px; +} +.ExternalLanguageInline { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #000000; + background-color: #FAF8F2; + border: 1px; + border-style: solid; + border-color: #DAD4B9; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding-left: 4px; + padding-right: 8px; + padding-top: 8px; + padding-bottom: 8px; +} +/* Code:*/ +.Code { + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 10px; + padding: 8px; +} +.CodeInline { + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 10px; + padding: 8px; +} +/* Output:*/ +.Output { + font-size: 13px; + margin-left: 66px; + margin-right: 10px; + margin-top: 5px; + margin-bottom: 12px; + padding: 8px; +} +.OutputInline { + font-size: 13px; + margin-left: 66px; + margin-right: 10px; + margin-top: 5px; + margin-bottom: 12px; + padding: 8px; +} +/* Message:*/ +.Message { + font-size: 11px; + font-family: Segoe UI; + color: #812B27; + line-height: 1; + margin-left: 66px; + padding: 8px; +} +.MessageInline { + font-size: 11px; + font-family: Segoe UI; + color: #812B27; + line-height: 1; + margin-left: 66px; + padding: 8px; +} +/* Print:*/ +.Print { + margin-left: 66px; + padding: 8px; +} +.PrintInline { + margin-left: 66px; + padding: 8px; +} +/* Echo:*/ +.Echo { + margin-left: 66px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.EchoInline { + margin-left: 66px; + padding: 8px; +} +/* EchoBefore:*/ +.EchoBefore { + color: #666666; + margin-left: 66px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.EchoBeforeInline { + color: #666666; + margin-left: 66px; + padding: 8px; +} +/* EchoAfter:*/ +.EchoAfter { + margin-left: 66px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.EchoAfterInline { + margin-left: 66px; + padding: 8px; +} +/* EchoTiming:*/ +.EchoTiming { + margin-left: 66px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.EchoTimingInline { + margin-left: 66px; + padding: 8px; +} +/* InlineFormula:*/ +.InlineFormula { + /* font-size: 1.05 Inherited is not currently supported */ + padding: 8px; +} +.InlineFormulaInline { + /* font-size: 1.05 Inherited is not currently supported */ + padding: 8px; +} +/* DisplayFormula:*/ +.DisplayFormula { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 66px; + padding: 8px; +} +.DisplayFormulaInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 66px; + padding: 8px; +} +/* DisplayFormulaNumbered:*/ +.DisplayFormulaNumbered { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 66px; + padding: 8px; +} +.DisplayFormulaNumberedInline { + font-size: 14px; + font-family: Source Sans Pro; + color: #333333; + margin-left: 66px; + padding: 8px; +} +/* DisplayFormulaEquationNumber:*/ +.DisplayFormulaEquationNumber { + /* font-size: -1 + Inherited is not currently supported */ + font-family: Arial; + padding: 8px; +} +.DisplayFormulaEquationNumberInline { + /* font-size: -1 + Inherited is not currently supported */ + font-family: Arial; + padding: 8px; +} +/* Program:*/ +.Program { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding: 8px; +} +.ProgramInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding: 8px; +} +/* Reference:*/ +.Reference { + line-height: 1; + margin-left: 66px; + margin-right: 10px; + margin-top: 3px; + margin-bottom: 3px; + padding: 8px; +} +.ReferenceInline { + line-height: 1; + margin-left: 66px; + margin-right: 10px; + margin-top: 3px; + margin-bottom: 3px; + padding: 8px; +} +/* Author:*/ +.Author { + font-size: 18px; + font-family: Source Sans Pro; + line-height: 1.16667; + margin-left: 64px; + margin-right: 120px; + margin-top: 6px; + margin-bottom: 2px; + padding: 8px; +} +.AuthorInline { + font-size: 18px; + font-family: Source Sans Pro; + line-height: 1.16667; + margin-left: 64px; + margin-right: 120px; + margin-top: 6px; + margin-bottom: 2px; + padding: 8px; +} +/* Affiliation:*/ +.Affiliation { + font-size: 16px; + font-family: Source Sans Pro; + color: #666666; + line-height: 1.1875; + margin-left: 64px; + margin-right: 120px; + margin-top: 2px; + margin-bottom: 8px; + padding: 8px; +} +.AffiliationInline { + font-size: 16px; + font-family: Source Sans Pro; + color: #666666; + line-height: 1.1875; + margin-left: 64px; + margin-right: 120px; + margin-top: 2px; + margin-bottom: 8px; + padding: 8px; +} +/* Abstract:*/ +.Abstract { + font-size: 15px; + font-family: Source Sans Pro; + font-style: italic; + line-height: 1.2; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 1px; + border-style: solid; + border-color: #B2B2B2; + margin-left: 66px; + margin-right: 120px; + margin-top: 12px; + margin-bottom: 12px; + padding: 8px; +} +.AbstractInline { + font-size: 15px; + font-family: Source Sans Pro; + font-style: italic; + line-height: 1.2; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 1px; + border-style: solid; + border-color: #B2B2B2; + margin-left: 66px; + margin-right: 120px; + margin-top: 12px; + margin-bottom: 12px; + padding: 8px; +} +/* Header:*/ +.Header { + font-size: 7px; + font-family: Verdana; + font-style: italic; + line-height: 2.14286; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +.HeaderInline { + font-size: 7px; + font-family: Verdana; + font-style: italic; + line-height: 2.14286; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +/* HeaderSection:*/ +.HeaderSection { + padding: 8px; +} +.HeaderSectionInline { + padding: 8px; +} +/* HeaderSubsection:*/ +.HeaderSubsection { + padding: 8px; +} +.HeaderSubsectionInline { + padding: 8px; +} +/* HeaderTitle:*/ +.HeaderTitle { + padding: 8px; +} +.HeaderTitleInline { + padding: 8px; +} +/* Footer:*/ +.Footer { + font-size: 6px; + font-family: Verdana; + font-style: italic; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +.FooterInline { + font-size: 6px; + font-family: Verdana; + font-style: italic; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +/* FooterSection:*/ +.FooterSection { + padding: 8px; +} +.FooterSectionInline { + padding: 8px; +} +/* FooterSubsection:*/ +.FooterSubsection { + padding: 8px; +} +.FooterSubsectionInline { + padding: 8px; +} +/* FooterTitle:*/ +.FooterTitle { + padding: 8px; +} +.FooterTitleInline { + padding: 8px; +} +/* PageNumber:*/ +.PageNumber { + font-size: 7px; + font-family: Verdana; + font-weight: bold; + line-height: 2.14286; + margin-left: 0px; + margin-right: 0px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +.PageNumberInline { + font-size: 7px; + font-family: Verdana; + font-weight: bold; + line-height: 2.14286; + margin-left: 0px; + margin-right: 0px; + margin-top: 1px; + margin-bottom: 4px; + padding: 8px; +} +/* MessagesWindow:*/ +.MessagesWindow { + background-color: #F5F5F5; + margin-left: 11px; + padding: 8px; +} +.MessagesWindowInline { + background-color: #F5F5F5; + margin-left: 11px; + padding: 8px; +} +/* MessagesWindowMessage:*/ +.MessagesWindowMessage { + font-size: 11px; + font-family: Segoe UI; + color: #000000; + line-height: 1; + margin-top: 10px; + margin-bottom: 3px; + padding: 8px; +} +.MessagesWindowMessageInline { + font-size: 11px; + font-family: Segoe UI; + color: #000000; + line-height: 1; + margin-top: 10px; + margin-bottom: 3px; + padding: 8px; +} +/* MessagesWindowCellLabel:*/ +.MessagesWindowCellLabel { + font-size: 9px; + font-family: Helvetica; + color: #FF5454; + padding: 8px; +} +.MessagesWindowCellLabelInline { + font-size: 9px; + font-family: Helvetica; + color: #FF5454; + padding: 8px; +} +/* PluginEmbeddedWindow:*/ +.PluginEmbeddedWindow { + padding: 8px; +} +.PluginEmbeddedWindowInline { + padding: 8px; +} +/* PluginInitWindow:*/ +.PluginInitWindow { + padding: 8px; +} +.PluginInitWindowInline { + padding: 8px; +} +/* PluginWindow:*/ +.PluginWindow { + padding: 8px; +} +.PluginWindowInline { + padding: 8px; +} +/* WolframAlphaShort:*/ +.WolframAlphaShort { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.WolframAlphaShortInline { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* WolframAlphaShortInput:*/ +.WolframAlphaShortInput { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.WolframAlphaShortInputInline { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* WolframAlphaLong:*/ +.WolframAlphaLong { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.WolframAlphaLongInline { + font-family: Helvetica; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* WolframAlphaFullOutput:*/ +.WolframAlphaFullOutput { + margin-left: 20px; + margin-right: 10px; + padding: 8px; +} +.WolframAlphaFullOutputInline { + margin-left: 20px; + margin-right: 10px; + padding: 8px; +} +/* ExternalLanguageDefault:*/ +.ExternalLanguageDefault { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #000000; + background-color: #FAF8F2; + border: 1px; + border-style: solid; + border-color: #DAD4B9; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding-left: 4px; + padding-right: 8px; + padding-top: 8px; + padding-bottom: 8px; +} +.ExternalLanguageDefaultInline { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #000000; + background-color: #FAF8F2; + border: 1px; + border-style: solid; + border-color: #DAD4B9; + margin-left: 66px; + margin-right: 10px; + margin-top: 8px; + margin-bottom: 8px; + padding-left: 4px; + padding-right: 8px; + padding-top: 8px; + padding-bottom: 8px; +} +/* NaturalLanguageInput:*/ +.NaturalLanguageInput { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + margin-left: 66px; + margin-right: 21px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.NaturalLanguageInputInline { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + margin-left: 66px; + margin-right: 21px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* NaturalLanguage2DInput:*/ +.NaturalLanguage2DInput { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + margin-left: 66px; + margin-right: 21px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.NaturalLanguage2DInputInline { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + margin-left: 66px; + margin-right: 21px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* DeployedNLInput:*/ +.DeployedNLInput { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + border: System`Convert`CSSDump`ToPoint[None]; + border-style: solid; + border-color: #CCCCCC; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 0px; +} +.DeployedNLInputInline { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + border: System`Convert`CSSDump`ToPoint[None]; + border-style: solid; + border-color: #CCCCCC; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 0px; +} +/* DeployedWLInput:*/ +.DeployedWLInput { + font-size: 11px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 15px; + margin-top: -5px; + margin-bottom: 12px; + padding: 8px; +} +.DeployedWLInputInline { + font-size: 11px; + font-weight: DemiBold; + margin-left: 66px; + margin-right: 15px; + margin-top: -5px; + margin-bottom: 12px; + padding: 8px; +} +/* MessageName:*/ +.MessageName { + color: #9B9B9B; + padding: 8px; +} +.MessageNameInline { + color: #9B9B9B; + padding: 8px; +} +/* MessageTemplate:*/ +.MessageTemplate { + padding: 8px; +} +.MessageTemplateInline { + padding: 8px; +} +/* MessageTemplate2:*/ +.MessageTemplate2 { + padding: 8px; +} +.MessageTemplate2Inline { + padding: 8px; +} +/* MessageMenuLabel:*/ +.MessageMenuLabel { + color: #DD1100; + padding: 8px; +} +.MessageMenuLabelInline { + color: #DD1100; + padding: 8px; +} +/* MessageMenu:*/ +.MessageMenu { + font-size: 11px; + padding: 8px; +} +.MessageMenuInline { + font-size: 11px; + padding: 8px; +} +/* MessageText:*/ +.MessageText { + font-style: normal; + font-weight: normal; + color: #898989; + padding: 8px; +} +.MessageTextInline { + font-style: normal; + font-weight: normal; + color: #898989; + padding: 8px; +} +/* MessageStack:*/ +.MessageStack { + font-size: 11px; + font-weight: normal; + color: #000000; + padding: 8px; +} +.MessageStackInline { + font-size: 11px; + font-weight: normal; + color: #000000; + padding: 8px; +} +/* Assert:*/ +.Assert { + font-size: 11px; + font-family: Segoe UI; + color: #812B27; + background-color: #F0BAA6; + line-height: 1; + border: 1px; + border-style: solid; + border-color: #000000; + margin-left: 66px; + padding: 8px; +} +.AssertInline { + font-size: 11px; + font-family: Segoe UI; + color: #812B27; + background-color: #F0BAA6; + line-height: 1; + border: 1px; + border-style: solid; + border-color: #000000; + margin-left: 66px; + padding: 8px; +} +/* PrintTemporary:*/ +.PrintTemporary { + margin-left: 60px; + padding: 8px; +} +.PrintTemporaryInline { + margin-left: 60px; + padding: 8px; +} +/* CellLabel:*/ +.CellLabel { + font-size: 9px; + font-family: Helvetica; + color: #3B6E93; + margin-top: 0px; + margin-bottom: 0px; +} +/* CellLabelExpired:*/ +.CellLabelExpired { + font-size: 9px; + font-family: Helvetica; + font-style: Italic; + color: #999999; + padding: 8px; +} +.CellLabelExpiredInline { + font-size: 9px; + font-family: Helvetica; + font-style: Italic; + color: #999999; + padding: 8px; +} +/* FrameLabel:*/ +.FrameLabel { + font-size: 9px; + font-family: Helvetica; + padding: 8px; +} +.FrameLabelInline { + font-size: 9px; + font-family: Helvetica; + padding: 8px; +} +/* InformationCell:*/ +.InformationCell { + background-color: #F6EDD6; + margin-left: 20px; + padding: 8px; +} +.InformationCellInline { + background-color: #F6EDD6; + margin-left: 20px; + padding: 8px; +} +/* InfoCell:*/ +.InfoCell { + font-size: 14px; + font-family: Helvetica; + padding: 8px; +} +.InfoCellInline { + font-size: 14px; + font-family: Helvetica; + padding: 8px; +} +/* InfoGrid:*/ +.InfoGrid { + padding: 8px; +} +.InfoGridInline { + padding: 8px; +} +/* PrintUsage:*/ +.PrintUsage { + font-size: 14px; + font-family: Source Sans Pro; + background-color: #F3FBFF; + border-left: 0px; + border-right: 0px; + border-top: 3px; + border-bottom: 0px; + border-style: solid; + border-color: #D9E5F3; + padding: 8px; +} +.PrintUsageInline { + font-size: 14px; + font-family: Source Sans Pro; + background-color: #F3FBFF; + border-left: 0px; + border-right: 0px; + border-top: 3px; + border-bottom: 0px; + border-style: solid; + border-color: #D9E5F3; + padding: 8px; +} +/* InfoHeading:*/ +.InfoHeading { + font-size: 12px; + font-weight: bold; + color: #747474; + padding: 8px; +} +.InfoHeadingInline { + font-size: 12px; + font-weight: bold; + color: #747474; + padding: 8px; +} +/* InformationLink:*/ +.InformationLink { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +.InformationLinkInline { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +/* InformationLinkLF:*/ +.InformationLinkLF { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +.InformationLinkLFInline { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +/* TemplateLink:*/ +.TemplateLink { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +.TemplateLinkInline { + font-family: Source Sans Pro; + color: #454F99; + padding: 8px; +} +/* PluginEmbeddedContent:*/ +.PluginEmbeddedContent { + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +.PluginEmbeddedContentInline { + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 8px; +} +/* PluginMainErrorText:*/ +.PluginMainErrorText { + font-family: Arial; + font-weight: Bold; + color: #E00400; + padding: 8px; +} +.PluginMainErrorTextInline { + font-family: Arial; + font-weight: Bold; + color: #E00400; + padding: 8px; +} +/* PluginSubErrorText:*/ +.PluginSubErrorText { + font-family: Arial; + color: #898989; + padding: 8px; +} +.PluginSubErrorTextInline { + font-family: Arial; + color: #898989; + padding: 8px; +} +/* PluginInfoText:*/ +.PluginInfoText { + font-family: Arial; + font-weight: Bold; + color: #898989; + padding: 8px; +} +.PluginInfoTextInline { + font-family: Arial; + font-weight: Bold; + color: #898989; + padding: 8px; +} +/* InitializationCell:*/ +.InitializationCell { + background-color: #EBEBEB; + padding: 8px; +} +.InitializationCellInline { + background-color: #EBEBEB; + padding: 8px; +} +/* EvaluationUnmatched:*/ +.EvaluationUnmatched { + padding: 8px; +} +.EvaluationUnmatchedInline { + padding: 8px; +} +/* RM:*/ +.RM { + font-style: normal; + font-weight: normal; + padding: 8px; +} +.RMInline { + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* BF:*/ +.BF { + font-weight: bold; + padding: 8px; +} +.BFInline { + font-weight: bold; + padding: 8px; +} +/* IT:*/ +.IT { + font-style: italic; + padding: 8px; +} +.ITInline { + font-style: italic; + padding: 8px; +} +/* MSG:*/ +.MSG { + font-size: 11px; + font-family: Segoe UI; + padding: 8px; +} +.MSGInline { + font-size: 11px; + font-family: Segoe UI; + padding: 8px; +} +/* Inert:*/ +.Inert { + background-color: #DEE7F8; + padding: 8px; +} +.InertInline { + background-color: #DEE7F8; + padding: 8px; +} +/* Small:*/ +.Small { + font-size: 9px; + padding: 8px; +} +.SmallInline { + font-size: 9px; + padding: 8px; +} +/* Medium:*/ +.Medium { + font-size: 12px; + padding: 8px; +} +.MediumInline { + font-size: 12px; + padding: 8px; +} +/* Large:*/ +.Large { + font-size: 24px; + padding: 8px; +} +.LargeInline { + font-size: 24px; + padding: 8px; +} +/* HideContentsInPrint:*/ +.HideContentsInPrint { + padding: 8px; +} +.HideContentsInPrintInline { + padding: 8px; +} +/* HyperlinkActive:*/ +.HyperlinkActive { + color: #D27D22; + padding: 8px; +} +.HyperlinkActiveInline { + color: #D27D22; + padding: 8px; +} +/* Label:*/ +.Label { + /* font-size: Small is not currently supported */ + font-family: Verdana; + padding: 8px; +} +.LabelInline { + /* font-size: Small is not currently supported */ + font-family: Verdana; + padding: 8px; +} +/* ReferenceMarker:*/ +.ReferenceMarker { + background-color: #D9D9D9; + padding: 8px; +} +.ReferenceMarkerInline { + background-color: #D9D9D9; + padding: 8px; +} +/* DialogText:*/ +.DialogText { + padding: 8px; +} +.DialogTextInline { + padding: 8px; +} +/* TR:*/ +.TR { + font-family: Times; + font-style: normal; + font-weight: normal; + padding: 8px; +} +.TRInline { + font-family: Times; + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* TI:*/ +.TI { + font-family: Times; + font-style: italic; + font-weight: normal; + padding: 8px; +} +.TIInline { + font-family: Times; + font-style: italic; + font-weight: normal; + padding: 8px; +} +/* TB:*/ +.TB { + font-family: Times; + font-style: normal; + font-weight: bold; + padding: 8px; +} +.TBInline { + font-family: Times; + font-style: normal; + font-weight: bold; + padding: 8px; +} +/* TBI:*/ +.TBI { + font-family: Times; + font-style: italic; + font-weight: bold; + padding: 8px; +} +.TBIInline { + font-family: Times; + font-style: italic; + font-weight: bold; + padding: 8px; +} +/* MR:*/ +.MR { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: normal; + padding: 8px; +} +.MRInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* MO:*/ +.MO { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + font-weight: normal; + padding: 8px; +} +.MOInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + font-weight: normal; + padding: 8px; +} +/* MB:*/ +.MB { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: bold; + padding: 8px; +} +.MBInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: bold; + padding: 8px; +} +/* MBO:*/ +.MBO { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + font-weight: bold; + padding: 8px; +} +.MBOInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + font-weight: bold; + padding: 8px; +} +/* SR:*/ +.SR { + font-family: Helvetica; + font-style: normal; + font-weight: normal; + padding: 8px; +} +.SRInline { + font-family: Helvetica; + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* SO:*/ +.SO { + font-family: Helvetica; + font-style: italic; + font-weight: normal; + padding: 8px; +} +.SOInline { + font-family: Helvetica; + font-style: italic; + font-weight: normal; + padding: 8px; +} +/* SB:*/ +.SB { + font-family: Helvetica; + font-style: normal; + font-weight: bold; + padding: 8px; +} +.SBInline { + font-family: Helvetica; + font-style: normal; + font-weight: bold; + padding: 8px; +} +/* SBO:*/ +.SBO { + font-family: Helvetica; + font-style: italic; + font-weight: bold; + padding: 8px; +} +.SBOInline { + font-family: Helvetica; + font-style: italic; + font-weight: bold; + padding: 8px; +} +/* FunctionLink:*/ +.FunctionLink { + color: #1A1A80; + padding: 8px; +} +.FunctionLinkInline { + color: #1A1A80; + padding: 8px; +} +/* GuideLink:*/ +.GuideLink { + color: #1A1A80; + padding: 8px; +} +.GuideLinkInline { + color: #1A1A80; + padding: 8px; +} +/* TutorialLink:*/ +.TutorialLink { + color: #1A1A80; + padding: 8px; +} +.TutorialLinkInline { + color: #1A1A80; + padding: 8px; +} +/* Link:*/ +.Link { + color: #1A1A80; + padding: 8px; +} +.LinkInline { + color: #1A1A80; + padding: 8px; +} +/* GenericLink:*/ +.GenericLink { + color: #1A1A80; + padding: 8px; +} +.GenericLinkInline { + color: #1A1A80; + padding: 8px; +} +/* MessageLink:*/ +.MessageLink { + color: #1A1A80; + padding: 8px; +} +.MessageLinkInline { + color: #1A1A80; + padding: 8px; +} +/* Hyperlink:*/ +.Hyperlink { + color: #454F99; + padding: 8px; +} +.HyperlinkInline { + color: #454F99; + padding: 8px; +} +/* HyperlinkHover:*/ +.HyperlinkHover { + text-decoration: underline; + color: #454F99; + padding: 8px; +} +.HyperlinkHoverInline { + text-decoration: underline; + color: #454F99; + padding: 8px; +} +/* HyperlinkActionNew:*/ +.HyperlinkActionNew { + color: #454F99; + padding: 8px; +} +.HyperlinkActionNewInline { + color: #454F99; + padding: 8px; +} +/* HyperlinkActionRecycled:*/ +.HyperlinkActionRecycled { + color: #454F99; + padding: 8px; +} +.HyperlinkActionRecycledInline { + color: #454F99; + padding: 8px; +} +/* RefLink:*/ +.RefLink { + padding: 8px; +} +.RefLinkInline { + padding: 8px; +} +/* RefLinkPlain:*/ +.RefLinkPlain { + padding: 8px; +} +.RefLinkPlainInline { + padding: 8px; +} +/* PackageLink:*/ +.PackageLink { + padding: 8px; +} +.PackageLinkInline { + padding: 8px; +} +/* GrayLink:*/ +.GrayLink { + padding: 8px; +} +.GrayLinkInline { + padding: 8px; +} +/* TealLink:*/ +.TealLink { + padding: 8px; +} +.TealLinkInline { + padding: 8px; +} +/* MenuGrayLink:*/ +.MenuGrayLink { + padding: 8px; +} +.MenuGrayLinkInline { + padding: 8px; +} +/* WebLink:*/ +.WebLink { + padding: 8px; +} +.WebLinkInline { + padding: 8px; +} +/* GrayWebLink:*/ +.GrayWebLink { + padding: 8px; +} +.GrayWebLinkInline { + padding: 8px; +} +/* OrangeLink:*/ +.OrangeLink { + padding: 8px; +} +.OrangeLinkInline { + padding: 8px; +} +/* GrayLinkWithIcon:*/ +.GrayLinkWithIcon { + padding: 8px; +} +.GrayLinkWithIconInline { + padding: 8px; +} +/* GrayWebLinkWithIcon:*/ +.GrayWebLinkWithIcon { + padding: 8px; +} +.GrayWebLinkWithIconInline { + padding: 8px; +} +/* SlideShowNavigationBar:*/ +.SlideShowNavigationBar { + font-size: 100%; + margin-left: 0px; + margin-right: 0px; + margin-top: 30px; + margin-bottom: 0px; + padding: 8px; +} +.SlideShowNavigationBarInline { + font-size: 100%; + margin-left: 0px; + margin-right: 0px; + margin-top: 30px; + margin-bottom: 0px; + padding: 8px; +} +/* SlideShowCanvas:*/ +.SlideShowCanvas { + font-size: 75. FrontEnd`AbsoluteCurrentValue[{WindowSize, 1}] +Floor[--------------------------------------------------] + FrontEnd`AbsoluteCurrentValue[{WindowSize, 2}]%; + background-color: #D9D9D9; + margin: 0px; + padding: 8px; +} +.SlideShowCanvasInline { + font-size: 75. FrontEnd`AbsoluteCurrentValue[{WindowSize, 1}] +Floor[--------------------------------------------------] + FrontEnd`AbsoluteCurrentValue[{WindowSize, 2}]%; + background-color: #D9D9D9; + margin: 0px; + padding: 8px; +} +/* SlideShowSection:*/ +.SlideShowSection { + font-size: 18px; + font-family: Helvetica; + font-weight: normal; + color: #FFFFFF; + background-color: #6870CC; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 10px; + padding-left: 12px; + padding-right: 4px; + padding-top: 12px; + padding-bottom: 6px; +} +.SlideShowSectionInline { + font-size: 18px; + font-family: Helvetica; + font-weight: normal; + color: #FFFFFF; + background-color: #6870CC; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 10px; + padding-left: 12px; + padding-right: 4px; + padding-top: 12px; + padding-bottom: 6px; +} +/* SlideHyperlink:*/ +.SlideHyperlink { + font-size: 26px; + color: #666666; + padding: 8px; +} +.SlideHyperlinkInline { + font-size: 26px; + color: #666666; + padding: 8px; +} +/* PreviousNext:*/ +.PreviousNext { + font-size: 10px; + font-family: Helvetica; + color: #808080; + text-align: right; + line-height: 1.3; + margin-left: 60px; + margin-right: 10px; + margin-top: 7px; + margin-bottom: 7px; + padding: 8px; +} +.PreviousNextInline { + font-size: 10px; + font-family: Helvetica; + color: #808080; + text-align: right; + line-height: 1.3; + margin-left: 60px; + margin-right: 10px; + margin-top: 7px; + margin-bottom: 7px; + padding: 8px; +} +/* SlidePreviousNextLink:*/ +.SlidePreviousNextLink { + text-decoration: none; + padding: 8px; +} +.SlidePreviousNextLinkInline { + text-decoration: none; + padding: 8px; +} +/* SlideTOCLink:*/ +.SlideTOCLink { + font-family: Helvetica; + margin-left: 24px; + padding: 8px; +} +.SlideTOCLinkInline { + font-family: Helvetica; + margin-left: 24px; + padding: 8px; +} +/* SlideTOC:*/ +.SlideTOC { + font-family: Helvetica; + margin-left: 18px; + padding: 8px; +} +.SlideTOCInline { + font-family: Helvetica; + margin-left: 18px; + padding: 8px; +} +/* SlideShowPaletteTitle:*/ +.SlideShowPaletteTitle { + font-size: 14px; + font-family: Helvetica; + font-weight: Bold; + color: #FFFFFF; + background-color: #005389; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 4px; + margin-right: 0px; + padding: 8px; +} +.SlideShowPaletteTitleInline { + font-size: 14px; + font-family: Helvetica; + font-weight: Bold; + color: #FFFFFF; + background-color: #005389; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 4px; + margin-right: 0px; + padding: 8px; +} +/* SlideShowPaletteButton:*/ +.SlideShowPaletteButton { + font-size: 12px; + font-family: Helvetica; + font-weight: Bold; + color: #FFFFFF; + padding: 8px; +} +.SlideShowPaletteButtonInline { + font-size: 12px; + font-family: Helvetica; + font-weight: Bold; + color: #FFFFFF; + padding: 8px; +} +/* FirstSlide:*/ +.FirstSlide { + margin-left: -10px; + margin-right: 0px; + margin-top: 30px; + margin-bottom: 0px; + padding: 8px; +} +.FirstSlideInline { + margin-left: -10px; + margin-right: 0px; + margin-top: 30px; + margin-bottom: 0px; + padding: 8px; +} +/* SideCode:*/ +.SideCode { + font-weight: DemiBold; + color: #000000; + background-color: #FFFDF5; + border: 1px; + border-style: solid; + border-color: #A1A09A; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.SideCodeInline { + font-weight: DemiBold; + color: #000000; + background-color: #FFFDF5; + border: 1px; + border-style: solid; + border-color: #A1A09A; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* SideCodeOutput:*/ +.SideCodeOutput { + color: #000000; + background-color: #FFFDF5; + border: 1px; + border-style: solid; + border-color: #A1A09A; + margin-left: 66px; + margin-right: 10px; + margin-top: 5px; + margin-bottom: 10px; + padding: 8px; +} +.SideCodeOutputInline { + color: #000000; + background-color: #FFFDF5; + border: 1px; + border-style: solid; + border-color: #A1A09A; + margin-left: 66px; + margin-right: 10px; + margin-top: 5px; + margin-bottom: 10px; + padding: 8px; +} +/* DeployedCell:*/ +.DeployedCell { + padding: 8px; +} +.DeployedCellInline { + padding: 8px; +} +/* DockedCell:*/ +.DockedCell { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +.DockedCellInline { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +/* SystemDockedCell:*/ +.SystemDockedCell { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +.SystemDockedCellInline { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +/* DockedTitleCell:*/ +.DockedTitleCell { + font-size: 18px; + font-family: Helvetica; + font-weight: Bold; + background-color: #F0F0F0; + border: 0px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +.DockedTitleCellInline { + font-size: 18px; + font-family: Helvetica; + font-weight: Bold; + background-color: #F0F0F0; + border: 0px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +/* PluginDockedCell:*/ +.PluginDockedCell { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +.PluginDockedCellInline { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +/* CDFExportDockedCell:*/ +.CDFExportDockedCell { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: 0px; +} +.CDFExportDockedCellInline { + font-size: 100%; + background-color: #F0F0F0; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: 0px; +} +/* AttachedCell:*/ +.AttachedCell { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +.AttachedCellInline { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +/* SystemAttachedCell:*/ +.SystemAttachedCell { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +.SystemAttachedCellInline { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +/* Paste:*/ +.Paste { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.PasteInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* Evaluate:*/ +.Evaluate { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.EvaluateInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* EvaluateCell:*/ +.EvaluateCell { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.EvaluateCellInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* CopyEvaluate:*/ +.CopyEvaluate { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.CopyEvaluateInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* CopyEvaluateCell:*/ +.CopyEvaluateCell { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.CopyEvaluateCellInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* HistoryCurrentPage:*/ +.HistoryCurrentPage { + font-weight: Bold; + padding: 8px; +} +.HistoryCurrentPageInline { + font-weight: Bold; + padding: 8px; +} +/* HistoryPreviousPage:*/ +.HistoryPreviousPage { + padding: 8px; +} +.HistoryPreviousPageInline { + padding: 8px; +} +/* HistoryNextPage:*/ +.HistoryNextPage { + padding: 8px; +} +.HistoryNextPageInline { + padding: 8px; +} +/* PageBreak:*/ +.PageBreak { + background-color: #808080; + border: 1px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 1px; + margin-bottom: 1px; + padding: 0px; +} +.PageBreakInline { + background-color: #808080; + border: 1px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 1px; + margin-bottom: 1px; + padding: 0px; +} +/* UnmatchedBracket:*/ +.UnmatchedBracket { + color: #C254CC; + padding: 8px; +} +.UnmatchedBracketInline { + color: #C254CC; + padding: 8px; +} +/* CoordinateTooltipLabel:*/ +.CoordinateTooltipLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: #FFFFE1; + text-align: left; + border: 1px; + border-style: solid; + border-color: #B2B2B2; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +.CoordinateTooltipLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: #FFFFE1; + text-align: left; + border: 1px; + border-style: solid; + border-color: #B2B2B2; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +/* CalculatePrompt:*/ +.CalculatePrompt { + font-size: 20px; + font-weight: DemiBold; + color: #FFFFFF; + background-color: #FF6C00; + padding: 8px; +} +.CalculatePromptInline { + font-size: 20px; + font-weight: DemiBold; + color: #FFFFFF; + background-color: #FF6C00; + padding: 8px; +} +/* CalculateInput:*/ +.CalculateInput { + font-family: Helvetica; + padding: 8px; +} +.CalculateInputInline { + font-family: Helvetica; + padding: 8px; +} +/* CellInsertionMenu:*/ +.CellInsertionMenu { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + line-height: 1.11111; + padding: 8px; +} +.CellInsertionMenuInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + line-height: 1.11111; + padding: 8px; +} +/* CellInsertionMenuShortcut:*/ +.CellInsertionMenuShortcut { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #808080; + text-align: left; + line-height: 1.11111; + padding: 8px; +} +.CellInsertionMenuShortcutInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #808080; + text-align: left; + line-height: 1.11111; + padding: 8px; +} +/* CellInsertionMenuDefaultLabel:*/ +.CellInsertionMenuDefaultLabel { + /* font-size: -2 + Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: Plain; + color: #808080; + text-align: left; + line-height: 1 +If[1. + --------------- < 0, 0, System`Convert`CSSDump`c$10266] + -2. + Inherited; + padding: 8px; +} +.CellInsertionMenuDefaultLabelInline { + /* font-size: -2 + Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: Plain; + color: #808080; + text-align: left; + line-height: 1 +If[1. + --------------- < 0, 0, System`Convert`CSSDump`c$10282] + -2. + Inherited; + padding: 8px; +} +/* CellInsertionMenuStyleShortcutLabel:*/ +.CellInsertionMenuStyleShortcutLabel { + /* font-size: -1 + Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: Plain; + color: #808080; + text-align: left; + line-height: 1 +If[1. + --------------- < 0, 0, System`Convert`CSSDump`c$10298] + -1. + Inherited; + padding: 8px; +} +.CellInsertionMenuStyleShortcutLabelInline { + /* font-size: -1 + Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: Plain; + color: #808080; + text-align: left; + line-height: 1 +If[1. + --------------- < 0, 0, System`Convert`CSSDump`c$10314] + -1. + Inherited; + padding: 8px; +} +/* RootBox:*/ +.RootBox { + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +.RootBoxInline { + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +/* ActionMenu:*/ +.ActionMenu { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +.ActionMenuInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +/* ActionMenuLabel:*/ +.ActionMenuLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + padding: 8px; +} +.ActionMenuLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + padding: 8px; +} +/* Animate:*/ +.Animate { + font-weight: normal; + padding: 8px; +} +.AnimateInline { + font-weight: normal; + padding: 8px; +} +/* AnimateLabel:*/ +.AnimateLabel { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +.AnimateLabelInline { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +/* Axis:*/ +.Axis { + padding: 8px; +} +.AxisInline { + padding: 8px; +} +/* Button:*/ +.Button { + text-align: left; + padding: 8px; +} +.ButtonInline { + text-align: left; + padding: 8px; +} +/* GenericButton:*/ +.GenericButton { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.GenericButtonInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* Checkbox:*/ +.Checkbox { + padding: 8px; +} +.CheckboxInline { + padding: 8px; +} +/* CheckboxBar:*/ +.CheckboxBar { + padding: 8px; +} +.CheckboxBarInline { + padding: 8px; +} +/* CheckboxBarLabel:*/ +.CheckboxBarLabel { + padding: 8px; +} +.CheckboxBarLabelInline { + padding: 8px; +} +/* ColorSetter:*/ +.ColorSetter { + padding: 8px; +} +.ColorSetterInline { + padding: 8px; +} +/* ColorSlider:*/ +.ColorSlider { + padding: 8px; +} +.ColorSliderInline { + padding: 8px; +} +/* ColorSwatchGraphics:*/ +.ColorSwatchGraphics { + padding: 8px; +} +.ColorSwatchGraphicsInline { + padding: 8px; +} +/* ControlStyle:*/ +.ControlStyle { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +.ControlStyleInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +/* ControlStyleLight:*/ +.ControlStyleLight { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: #595959; + text-align: left; + padding: 8px; +} +.ControlStyleLightInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: #595959; + text-align: left; + padding: 8px; +} +/* ControlStyleLightBold:*/ +.ControlStyleLightBold { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: Bold; + text-decoration: none; + color: #595959; + text-align: left; + padding: 8px; +} +.ControlStyleLightBoldInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: Bold; + text-decoration: none; + color: #595959; + text-align: left; + padding: 8px; +} +/* DialogStyle:*/ +.DialogStyle { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +.DialogStyleInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +/* FileNameSetter:*/ +.FileNameSetter { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.FileNameSetterInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* FileNameSetterBoxes:*/ +.FileNameSetterBoxes { + padding: 8px; +} +.FileNameSetterBoxesInline { + padding: 8px; +} +/* FileNameSetterBoxes4:*/ +.FileNameSetterBoxes4 { + padding: 8px; +} +.FileNameSetterBoxes4Inline { + padding: 8px; +} +/* FlipView:*/ +.FlipView { + padding: 8px; +} +.FlipViewInline { + padding: 8px; +} +/* GeneralizedPlaceholder:*/ +.GeneralizedPlaceholder { + background-color: #F6F0BD; + padding: 8px; +} +.GeneralizedPlaceholderInline { + background-color: #F6F0BD; + padding: 8px; +} +/* FieldHintStyle:*/ +.FieldHintStyle { + font-family: Segoe UI; + font-style: italic; + padding: 8px; +} +.FieldHintStyleInline { + font-family: Segoe UI; + font-style: italic; + padding: 8px; +} +/* Framed:*/ +.Framed { + padding: 8px; +} +.FramedInline { + padding: 8px; +} +/* TextFrame:*/ +.TextFrame { + padding: 8px; +} +.TextFrameInline { + padding: 8px; +} +/* Graphics:*/ +.Graphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.GraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* GraphicsNoFontsOrMenu:*/ +.GraphicsNoFontsOrMenu { + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +.GraphicsNoFontsOrMenuInline { + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +/* GraphicsAxes:*/ +.GraphicsAxes { + padding: 8px; +} +.GraphicsAxesInline { + padding: 8px; +} +/* GraphicsTicks:*/ +.GraphicsTicks { + padding: 8px; +} +.GraphicsTicksInline { + padding: 8px; +} +/* GraphicsFrame:*/ +.GraphicsFrame { + padding: 8px; +} +.GraphicsFrameInline { + padding: 8px; +} +/* GraphicsFrameTicks:*/ +.GraphicsFrameTicks { + padding: 8px; +} +.GraphicsFrameTicksInline { + padding: 8px; +} +/* GraphicsGridLines:*/ +.GraphicsGridLines { + color: #808080; + padding: 8px; +} +.GraphicsGridLinesInline { + color: #808080; + padding: 8px; +} +/* GraphicsLabel:*/ +.GraphicsLabel { + color: #666666; + padding: 8px; +} +.GraphicsLabelInline { + color: #666666; + padding: 8px; +} +/* Graphics3D:*/ +.Graphics3D { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.Graphics3DInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* Graphics3DAxes:*/ +.Graphics3DAxes { + padding: 8px; +} +.Graphics3DAxesInline { + padding: 8px; +} +/* Graphics3DTicks:*/ +.Graphics3DTicks { + padding: 8px; +} +.Graphics3DTicksInline { + padding: 8px; +} +/* Graphics3DFaceGrids:*/ +.Graphics3DFaceGrids { + color: #A8A8A8; + padding: 8px; +} +.Graphics3DFaceGridsInline { + color: #A8A8A8; + padding: 8px; +} +/* Graphics3DBox:*/ +.Graphics3DBox { + color: #666666; + padding: 8px; +} +.Graphics3DBoxInline { + color: #666666; + padding: 8px; +} +/* Graphics3DLabel:*/ +.Graphics3DLabel { + color: #666666; + padding: 8px; +} +.Graphics3DLabelInline { + color: #666666; + padding: 8px; +} +/* GraphicsGrid:*/ +.GraphicsGrid { + padding: 8px; +} +.GraphicsGridInline { + padding: 8px; +} +/* Inactive:*/ +.Inactive { + color: #B29980; + padding: 8px; +} +.InactiveInline { + color: #B29980; + padding: 8px; +} +/* InactiveToken:*/ +.InactiveToken { + padding: 8px; +} +.InactiveTokenInline { + padding: 8px; +} +/* ImageGraphics:*/ +.ImageGraphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.ImageGraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* Image3DGraphics3D:*/ +.Image3DGraphics3D { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.Image3DGraphics3DInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* MeshGraphics:*/ +.MeshGraphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.MeshGraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* MeshGraphics3D:*/ +.MeshGraphics3D { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.MeshGraphics3DInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* NetworkGraphics:*/ +.NetworkGraphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.NetworkGraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* Grid:*/ +.Grid { + padding: 8px; +} +.GridInline { + padding: 8px; +} +/* TextGrid:*/ +.TextGrid { + font-family: Arial; + font-style: Plain; + font-weight: Plain; + padding: 8px; +} +.TextGridInline { + font-family: Arial; + font-style: Plain; + font-weight: Plain; + padding: 8px; +} +/* Column:*/ +.Column { + padding: 8px; +} +.ColumnInline { + padding: 8px; +} +/* InlineText:*/ +.InlineText { + font-family: Arial; + font-style: Plain; + font-weight: Plain; + padding: 8px; +} +.InlineTextInline { + font-family: Arial; + font-style: Plain; + font-weight: Plain; + padding: 8px; +} +/* InputField:*/ +.InputField { + text-align: left; + padding: 8px; +} +.InputFieldInline { + text-align: left; + padding: 8px; +} +/* Labeled:*/ +.Labeled { + padding: 8px; +} +.LabeledInline { + padding: 8px; +} +/* LabeledLabel:*/ +.LabeledLabel { + padding: 8px; +} +.LabeledLabelInline { + padding: 8px; +} +/* LabeledSlider:*/ +.LabeledSlider { + padding: 8px; +} +.LabeledSliderInline { + padding: 8px; +} +/* LabeledSliderLabel:*/ +.LabeledSliderLabel { + padding: 8px; +} +.LabeledSliderLabelInline { + padding: 8px; +} +/* LineWrapParts:*/ +.LineWrapParts { + padding: 8px; +} +.LineWrapPartsInline { + padding: 8px; +} +/* ListAnimate:*/ +.ListAnimate { + font-weight: normal; + padding: 8px; +} +.ListAnimateInline { + font-weight: normal; + padding: 8px; +} +/* ListAnimateLabel:*/ +.ListAnimateLabel { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +.ListAnimateLabelInline { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +/* ListPicker:*/ +.ListPicker { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +.ListPickerInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + text-align: left; + padding: 8px; +} +/* LocatorPane:*/ +.LocatorPane { + padding: 8px; +} +.LocatorPaneInline { + padding: 8px; +} +/* Manipulator:*/ +.Manipulator { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +.ManipulatorInline { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +/* Manipulate:*/ +.Manipulate { + font-weight: normal; + padding: 8px; +} +.ManipulateInline { + font-weight: normal; + padding: 8px; +} +/* ManipulateLabel:*/ +.ManipulateLabel { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +.ManipulateLabelInline { + font-size: 8px; + font-family: Segoe UI; + font-weight: normal; + padding: 8px; +} +/* Menu:*/ +.Menu { + font-family: Segoe UI; + padding: 8px; +} +.MenuInline { + font-family: Segoe UI; + padding: 8px; +} +/* MenuLabel:*/ +.MenuLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-align: left; + padding: 8px; +} +.MenuLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-align: left; + padding: 8px; +} +/* MenuView:*/ +.MenuView { + padding: 8px; +} +.MenuViewInline { + padding: 8px; +} +/* MenuViewLabel:*/ +.MenuViewLabel { + font-size: 9px; + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +.MenuViewLabelInline { + font-size: 9px; + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +/* Opener:*/ +.Opener { + padding: 8px; +} +.OpenerInline { + padding: 8px; +} +/* OpenerView:*/ +.OpenerView { + padding: 8px; +} +.OpenerViewInline { + padding: 8px; +} +/* Overlay:*/ +.Overlay { + padding: 8px; +} +.OverlayInline { + padding: 8px; +} +/* Pane:*/ +.Pane { + padding: 8px; +} +.PaneInline { + padding: 8px; +} +/* PaneSelector:*/ +.PaneSelector { + padding: 8px; +} +.PaneSelectorInline { + padding: 8px; +} +/* Panel:*/ +.Panel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + background-color: #F0F0F0; + padding: 8px; +} +.PanelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + background-color: #F0F0F0; + padding: 8px; +} +/* PanelLabel:*/ +.PanelLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + background-color: #FFFFFF; + padding: 8px; +} +.PanelLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + background-color: #FFFFFF; + padding: 8px; +} +/* PopupMenu:*/ +.PopupMenu { + font-size: 9px; + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +.PopupMenuInline { + font-size: 9px; + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +/* PopupMenuLabel:*/ +.PopupMenuLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + padding: 8px; +} +.PopupMenuLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + text-align: left; + padding: 8px; +} +/* PopupView:*/ +.PopupView { + padding: 8px; +} +.PopupViewInline { + padding: 8px; +} +/* ProgressIndicator:*/ +.ProgressIndicator { + padding: 8px; +} +.ProgressIndicatorInline { + padding: 8px; +} +/* RadioButton:*/ +.RadioButton { + padding: 8px; +} +.RadioButtonInline { + padding: 8px; +} +/* RadioButtonBar:*/ +.RadioButtonBar { + padding: 8px; +} +.RadioButtonBarInline { + padding: 8px; +} +/* RadioButtonBarLabel:*/ +.RadioButtonBarLabel { + padding: 8px; +} +.RadioButtonBarLabelInline { + padding: 8px; +} +/* Setter:*/ +.Setter { + padding: 8px; +} +.SetterInline { + padding: 8px; +} +/* SetterBar:*/ +.SetterBar { + padding: 8px; +} +.SetterBarInline { + padding: 8px; +} +/* Slider:*/ +.Slider { + padding: 8px; +} +.SliderInline { + padding: 8px; +} +/* Slider2D:*/ +.Slider2D { + padding: 8px; +} +.Slider2DInline { + padding: 8px; +} +/* SlideView:*/ +.SlideView { + padding: 8px; +} +.SlideViewInline { + padding: 8px; +} +/* TabView:*/ +.TabView { + color: #000000; + padding: 8px; +} +.TabViewInline { + color: #000000; + padding: 8px; +} +/* TabViewLabel:*/ +.TabViewLabel { + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +.TabViewLabelInline { + font-family: Segoe UI; + text-align: left; + padding: 8px; +} +/* Toggler:*/ +.Toggler { + padding: 8px; +} +.TogglerInline { + padding: 8px; +} +/* TogglerBar:*/ +.TogglerBar { + padding: 8px; +} +.TogglerBarInline { + padding: 8px; +} +/* TooltipLabel:*/ +.TooltipLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: #FFFFE1; + text-align: left; + border: 1px; + border-style: solid; + border-color: #000000; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +.TooltipLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: #FFFFE1; + text-align: left; + border: 1px; + border-style: solid; + border-color: #000000; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +/* TextStyling:*/ +.TextStyling { + padding: 8px; +} +.TextStylingInline { + padding: 8px; +} +/* TextStyleInputField:*/ +.TextStyleInputField { + padding: 8px; +} +.TextStyleInputFieldInline { + padding: 8px; +} +/* InputFieldDefaultNumberStyle:*/ +.InputFieldDefaultNumberStyle { + padding: 8px; +} +.InputFieldDefaultNumberStyleInline { + padding: 8px; +} +/* InputFieldDefaultTextStyle:*/ +.InputFieldDefaultTextStyle { + padding: 8px; +} +.InputFieldDefaultTextStyleInline { + padding: 8px; +} +/* VerticalSlider:*/ +.VerticalSlider { + padding: 8px; +} +.VerticalSliderInline { + padding: 8px; +} +/* GeoGraphics:*/ +.GeoGraphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.GeoGraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* TableView:*/ +.TableView { + padding: 8px; +} +.TableViewInline { + padding: 8px; +} +/* TableViewGrid:*/ +.TableViewGrid { + font-weight: normal; + padding: 8px; +} +.TableViewGridInline { + font-weight: normal; + padding: 8px; +} +/* TableViewNumbers:*/ +.TableViewNumbers { + font-weight: normal; + color: #3F3F3F; + text-align: right; + padding: 8px; +} +.TableViewNumbersInline { + font-weight: normal; + color: #3F3F3F; + text-align: right; + padding: 8px; +} +/* TableViewStrings:*/ +.TableViewStrings { + color: #3F3F3F; + text-align: left; + padding: 8px; +} +.TableViewStringsInline { + color: #3F3F3F; + text-align: left; + padding: 8px; +} +/* TableViewExpressions:*/ +.TableViewExpressions { + font-weight: normal; + color: #3F3F3F; + text-align: center; + padding: 8px; +} +.TableViewExpressionsInline { + font-weight: normal; + color: #3F3F3F; + text-align: center; + padding: 8px; +} +/* TableViewLabels:*/ +.TableViewLabels { + /* font-size: 0.9 Inherited is not currently supported */ + font-weight: normal; + color: #737373; + padding: 8px; +} +.TableViewLabelsInline { + /* font-size: 0.9 Inherited is not currently supported */ + font-weight: normal; + color: #737373; + padding: 8px; +} +/* Mouseover:*/ +.Mouseover { + padding: 8px; +} +.MouseoverInline { + padding: 8px; +} +/* MouseoverTemplate:*/ +.MouseoverTemplate { + padding: 8px; +} +.MouseoverTemplateInline { + padding: 8px; +} +/* HyperlinkURL:*/ +.HyperlinkURL { + padding: 8px; +} +.HyperlinkURLInline { + padding: 8px; +} +/* HyperlinkPaclet:*/ +.HyperlinkPaclet { + padding: 8px; +} +.HyperlinkPacletInline { + padding: 8px; +} +/* HyperlinkDefault:*/ +.HyperlinkDefault { + padding: 8px; +} +.HyperlinkDefaultInline { + padding: 8px; +} +/* HyperlinkStaticTemplate:*/ +.HyperlinkStaticTemplate { + padding: 8px; +} +.HyperlinkStaticTemplateInline { + padding: 8px; +} +/* HyperlinkTemplate:*/ +.HyperlinkTemplate { + padding: 8px; +} +.HyperlinkTemplateInline { + padding: 8px; +} +/* ClickToCopy:*/ +.ClickToCopy { + padding: 8px; +} +.ClickToCopyInline { + padding: 8px; +} +/* ClickToCopy2:*/ +.ClickToCopy2 { + padding: 8px; +} +.ClickToCopy2Inline { + padding: 8px; +} +/* ClickToCopyTooltip:*/ +.ClickToCopyTooltip { + padding: 8px; +} +.ClickToCopyTooltipInline { + padding: 8px; +} +/* C:*/ +.C { + padding: 8px; +} +.CInline { + padding: 8px; +} +/* CantorStaircase:*/ +.CantorStaircase { + padding: 8px; +} +.CantorStaircaseInline { + padding: 8px; +} +/* CenteredInterval:*/ +.CenteredInterval { + padding: 8px; +} +.CenteredIntervalInline { + padding: 8px; +} +/* ConditionalExpression:*/ +.ConditionalExpression { + padding: 8px; +} +.ConditionalExpressionInline { + padding: 8px; +} +/* Conjugate:*/ +.Conjugate { + padding: 8px; +} +.ConjugateInline { + padding: 8px; +} +/* ConjugateTranspose:*/ +.ConjugateTranspose { + padding: 8px; +} +.ConjugateTransposeInline { + padding: 8px; +} +/* CoshIntegral:*/ +.CoshIntegral { + padding: 8px; +} +.CoshIntegralInline { + padding: 8px; +} +/* CosIntegral:*/ +.CosIntegral { + padding: 8px; +} +.CosIntegralInline { + padding: 8px; +} +/* CTraditional:*/ +.CTraditional { + padding: 8px; +} +.CTraditionalInline { + padding: 8px; +} +/* Det:*/ +.Det { + padding: 8px; +} +.DetInline { + padding: 8px; +} +/* FresnelC:*/ +.FresnelC { + padding: 8px; +} +.FresnelCInline { + padding: 8px; +} +/* FresnelF:*/ +.FresnelF { + padding: 8px; +} +.FresnelFInline { + padding: 8px; +} +/* FresnelG:*/ +.FresnelG { + padding: 8px; +} +.FresnelGInline { + padding: 8px; +} +/* FresnelS:*/ +.FresnelS { + padding: 8px; +} +.FresnelSInline { + padding: 8px; +} +/* Gudermannian:*/ +.Gudermannian { + padding: 8px; +} +.GudermannianInline { + padding: 8px; +} +/* Haversine:*/ +.Haversine { + padding: 8px; +} +.HaversineInline { + padding: 8px; +} +/* Inverse:*/ +.Inverse { + padding: 8px; +} +.InverseInline { + padding: 8px; +} +/* InverseGudermannian:*/ +.InverseGudermannian { + padding: 8px; +} +.InverseGudermannianInline { + padding: 8px; +} +/* InverseHaversine:*/ +.InverseHaversine { + padding: 8px; +} +.InverseHaversineInline { + padding: 8px; +} +/* LogisticSigmoid:*/ +.LogisticSigmoid { + padding: 8px; +} +.LogisticSigmoidInline { + padding: 8px; +} +/* MinkowskiQuestionMark:*/ +.MinkowskiQuestionMark { + padding: 8px; +} +.MinkowskiQuestionMarkInline { + padding: 8px; +} +/* MixedFraction:*/ +.MixedFraction { + padding: 8px; +} +.MixedFractionInline { + padding: 8px; +} +/* NumericalApproximation:*/ +.NumericalApproximation { + padding: 8px; +} +.NumericalApproximationInline { + padding: 8px; +} +/* PartitionsP:*/ +.PartitionsP { + padding: 8px; +} +.PartitionsPInline { + padding: 8px; +} +/* PartitionsQ:*/ +.PartitionsQ { + padding: 8px; +} +.PartitionsQInline { + padding: 8px; +} +/* Piecewise:*/ +.Piecewise { + padding: 8px; +} +.PiecewiseInline { + padding: 8px; +} +/* Residue:*/ +.Residue { + padding: 8px; +} +.ResidueInline { + padding: 8px; +} +/* Row:*/ +.Row { + padding: 8px; +} +.RowInline { + padding: 8px; +} +/* RowDefault:*/ +.RowDefault { + padding: 8px; +} +.RowDefaultInline { + padding: 8px; +} +/* RowNoSeparators:*/ +.RowNoSeparators { + padding: 8px; +} +.RowNoSeparatorsInline { + padding: 8px; +} +/* RowWithSeparator:*/ +.RowWithSeparator { + padding: 8px; +} +.RowWithSeparatorInline { + padding: 8px; +} +/* RowWithSeparators:*/ +.RowWithSeparators { + padding: 8px; +} +.RowWithSeparatorsInline { + padding: 8px; +} +/* SinhIntegral:*/ +.SinhIntegral { + padding: 8px; +} +.SinhIntegralInline { + padding: 8px; +} +/* SinIntegral:*/ +.SinIntegral { + padding: 8px; +} +.SinIntegralInline { + padding: 8px; +} +/* Subsuperscript:*/ +.Subsuperscript { + padding: 8px; +} +.SubsuperscriptInline { + padding: 8px; +} +/* Superscript:*/ +.Superscript { + padding: 8px; +} +.SuperscriptInline { + padding: 8px; +} +/* Transpose:*/ +.Transpose { + padding: 8px; +} +.TransposeInline { + padding: 8px; +} +/* BellB:*/ +.BellB { + padding: 8px; +} +.BellBInline { + padding: 8px; +} +/* BellB2:*/ +.BellB2 { + padding: 8px; +} +.BellB2Inline { + padding: 8px; +} +/* BellY:*/ +.BellY { + padding: 8px; +} +.BellYInline { + padding: 8px; +} +/* BellYMatrix:*/ +.BellYMatrix { + padding: 8px; +} +.BellYMatrixInline { + padding: 8px; +} +/* BellY1:*/ +.BellY1 { + padding: 8px; +} +.BellY1Inline { + padding: 8px; +} +/* BernoulliB:*/ +.BernoulliB { + padding: 8px; +} +.BernoulliBInline { + padding: 8px; +} +/* BernoulliB2:*/ +.BernoulliB2 { + padding: 8px; +} +.BernoulliB2Inline { + padding: 8px; +} +/* CatalanNumber:*/ +.CatalanNumber { + padding: 8px; +} +.CatalanNumberInline { + padding: 8px; +} +/* EulerE:*/ +.EulerE { + padding: 8px; +} +.EulerEInline { + padding: 8px; +} +/* EulerE2:*/ +.EulerE2 { + padding: 8px; +} +.EulerE2Inline { + padding: 8px; +} +/* Fibonacci:*/ +.Fibonacci { + padding: 8px; +} +.FibonacciInline { + padding: 8px; +} +/* Fibonacci2:*/ +.Fibonacci2 { + padding: 8px; +} +.Fibonacci2Inline { + padding: 8px; +} +/* HarmonicNumber:*/ +.HarmonicNumber { + padding: 8px; +} +.HarmonicNumberInline { + padding: 8px; +} +/* HarmonicNumber2:*/ +.HarmonicNumber2 { + padding: 8px; +} +.HarmonicNumber2Inline { + padding: 8px; +} +/* LucasL:*/ +.LucasL { + padding: 8px; +} +.LucasLInline { + padding: 8px; +} +/* LucasL2:*/ +.LucasL2 { + padding: 8px; +} +.LucasL2Inline { + padding: 8px; +} +/* NorlundB:*/ +.NorlundB { + padding: 8px; +} +.NorlundBInline { + padding: 8px; +} +/* NorlundB3:*/ +.NorlundB3 { + padding: 8px; +} +.NorlundB3Inline { + padding: 8px; +} +/* StirlingS1:*/ +.StirlingS1 { + padding: 8px; +} +.StirlingS1Inline { + padding: 8px; +} +/* StirlingS2:*/ +.StirlingS2 { + padding: 8px; +} +.StirlingS2Inline { + padding: 8px; +} +/* NonNegativeConeString:*/ +.NonNegativeConeString { + padding: 8px; +} +.NonNegativeConeStringInline { + padding: 8px; +} +/* SemidefiniteConeString:*/ +.SemidefiniteConeString { + padding: 8px; +} +.SemidefiniteConeStringInline { + padding: 8px; +} +/* NormConeString:*/ +.NormConeString { + padding: 8px; +} +.NormConeStringInline { + padding: 8px; +} +/* ExponentialConeString:*/ +.ExponentialConeString { + padding: 8px; +} +.ExponentialConeStringInline { + padding: 8px; +} +/* DualExponentialConeString:*/ +.DualExponentialConeString { + padding: 8px; +} +.DualExponentialConeStringInline { + padding: 8px; +} +/* PowerConeString:*/ +.PowerConeString { + padding: 8px; +} +.PowerConeStringInline { + padding: 8px; +} +/* DualPowerConeString:*/ +.DualPowerConeString { + padding: 8px; +} +.DualPowerConeStringInline { + padding: 8px; +} +/* NonNegativeConeList:*/ +.NonNegativeConeList { + padding: 8px; +} +.NonNegativeConeListInline { + padding: 8px; +} +/* SemidefiniteConeList:*/ +.SemidefiniteConeList { + padding: 8px; +} +.SemidefiniteConeListInline { + padding: 8px; +} +/* NormConeList:*/ +.NormConeList { + padding: 8px; +} +.NormConeListInline { + padding: 8px; +} +/* PowerConeList:*/ +.PowerConeList { + padding: 8px; +} +.PowerConeListInline { + padding: 8px; +} +/* DualPowerConeList:*/ +.DualPowerConeList { + padding: 8px; +} +.DualPowerConeListInline { + padding: 8px; +} +/* ChampernowneNumber:*/ +.ChampernowneNumber { + padding: 8px; +} +.ChampernowneNumberInline { + padding: 8px; +} +/* Cyclotomic:*/ +.Cyclotomic { + padding: 8px; +} +.CyclotomicInline { + padding: 8px; +} +/* StieltjesGamma:*/ +.StieltjesGamma { + padding: 8px; +} +.StieltjesGammaInline { + padding: 8px; +} +/* StieltjesGamma2:*/ +.StieltjesGamma2 { + padding: 8px; +} +.StieltjesGamma2Inline { + padding: 8px; +} +/* SystemsModelGrid00:*/ +.SystemsModelGrid00 { + padding: 8px; +} +.SystemsModelGrid00Inline { + padding: 8px; +} +/* SystemsModelGrid01:*/ +.SystemsModelGrid01 { + padding: 8px; +} +.SystemsModelGrid01Inline { + padding: 8px; +} +/* SystemsModelGrid02:*/ +.SystemsModelGrid02 { + padding: 8px; +} +.SystemsModelGrid02Inline { + padding: 8px; +} +/* SystemsModelGrid10:*/ +.SystemsModelGrid10 { + padding: 8px; +} +.SystemsModelGrid10Inline { + padding: 8px; +} +/* SystemsModelGrid11:*/ +.SystemsModelGrid11 { + padding: 8px; +} +.SystemsModelGrid11Inline { + padding: 8px; +} +/* SystemsModelGrid12:*/ +.SystemsModelGrid12 { + padding: 8px; +} +.SystemsModelGrid12Inline { + padding: 8px; +} +/* SystemsModelSuperscript:*/ +.SystemsModelSuperscript { + color: #000000; + padding: 8px; +} +.SystemsModelSuperscriptInline { + color: #000000; + padding: 8px; +} +/* SystemsModelMinimalElement:*/ +.SystemsModelMinimalElement { + color: #A6998C; + padding: 8px; +} +.SystemsModelMinimalElementInline { + color: #A6998C; + padding: 8px; +} +/* SystemsModelDelay:*/ +.SystemsModelDelay { + padding: 8px; +} +.SystemsModelDelayInline { + padding: 8px; +} +/* TransferFunctionModelFull:*/ +.TransferFunctionModelFull { + padding: 8px; +} +.TransferFunctionModelFullInline { + padding: 8px; +} +/* TransferFunctionModelMinimal:*/ +.TransferFunctionModelMinimal { + padding: 8px; +} +.TransferFunctionModelMinimalInline { + padding: 8px; +} +/* StateSpaceModelFull:*/ +.StateSpaceModelFull { + padding: 8px; +} +.StateSpaceModelFullInline { + padding: 8px; +} +/* StateSpaceModelMinimal:*/ +.StateSpaceModelMinimal { + padding: 8px; +} +.StateSpaceModelMinimalInline { + padding: 8px; +} +/* AffineStateSpaceModelFull:*/ +.AffineStateSpaceModelFull { + padding: 8px; +} +.AffineStateSpaceModelFullInline { + padding: 8px; +} +/* AffineStateSpaceModelMinimal:*/ +.AffineStateSpaceModelMinimal { + padding: 8px; +} +.AffineStateSpaceModelMinimalInline { + padding: 8px; +} +/* NonlinearStateSpaceModelFull:*/ +.NonlinearStateSpaceModelFull { + padding: 8px; +} +.NonlinearStateSpaceModelFullInline { + padding: 8px; +} +/* NonlinearStateSpaceModelMinimal:*/ +.NonlinearStateSpaceModelMinimal { + padding: 8px; +} +.NonlinearStateSpaceModelMinimalInline { + padding: 8px; +} +/* DifferenceDelta3:*/ +.DifferenceDelta3 { + padding: 8px; +} +.DifferenceDelta3Inline { + padding: 8px; +} +/* DifferenceDelta4:*/ +.DifferenceDelta4 { + padding: 8px; +} +.DifferenceDelta4Inline { + padding: 8px; +} +/* DiscreteRatio3:*/ +.DiscreteRatio3 { + padding: 8px; +} +.DiscreteRatio3Inline { + padding: 8px; +} +/* DiscreteRatio4:*/ +.DiscreteRatio4 { + padding: 8px; +} +.DiscreteRatio4Inline { + padding: 8px; +} +/* DiscreteShift3:*/ +.DiscreteShift3 { + padding: 8px; +} +.DiscreteShift3Inline { + padding: 8px; +} +/* DiscreteShift4:*/ +.DiscreteShift4 { + padding: 8px; +} +.DiscreteShift4Inline { + padding: 8px; +} +/* EllipticE:*/ +.EllipticE { + padding: 8px; +} +.EllipticEInline { + padding: 8px; +} +/* EllipticE2:*/ +.EllipticE2 { + padding: 8px; +} +.EllipticE2Inline { + padding: 8px; +} +/* EllipticF:*/ +.EllipticF { + padding: 8px; +} +.EllipticFInline { + padding: 8px; +} +/* EllipticK:*/ +.EllipticK { + padding: 8px; +} +.EllipticKInline { + padding: 8px; +} +/* EllipticPi:*/ +.EllipticPi { + padding: 8px; +} +.EllipticPiInline { + padding: 8px; +} +/* EllipticPi3:*/ +.EllipticPi3 { + padding: 8px; +} +.EllipticPi3Inline { + padding: 8px; +} +/* EllipticNomeQ:*/ +.EllipticNomeQ { + padding: 8px; +} +.EllipticNomeQInline { + padding: 8px; +} +/* InverseEllipticNomeQ:*/ +.InverseEllipticNomeQ { + padding: 8px; +} +.InverseEllipticNomeQInline { + padding: 8px; +} +/* DedekindEta:*/ +.DedekindEta { + padding: 8px; +} +.DedekindEtaInline { + padding: 8px; +} +/* EllipticTheta:*/ +.EllipticTheta { + padding: 8px; +} +.EllipticThetaInline { + padding: 8px; +} +/* EllipticThetaConstant:*/ +.EllipticThetaConstant { + padding: 8px; +} +.EllipticThetaConstantInline { + padding: 8px; +} +/* EllipticThetaPrime:*/ +.EllipticThetaPrime { + padding: 8px; +} +.EllipticThetaPrimeInline { + padding: 8px; +} +/* EllipticThetaPrimeConstant:*/ +.EllipticThetaPrimeConstant { + padding: 8px; +} +.EllipticThetaPrimeConstantInline { + padding: 8px; +} +/* InverseJacobiCD:*/ +.InverseJacobiCD { + padding: 8px; +} +.InverseJacobiCDInline { + padding: 8px; +} +/* InverseJacobiCN:*/ +.InverseJacobiCN { + padding: 8px; +} +.InverseJacobiCNInline { + padding: 8px; +} +/* InverseJacobiCS:*/ +.InverseJacobiCS { + padding: 8px; +} +.InverseJacobiCSInline { + padding: 8px; +} +/* InverseJacobiDC:*/ +.InverseJacobiDC { + padding: 8px; +} +.InverseJacobiDCInline { + padding: 8px; +} +/* InverseJacobiDN:*/ +.InverseJacobiDN { + padding: 8px; +} +.InverseJacobiDNInline { + padding: 8px; +} +/* InverseJacobiDS:*/ +.InverseJacobiDS { + padding: 8px; +} +.InverseJacobiDSInline { + padding: 8px; +} +/* InverseJacobiNC:*/ +.InverseJacobiNC { + padding: 8px; +} +.InverseJacobiNCInline { + padding: 8px; +} +/* InverseJacobiND:*/ +.InverseJacobiND { + padding: 8px; +} +.InverseJacobiNDInline { + padding: 8px; +} +/* InverseJacobiNS:*/ +.InverseJacobiNS { + padding: 8px; +} +.InverseJacobiNSInline { + padding: 8px; +} +/* InverseJacobiSC:*/ +.InverseJacobiSC { + padding: 8px; +} +.InverseJacobiSCInline { + padding: 8px; +} +/* InverseJacobiSD:*/ +.InverseJacobiSD { + padding: 8px; +} +.InverseJacobiSDInline { + padding: 8px; +} +/* InverseJacobiSN:*/ +.InverseJacobiSN { + padding: 8px; +} +.InverseJacobiSNInline { + padding: 8px; +} +/* InverseWeierstrassP:*/ +.InverseWeierstrassP { + padding: 8px; +} +.InverseWeierstrassPInline { + padding: 8px; +} +/* InverseWeierstrassP4:*/ +.InverseWeierstrassP4 { + padding: 8px; +} +.InverseWeierstrassP4Inline { + padding: 8px; +} +/* JacobiAmplitude:*/ +.JacobiAmplitude { + padding: 8px; +} +.JacobiAmplitudeInline { + padding: 8px; +} +/* JacobiCD:*/ +.JacobiCD { + padding: 8px; +} +.JacobiCDInline { + padding: 8px; +} +/* JacobiCN:*/ +.JacobiCN { + padding: 8px; +} +.JacobiCNInline { + padding: 8px; +} +/* JacobiCS:*/ +.JacobiCS { + padding: 8px; +} +.JacobiCSInline { + padding: 8px; +} +/* JacobiDC:*/ +.JacobiDC { + padding: 8px; +} +.JacobiDCInline { + padding: 8px; +} +/* JacobiDN:*/ +.JacobiDN { + padding: 8px; +} +.JacobiDNInline { + padding: 8px; +} +/* JacobiDS:*/ +.JacobiDS { + padding: 8px; +} +.JacobiDSInline { + padding: 8px; +} +/* JacobiNC:*/ +.JacobiNC { + padding: 8px; +} +.JacobiNCInline { + padding: 8px; +} +/* JacobiND:*/ +.JacobiND { + padding: 8px; +} +.JacobiNDInline { + padding: 8px; +} +/* JacobiNS:*/ +.JacobiNS { + padding: 8px; +} +.JacobiNSInline { + padding: 8px; +} +/* JacobiSC:*/ +.JacobiSC { + padding: 8px; +} +.JacobiSCInline { + padding: 8px; +} +/* JacobiSD:*/ +.JacobiSD { + padding: 8px; +} +.JacobiSDInline { + padding: 8px; +} +/* JacobiSN:*/ +.JacobiSN { + padding: 8px; +} +.JacobiSNInline { + padding: 8px; +} +/* JacobiZN:*/ +.JacobiZN { + padding: 8px; +} +.JacobiZNInline { + padding: 8px; +} +/* JacobiEpsilon:*/ +.JacobiEpsilon { + padding: 8px; +} +.JacobiEpsilonInline { + padding: 8px; +} +/* JacobiZeta:*/ +.JacobiZeta { + padding: 8px; +} +.JacobiZetaInline { + padding: 8px; +} +/* KleinInvariantJ:*/ +.KleinInvariantJ { + padding: 8px; +} +.KleinInvariantJInline { + padding: 8px; +} +/* ModularLambda:*/ +.ModularLambda { + padding: 8px; +} +.ModularLambdaInline { + padding: 8px; +} +/* NevilleThetaC:*/ +.NevilleThetaC { + padding: 8px; +} +.NevilleThetaCInline { + padding: 8px; +} +/* NevilleThetaD:*/ +.NevilleThetaD { + padding: 8px; +} +.NevilleThetaDInline { + padding: 8px; +} +/* NevilleThetaN:*/ +.NevilleThetaN { + padding: 8px; +} +.NevilleThetaNInline { + padding: 8px; +} +/* NevilleThetaS:*/ +.NevilleThetaS { + padding: 8px; +} +.NevilleThetaSInline { + padding: 8px; +} +/* WeierstrassE1:*/ +.WeierstrassE1 { + padding: 8px; +} +.WeierstrassE1Inline { + padding: 8px; +} +/* WeierstrassE2:*/ +.WeierstrassE2 { + padding: 8px; +} +.WeierstrassE2Inline { + padding: 8px; +} +/* WeierstrassE3:*/ +.WeierstrassE3 { + padding: 8px; +} +.WeierstrassE3Inline { + padding: 8px; +} +/* WeierstrassEta1:*/ +.WeierstrassEta1 { + padding: 8px; +} +.WeierstrassEta1Inline { + padding: 8px; +} +/* WeierstrassEta2:*/ +.WeierstrassEta2 { + padding: 8px; +} +.WeierstrassEta2Inline { + padding: 8px; +} +/* WeierstrassEta3:*/ +.WeierstrassEta3 { + padding: 8px; +} +.WeierstrassEta3Inline { + padding: 8px; +} +/* WeierstrassHalfPeriodW1:*/ +.WeierstrassHalfPeriodW1 { + padding: 8px; +} +.WeierstrassHalfPeriodW1Inline { + padding: 8px; +} +/* WeierstrassHalfPeriodW2:*/ +.WeierstrassHalfPeriodW2 { + padding: 8px; +} +.WeierstrassHalfPeriodW2Inline { + padding: 8px; +} +/* WeierstrassHalfPeriodW3:*/ +.WeierstrassHalfPeriodW3 { + padding: 8px; +} +.WeierstrassHalfPeriodW3Inline { + padding: 8px; +} +/* WeierstrassInvariantG2:*/ +.WeierstrassInvariantG2 { + padding: 8px; +} +.WeierstrassInvariantG2Inline { + padding: 8px; +} +/* WeierstrassInvariantG3:*/ +.WeierstrassInvariantG3 { + padding: 8px; +} +.WeierstrassInvariantG3Inline { + padding: 8px; +} +/* WeierstrassP:*/ +.WeierstrassP { + padding: 8px; +} +.WeierstrassPInline { + padding: 8px; +} +/* WeierstrassPPrime:*/ +.WeierstrassPPrime { + padding: 8px; +} +.WeierstrassPPrimeInline { + padding: 8px; +} +/* WeierstrassSigma:*/ +.WeierstrassSigma { + padding: 8px; +} +.WeierstrassSigmaInline { + padding: 8px; +} +/* WeierstrassZeta:*/ +.WeierstrassZeta { + padding: 8px; +} +.WeierstrassZetaInline { + padding: 8px; +} +/* AlternatingFactorial:*/ +.AlternatingFactorial { + padding: 8px; +} +.AlternatingFactorialInline { + padding: 8px; +} +/* AugmentedSymmetricPolynomial:*/ +.AugmentedSymmetricPolynomial { + padding: 8px; +} +.AugmentedSymmetricPolynomialInline { + padding: 8px; +} +/* AugmentedSymmetricPolynomialList:*/ +.AugmentedSymmetricPolynomialList { + padding: 8px; +} +.AugmentedSymmetricPolynomialListInline { + padding: 8px; +} +/* BarnesG:*/ +.BarnesG { + padding: 8px; +} +.BarnesGInline { + padding: 8px; +} +/* Beta:*/ +.Beta { + padding: 8px; +} +.BetaInline { + padding: 8px; +} +/* Beta3:*/ +.Beta3 { + padding: 8px; +} +.Beta3Inline { + padding: 8px; +} +/* Beta4:*/ +.Beta4 { + padding: 8px; +} +.Beta4Inline { + padding: 8px; +} +/* BetaRegularized:*/ +.BetaRegularized { + padding: 8px; +} +.BetaRegularizedInline { + padding: 8px; +} +/* BetaRegularized4:*/ +.BetaRegularized4 { + padding: 8px; +} +.BetaRegularized4Inline { + padding: 8px; +} +/* Binomial:*/ +.Binomial { + padding: 8px; +} +.BinomialInline { + padding: 8px; +} +/* CentralMoment:*/ +.CentralMoment { + padding: 8px; +} +.CentralMomentInline { + padding: 8px; +} +/* CentralMomentList:*/ +.CentralMomentList { + padding: 8px; +} +.CentralMomentListInline { + padding: 8px; +} +/* Cumulant:*/ +.Cumulant { + padding: 8px; +} +.CumulantInline { + padding: 8px; +} +/* CumulantList:*/ +.CumulantList { + padding: 8px; +} +.CumulantListInline { + padding: 8px; +} +/* FactorialMoment:*/ +.FactorialMoment { + padding: 8px; +} +.FactorialMomentInline { + padding: 8px; +} +/* FactorialMomentList:*/ +.FactorialMomentList { + padding: 8px; +} +.FactorialMomentListInline { + padding: 8px; +} +/* FactorialPower:*/ +.FactorialPower { + padding: 8px; +} +.FactorialPowerInline { + padding: 8px; +} +/* FactorialPower3:*/ +.FactorialPower3 { + padding: 8px; +} +.FactorialPower3Inline { + padding: 8px; +} +/* Fibonorial:*/ +.Fibonorial { + padding: 8px; +} +.FibonorialInline { + padding: 8px; +} +/* Gamma:*/ +.Gamma { + padding: 8px; +} +.GammaInline { + padding: 8px; +} +/* Gamma2:*/ +.Gamma2 { + padding: 8px; +} +.Gamma2Inline { + padding: 8px; +} +/* Gamma3:*/ +.Gamma3 { + padding: 8px; +} +.Gamma3Inline { + padding: 8px; +} +/* GammaRegularized:*/ +.GammaRegularized { + padding: 8px; +} +.GammaRegularizedInline { + padding: 8px; +} +/* GammaRegularized3:*/ +.GammaRegularized3 { + padding: 8px; +} +.GammaRegularized3Inline { + padding: 8px; +} +/* InverseBetaRegularized:*/ +.InverseBetaRegularized { + padding: 8px; +} +.InverseBetaRegularizedInline { + padding: 8px; +} +/* InverseBetaRegularized4:*/ +.InverseBetaRegularized4 { + padding: 8px; +} +.InverseBetaRegularized4Inline { + padding: 8px; +} +/* InverseGammaRegularized:*/ +.InverseGammaRegularized { + padding: 8px; +} +.InverseGammaRegularizedInline { + padding: 8px; +} +/* InverseGammaRegularized3:*/ +.InverseGammaRegularized3 { + padding: 8px; +} +.InverseGammaRegularized3Inline { + padding: 8px; +} +/* Moment:*/ +.Moment { + padding: 8px; +} +.MomentInline { + padding: 8px; +} +/* MomentList:*/ +.MomentList { + padding: 8px; +} +.MomentListInline { + padding: 8px; +} +/* PolyGamma:*/ +.PolyGamma { + padding: 8px; +} +.PolyGammaInline { + padding: 8px; +} +/* PolyGamma2:*/ +.PolyGamma2 { + padding: 8px; +} +.PolyGamma2Inline { + padding: 8px; +} +/* PowerSymmetricPolynomial:*/ +.PowerSymmetricPolynomial { + padding: 8px; +} +.PowerSymmetricPolynomialInline { + padding: 8px; +} +/* PowerSymmetricPolynomialList:*/ +.PowerSymmetricPolynomialList { + padding: 8px; +} +.PowerSymmetricPolynomialListInline { + padding: 8px; +} +/* QBinomial:*/ +.QBinomial { + padding: 8px; +} +.QBinomialInline { + padding: 8px; +} +/* QFactorial:*/ +.QFactorial { + padding: 8px; +} +.QFactorialInline { + padding: 8px; +} +/* QGamma:*/ +.QGamma { + padding: 8px; +} +.QGammaInline { + padding: 8px; +} +/* QPolyGamma:*/ +.QPolyGamma { + padding: 8px; +} +.QPolyGammaInline { + padding: 8px; +} +/* QPolyGamma3:*/ +.QPolyGamma3 { + padding: 8px; +} +.QPolyGamma3Inline { + padding: 8px; +} +/* DiracCombSeq:*/ +.DiracCombSeq { + padding: 8px; +} +.DiracCombSeqInline { + padding: 8px; +} +/* DiracDeltaSeq:*/ +.DiracDeltaSeq { + padding: 8px; +} +.DiracDeltaSeqInline { + padding: 8px; +} +/* DiscreteDeltaSeq:*/ +.DiscreteDeltaSeq { + padding: 8px; +} +.DiscreteDeltaSeqInline { + padding: 8px; +} +/* HeavisideLambdaSeq:*/ +.HeavisideLambdaSeq { + padding: 8px; +} +.HeavisideLambdaSeqInline { + padding: 8px; +} +/* HeavisidePiSeq:*/ +.HeavisidePiSeq { + padding: 8px; +} +.HeavisidePiSeqInline { + padding: 8px; +} +/* HeavisideThetaSeq:*/ +.HeavisideThetaSeq { + padding: 8px; +} +.HeavisideThetaSeqInline { + padding: 8px; +} +/* KroneckerDeltaSeq:*/ +.KroneckerDeltaSeq { + padding: 8px; +} +.KroneckerDeltaSeqInline { + padding: 8px; +} +/* UnitBoxSeq:*/ +.UnitBoxSeq { + padding: 8px; +} +.UnitBoxSeqInline { + padding: 8px; +} +/* UnitStepSeq:*/ +.UnitStepSeq { + padding: 8px; +} +.UnitStepSeqInline { + padding: 8px; +} +/* UnitTriangleSeq:*/ +.UnitTriangleSeq { + padding: 8px; +} +.UnitTriangleSeqInline { + padding: 8px; +} +/* BernsteinBasis:*/ +.BernsteinBasis { + padding: 8px; +} +.BernsteinBasisInline { + padding: 8px; +} +/* BSplineBasis:*/ +.BSplineBasis { + padding: 8px; +} +.BSplineBasisInline { + padding: 8px; +} +/* BSplineBasis3:*/ +.BSplineBasis3 { + padding: 8px; +} +.BSplineBasis3Inline { + padding: 8px; +} +/* BSplineBasis4:*/ +.BSplineBasis4 { + padding: 8px; +} +.BSplineBasis4Inline { + padding: 8px; +} +/* CardinalBSplineBasis:*/ +.CardinalBSplineBasis { + padding: 8px; +} +.CardinalBSplineBasisInline { + padding: 8px; +} +/* DirectedEdge:*/ +.DirectedEdge { + padding: 8px; +} +.DirectedEdgeInline { + padding: 8px; +} +/* UndirectedEdge:*/ +.UndirectedEdge { + padding: 8px; +} +.UndirectedEdgeInline { + padding: 8px; +} +/* AiryAi:*/ +.AiryAi { + padding: 8px; +} +.AiryAiInline { + padding: 8px; +} +/* AiryAiPrime:*/ +.AiryAiPrime { + padding: 8px; +} +.AiryAiPrimeInline { + padding: 8px; +} +/* AiryBi:*/ +.AiryBi { + padding: 8px; +} +.AiryBiInline { + padding: 8px; +} +/* AiryBiPrime:*/ +.AiryBiPrime { + padding: 8px; +} +.AiryBiPrimeInline { + padding: 8px; +} +/* AngerJ2:*/ +.AngerJ2 { + padding: 8px; +} +.AngerJ2Inline { + padding: 8px; +} +/* AngerJ:*/ +.AngerJ { + padding: 8px; +} +.AngerJInline { + padding: 8px; +} +/* AppellF1:*/ +.AppellF1 { + padding: 8px; +} +.AppellF1Inline { + padding: 8px; +} +/* BesselI:*/ +.BesselI { + padding: 8px; +} +.BesselIInline { + padding: 8px; +} +/* BesselJ:*/ +.BesselJ { + padding: 8px; +} +.BesselJInline { + padding: 8px; +} +/* BesselJZero:*/ +.BesselJZero { + padding: 8px; +} +.BesselJZeroInline { + padding: 8px; +} +/* BesselK:*/ +.BesselK { + padding: 8px; +} +.BesselKInline { + padding: 8px; +} +/* BesselY:*/ +.BesselY { + padding: 8px; +} +.BesselYInline { + padding: 8px; +} +/* BesselYZero:*/ +.BesselYZero { + padding: 8px; +} +.BesselYZeroInline { + padding: 8px; +} +/* CoulombF:*/ +.CoulombF { + padding: 8px; +} +.CoulombFInline { + padding: 8px; +} +/* CoulombG:*/ +.CoulombG { + padding: 8px; +} +.CoulombGInline { + padding: 8px; +} +/* CoulombH1:*/ +.CoulombH1 { + padding: 8px; +} +.CoulombH1Inline { + padding: 8px; +} +/* CoulombH2:*/ +.CoulombH2 { + padding: 8px; +} +.CoulombH2Inline { + padding: 8px; +} +/* DawsonF:*/ +.DawsonF { + padding: 8px; +} +.DawsonFInline { + padding: 8px; +} +/* ExpIntegralE:*/ +.ExpIntegralE { + padding: 8px; +} +.ExpIntegralEInline { + padding: 8px; +} +/* ExpIntegralEi:*/ +.ExpIntegralEi { + padding: 8px; +} +.ExpIntegralEiInline { + padding: 8px; +} +/* FoxH:*/ +.FoxH { + padding: 8px; +} +.FoxHInline { + padding: 8px; +} +/* InvisibleEmptyList:*/ +.InvisibleEmptyList { + padding: 8px; +} +.InvisibleEmptyListInline { + padding: 8px; +} +/* Tuple:*/ +.Tuple { + padding: 8px; +} +.TupleInline { + padding: 8px; +} +/* HankelH1:*/ +.HankelH1 { + padding: 8px; +} +.HankelH1Inline { + padding: 8px; +} +/* HankelH2:*/ +.HankelH2 { + padding: 8px; +} +.HankelH2Inline { + padding: 8px; +} +/* Hypergeometric0F1:*/ +.Hypergeometric0F1 { + padding: 8px; +} +.Hypergeometric0F1Inline { + padding: 8px; +} +/* Hypergeometric0F1Regularized:*/ +.Hypergeometric0F1Regularized { + padding: 8px; +} +.Hypergeometric0F1RegularizedInline { + padding: 8px; +} +/* Hypergeometric1F1:*/ +.Hypergeometric1F1 { + padding: 8px; +} +.Hypergeometric1F1Inline { + padding: 8px; +} +/* Hypergeometric1F1Regularized:*/ +.Hypergeometric1F1Regularized { + padding: 8px; +} +.Hypergeometric1F1RegularizedInline { + padding: 8px; +} +/* Hypergeometric2F1:*/ +.Hypergeometric2F1 { + padding: 8px; +} +.Hypergeometric2F1Inline { + padding: 8px; +} +/* Hypergeometric2F1Regularized:*/ +.Hypergeometric2F1Regularized { + padding: 8px; +} +.Hypergeometric2F1RegularizedInline { + padding: 8px; +} +/* HypergeometricU:*/ +.HypergeometricU { + padding: 8px; +} +.HypergeometricUInline { + padding: 8px; +} +/* KelvinBei:*/ +.KelvinBei { + padding: 8px; +} +.KelvinBeiInline { + padding: 8px; +} +/* KelvinBei2:*/ +.KelvinBei2 { + padding: 8px; +} +.KelvinBei2Inline { + padding: 8px; +} +/* KelvinBer:*/ +.KelvinBer { + padding: 8px; +} +.KelvinBerInline { + padding: 8px; +} +/* KelvinBer2:*/ +.KelvinBer2 { + padding: 8px; +} +.KelvinBer2Inline { + padding: 8px; +} +/* KelvinKei:*/ +.KelvinKei { + padding: 8px; +} +.KelvinKeiInline { + padding: 8px; +} +/* KelvinKei2:*/ +.KelvinKei2 { + padding: 8px; +} +.KelvinKei2Inline { + padding: 8px; +} +/* KelvinKer:*/ +.KelvinKer { + padding: 8px; +} +.KelvinKerInline { + padding: 8px; +} +/* KelvinKer2:*/ +.KelvinKer2 { + padding: 8px; +} +.KelvinKer2Inline { + padding: 8px; +} +/* LogGamma:*/ +.LogGamma { + padding: 8px; +} +.LogGammaInline { + padding: 8px; +} +/* LogIntegral:*/ +.LogIntegral { + padding: 8px; +} +.LogIntegralInline { + padding: 8px; +} +/* MittagLefflerE:*/ +.MittagLefflerE { + padding: 8px; +} +.MittagLefflerEInline { + padding: 8px; +} +/* MittagLefflerE2:*/ +.MittagLefflerE2 { + padding: 8px; +} +.MittagLefflerE2Inline { + padding: 8px; +} +/* ParabolicCylinderD:*/ +.ParabolicCylinderD { + padding: 8px; +} +.ParabolicCylinderDInline { + padding: 8px; +} +/* Pochhammer:*/ +.Pochhammer { + padding: 8px; +} +.PochhammerInline { + padding: 8px; +} +/* QHypergeometricPFQSeq:*/ +.QHypergeometricPFQSeq { + padding: 8px; +} +.QHypergeometricPFQSeqInline { + padding: 8px; +} +/* QPochhammer1:*/ +.QPochhammer1 { + padding: 8px; +} +.QPochhammer1Inline { + padding: 8px; +} +/* QPochhammer2:*/ +.QPochhammer2 { + padding: 8px; +} +.QPochhammer2Inline { + padding: 8px; +} +/* QPochhammer:*/ +.QPochhammer { + padding: 8px; +} +.QPochhammerInline { + padding: 8px; +} +/* QPochhammerPower1:*/ +.QPochhammerPower1 { + padding: 8px; +} +.QPochhammerPower1Inline { + padding: 8px; +} +/* QPochhammerPower2:*/ +.QPochhammerPower2 { + padding: 8px; +} +.QPochhammerPower2Inline { + padding: 8px; +} +/* QPochhammerPower:*/ +.QPochhammerPower { + padding: 8px; +} +.QPochhammerPowerInline { + padding: 8px; +} +/* ScorerGi:*/ +.ScorerGi { + padding: 8px; +} +.ScorerGiInline { + padding: 8px; +} +/* ScorerGiPrime:*/ +.ScorerGiPrime { + padding: 8px; +} +.ScorerGiPrimeInline { + padding: 8px; +} +/* ScorerHi:*/ +.ScorerHi { + padding: 8px; +} +.ScorerHiInline { + padding: 8px; +} +/* ScorerHiPrime:*/ +.ScorerHiPrime { + padding: 8px; +} +.ScorerHiPrimeInline { + padding: 8px; +} +/* SphericalBesselJ:*/ +.SphericalBesselJ { + padding: 8px; +} +.SphericalBesselJInline { + padding: 8px; +} +/* SphericalBesselY:*/ +.SphericalBesselY { + padding: 8px; +} +.SphericalBesselYInline { + padding: 8px; +} +/* SphericalHankelH1:*/ +.SphericalHankelH1 { + padding: 8px; +} +.SphericalHankelH1Inline { + padding: 8px; +} +/* SphericalHankelH2:*/ +.SphericalHankelH2 { + padding: 8px; +} +.SphericalHankelH2Inline { + padding: 8px; +} +/* SpheroidalEigenvalue:*/ +.SpheroidalEigenvalue { + padding: 8px; +} +.SpheroidalEigenvalueInline { + padding: 8px; +} +/* SpheroidalPS:*/ +.SpheroidalPS { + padding: 8px; +} +.SpheroidalPSInline { + padding: 8px; +} +/* SpheroidalPSPrime:*/ +.SpheroidalPSPrime { + padding: 8px; +} +.SpheroidalPSPrimeInline { + padding: 8px; +} +/* SpheroidalQS:*/ +.SpheroidalQS { + padding: 8px; +} +.SpheroidalQSInline { + padding: 8px; +} +/* SpheroidalQSPrime:*/ +.SpheroidalQSPrime { + padding: 8px; +} +.SpheroidalQSPrimeInline { + padding: 8px; +} +/* SpheroidalS1:*/ +.SpheroidalS1 { + padding: 8px; +} +.SpheroidalS1Inline { + padding: 8px; +} +/* SpheroidalS1Prime:*/ +.SpheroidalS1Prime { + padding: 8px; +} +.SpheroidalS1PrimeInline { + padding: 8px; +} +/* SpheroidalS2:*/ +.SpheroidalS2 { + padding: 8px; +} +.SpheroidalS2Inline { + padding: 8px; +} +/* SpheroidalS2Prime:*/ +.SpheroidalS2Prime { + padding: 8px; +} +.SpheroidalS2PrimeInline { + padding: 8px; +} +/* StruveH:*/ +.StruveH { + padding: 8px; +} +.StruveHInline { + padding: 8px; +} +/* StruveL:*/ +.StruveL { + padding: 8px; +} +.StruveLInline { + padding: 8px; +} +/* WeberE2:*/ +.WeberE2 { + padding: 8px; +} +.WeberE2Inline { + padding: 8px; +} +/* WeberE:*/ +.WeberE { + padding: 8px; +} +.WeberEInline { + padding: 8px; +} +/* WhittakerM:*/ +.WhittakerM { + padding: 8px; +} +.WhittakerMInline { + padding: 8px; +} +/* WhittakerW:*/ +.WhittakerW { + padding: 8px; +} +.WhittakerWInline { + padding: 8px; +} +/* HankelTransform:*/ +.HankelTransform { + padding: 8px; +} +.HankelTransformInline { + padding: 8px; +} +/* InverseHankelTransform:*/ +.InverseHankelTransform { + padding: 8px; +} +.InverseHankelTransformInline { + padding: 8px; +} +/* ImplicitList:*/ +.ImplicitList { + padding: 8px; +} +.ImplicitListInline { + padding: 8px; +} +/* MellinTransform1:*/ +.MellinTransform1 { + padding: 8px; +} +.MellinTransform1Inline { + padding: 8px; +} +/* InverseMellinTransform1:*/ +.InverseMellinTransform1 { + padding: 8px; +} +.InverseMellinTransform1Inline { + padding: 8px; +} +/* RadonTransform:*/ +.RadonTransform { + padding: 8px; +} +.RadonTransformInline { + padding: 8px; +} +/* InverseRadonTransform:*/ +.InverseRadonTransform { + padding: 8px; +} +.InverseRadonTransformInline { + padding: 8px; +} +/* Limit2Arg:*/ +.Limit2Arg { + padding: 8px; +} +.Limit2ArgInline { + padding: 8px; +} +/* MaxLimit2Arg:*/ +.MaxLimit2Arg { + padding: 8px; +} +.MaxLimit2ArgInline { + padding: 8px; +} +/* MinLimit2Arg:*/ +.MinLimit2Arg { + padding: 8px; +} +.MinLimit2ArgInline { + padding: 8px; +} +/* DiscreteLimit:*/ +.DiscreteLimit { + padding: 8px; +} +.DiscreteLimitInline { + padding: 8px; +} +/* DiscreteMaxLimit:*/ +.DiscreteMaxLimit { + padding: 8px; +} +.DiscreteMaxLimitInline { + padding: 8px; +} +/* DiscreteMinLimit:*/ +.DiscreteMinLimit { + padding: 8px; +} +.DiscreteMinLimitInline { + padding: 8px; +} +/* LimitWithTooltip:*/ +.LimitWithTooltip { + padding: 8px; +} +.LimitWithTooltipInline { + padding: 8px; +} +/* MaxLimitWithTooltip:*/ +.MaxLimitWithTooltip { + padding: 8px; +} +.MaxLimitWithTooltipInline { + padding: 8px; +} +/* MinLimitWithTooltip:*/ +.MinLimitWithTooltip { + padding: 8px; +} +.MinLimitWithTooltipInline { + padding: 8px; +} +/* LimitWithSuperscript:*/ +.LimitWithSuperscript { + padding: 8px; +} +.LimitWithSuperscriptInline { + padding: 8px; +} +/* MaxLimitWithSuperscript:*/ +.MaxLimitWithSuperscript { + padding: 8px; +} +.MaxLimitWithSuperscriptInline { + padding: 8px; +} +/* MinLimitWithSuperscript:*/ +.MinLimitWithSuperscript { + padding: 8px; +} +.MinLimitWithSuperscriptInline { + padding: 8px; +} +/* ChebyshevT:*/ +.ChebyshevT { + padding: 8px; +} +.ChebyshevTInline { + padding: 8px; +} +/* ChebyshevU:*/ +.ChebyshevU { + padding: 8px; +} +.ChebyshevUInline { + padding: 8px; +} +/* GegenbauerC:*/ +.GegenbauerC { + padding: 8px; +} +.GegenbauerCInline { + padding: 8px; +} +/* GegenbauerC2:*/ +.GegenbauerC2 { + padding: 8px; +} +.GegenbauerC2Inline { + padding: 8px; +} +/* HermiteH:*/ +.HermiteH { + padding: 8px; +} +.HermiteHInline { + padding: 8px; +} +/* JacobiP:*/ +.JacobiP { + padding: 8px; +} +.JacobiPInline { + padding: 8px; +} +/* LaguerreL:*/ +.LaguerreL { + padding: 8px; +} +.LaguerreLInline { + padding: 8px; +} +/* LaguerreL3:*/ +.LaguerreL3 { + padding: 8px; +} +.LaguerreL3Inline { + padding: 8px; +} +/* LegendreP:*/ +.LegendreP { + padding: 8px; +} +.LegendrePInline { + padding: 8px; +} +/* LegendreP3:*/ +.LegendreP3 { + padding: 8px; +} +.LegendreP3Inline { + padding: 8px; +} +/* LegendreP4:*/ +.LegendreP4 { + padding: 8px; +} +.LegendreP4Inline { + padding: 8px; +} +/* LegendreQ:*/ +.LegendreQ { + padding: 8px; +} +.LegendreQInline { + padding: 8px; +} +/* LegendreQ3:*/ +.LegendreQ3 { + padding: 8px; +} +.LegendreQ3Inline { + padding: 8px; +} +/* LegendreQ4:*/ +.LegendreQ4 { + padding: 8px; +} +.LegendreQ4Inline { + padding: 8px; +} +/* WignerD:*/ +.WignerD { + padding: 8px; +} +.WignerDInline { + padding: 8px; +} +/* ZernikeR:*/ +.ZernikeR { + padding: 8px; +} +.ZernikeRInline { + padding: 8px; +} +/* Algebraics:*/ +.Algebraics { + padding: 8px; +} +.AlgebraicsInline { + padding: 8px; +} +/* Booleans:*/ +.Booleans { + padding: 8px; +} +.BooleansInline { + padding: 8px; +} +/* Complexes:*/ +.Complexes { + padding: 8px; +} +.ComplexesInline { + padding: 8px; +} +/* Integers:*/ +.Integers { + padding: 8px; +} +.IntegersInline { + padding: 8px; +} +/* Primes:*/ +.Primes { + padding: 8px; +} +.PrimesInline { + padding: 8px; +} +/* Rationals:*/ +.Rationals { + padding: 8px; +} +.RationalsInline { + padding: 8px; +} +/* Reals:*/ +.Reals { + padding: 8px; +} +.RealsInline { + padding: 8px; +} +/* PositiveReals:*/ +.PositiveReals { + padding: 8px; +} +.PositiveRealsInline { + padding: 8px; +} +/* NonNegativeReals:*/ +.NonNegativeReals { + padding: 8px; +} +.NonNegativeRealsInline { + padding: 8px; +} +/* NonPositiveReals:*/ +.NonPositiveReals { + padding: 8px; +} +.NonPositiveRealsInline { + padding: 8px; +} +/* NegativeReals:*/ +.NegativeReals { + padding: 8px; +} +.NegativeRealsInline { + padding: 8px; +} +/* PositiveRationals:*/ +.PositiveRationals { + padding: 8px; +} +.PositiveRationalsInline { + padding: 8px; +} +/* NonNegativeRationals:*/ +.NonNegativeRationals { + padding: 8px; +} +.NonNegativeRationalsInline { + padding: 8px; +} +/* NonPositiveRationals:*/ +.NonPositiveRationals { + padding: 8px; +} +.NonPositiveRationalsInline { + padding: 8px; +} +/* NegativeRationals:*/ +.NegativeRationals { + padding: 8px; +} +.NegativeRationalsInline { + padding: 8px; +} +/* PositiveIntegers:*/ +.PositiveIntegers { + padding: 8px; +} +.PositiveIntegersInline { + padding: 8px; +} +/* NonNegativeIntegers:*/ +.NonNegativeIntegers { + padding: 8px; +} +.NonNegativeIntegersInline { + padding: 8px; +} +/* NonPositiveIntegers:*/ +.NonPositiveIntegers { + padding: 8px; +} +.NonPositiveIntegersInline { + padding: 8px; +} +/* NegativeIntegers:*/ +.NegativeIntegers { + padding: 8px; +} +.NegativeIntegersInline { + padding: 8px; +} +/* ArithmeticGeometricMean:*/ +.ArithmeticGeometricMean { + padding: 8px; +} +.ArithmeticGeometricMeanInline { + padding: 8px; +} +/* CarmichaelLambda:*/ +.CarmichaelLambda { + padding: 8px; +} +.CarmichaelLambdaInline { + padding: 8px; +} +/* DirichletCharacter:*/ +.DirichletCharacter { + padding: 8px; +} +.DirichletCharacterInline { + padding: 8px; +} +/* DivisorSigma:*/ +.DivisorSigma { + padding: 8px; +} +.DivisorSigmaInline { + padding: 8px; +} +/* EulerPhi:*/ +.EulerPhi { + padding: 8px; +} +.EulerPhiInline { + padding: 8px; +} +/* JacobiSymbol:*/ +.JacobiSymbol { + padding: 8px; +} +.JacobiSymbolInline { + padding: 8px; +} +/* KroneckerSymbol:*/ +.KroneckerSymbol { + padding: 8px; +} +.KroneckerSymbolInline { + padding: 8px; +} +/* LiouvilleLambda:*/ +.LiouvilleLambda { + padding: 8px; +} +.LiouvilleLambdaInline { + padding: 8px; +} +/* MangoldtLambda:*/ +.MangoldtLambda { + padding: 8px; +} +.MangoldtLambdaInline { + padding: 8px; +} +/* MoebiusMu:*/ +.MoebiusMu { + padding: 8px; +} +.MoebiusMuInline { + padding: 8px; +} +/* Prime:*/ +.Prime { + padding: 8px; +} +.PrimeInline { + padding: 8px; +} +/* PrimeNu:*/ +.PrimeNu { + padding: 8px; +} +.PrimeNuInline { + padding: 8px; +} +/* PrimeOmega:*/ +.PrimeOmega { + padding: 8px; +} +.PrimeOmegaInline { + padding: 8px; +} +/* PrimePi:*/ +.PrimePi { + padding: 8px; +} +.PrimePiInline { + padding: 8px; +} +/* RamanujanTau:*/ +.RamanujanTau { + padding: 8px; +} +.RamanujanTauInline { + padding: 8px; +} +/* SquaresR:*/ +.SquaresR { + padding: 8px; +} +.SquaresRInline { + padding: 8px; +} +/* Abs:*/ +.Abs { + padding: 8px; +} +.AbsInline { + padding: 8px; +} +/* Ceiling:*/ +.Ceiling { + padding: 8px; +} +.CeilingInline { + padding: 8px; +} +/* Floor:*/ +.Floor { + padding: 8px; +} +.FloorInline { + padding: 8px; +} +/* Mod:*/ +.Mod { + padding: 8px; +} +.ModInline { + padding: 8px; +} +/* Norm:*/ +.Norm { + padding: 8px; +} +.NormInline { + padding: 8px; +} +/* Norm2:*/ +.Norm2 { + padding: 8px; +} +.Norm2Inline { + padding: 8px; +} +/* PolynomialMod:*/ +.PolynomialMod { + padding: 8px; +} +.PolynomialModInline { + padding: 8px; +} +/* PowerMod:*/ +.PowerMod { + padding: 8px; +} +.PowerModInline { + padding: 8px; +} +/* RealAbs:*/ +.RealAbs { + padding: 8px; +} +.RealAbsInline { + padding: 8px; +} +/* RealSign:*/ +.RealSign { + padding: 8px; +} +.RealSignInline { + padding: 8px; +} +/* Sign:*/ +.Sign { + padding: 8px; +} +.SignInline { + padding: 8px; +} +/* Highlighted:*/ +.Highlighted { + padding: 8px; +} +.HighlightedInline { + padding: 8px; +} +/* Spacer1:*/ +.Spacer1 { + padding: 8px; +} +.Spacer1Inline { + padding: 8px; +} +/* Spacer2:*/ +.Spacer2 { + padding: 8px; +} +.Spacer2Inline { + padding: 8px; +} +/* Spacer3:*/ +.Spacer3 { + padding: 8px; +} +.Spacer3Inline { + padding: 8px; +} +/* DirichletBeta:*/ +.DirichletBeta { + padding: 8px; +} +.DirichletBetaInline { + padding: 8px; +} +/* DirichletEta:*/ +.DirichletEta { + padding: 8px; +} +.DirichletEtaInline { + padding: 8px; +} +/* DirichletL:*/ +.DirichletL { + padding: 8px; +} +.DirichletLInline { + padding: 8px; +} +/* DirichletLambda:*/ +.DirichletLambda { + padding: 8px; +} +.DirichletLambdaInline { + padding: 8px; +} +/* HurwitzLerchPhi:*/ +.HurwitzLerchPhi { + padding: 8px; +} +.HurwitzLerchPhiInline { + padding: 8px; +} +/* HurwitzZeta:*/ +.HurwitzZeta { + padding: 8px; +} +.HurwitzZetaInline { + padding: 8px; +} +/* LerchPhi:*/ +.LerchPhi { + padding: 8px; +} +.LerchPhiInline { + padding: 8px; +} +/* MathieuCharacteristicA:*/ +.MathieuCharacteristicA { + padding: 8px; +} +.MathieuCharacteristicAInline { + padding: 8px; +} +/* MathieuCharacteristicB:*/ +.MathieuCharacteristicB { + padding: 8px; +} +.MathieuCharacteristicBInline { + padding: 8px; +} +/* PolyLog:*/ +.PolyLog { + padding: 8px; +} +.PolyLogInline { + padding: 8px; +} +/* PolyLog3:*/ +.PolyLog3 { + padding: 8px; +} +.PolyLog3Inline { + padding: 8px; +} +/* PrimeZetaP:*/ +.PrimeZetaP { + padding: 8px; +} +.PrimeZetaPInline { + padding: 8px; +} +/* RiemannR:*/ +.RiemannR { + padding: 8px; +} +.RiemannRInline { + padding: 8px; +} +/* RiemannSiegelTheta:*/ +.RiemannSiegelTheta { + padding: 8px; +} +.RiemannSiegelThetaInline { + padding: 8px; +} +/* RiemannSiegelZ:*/ +.RiemannSiegelZ { + padding: 8px; +} +.RiemannSiegelZInline { + padding: 8px; +} +/* RiemannXi:*/ +.RiemannXi { + padding: 8px; +} +.RiemannXiInline { + padding: 8px; +} +/* Zeta:*/ +.Zeta { + padding: 8px; +} +.ZetaInline { + padding: 8px; +} +/* Zeta2:*/ +.Zeta2 { + padding: 8px; +} +.Zeta2Inline { + padding: 8px; +} +/* ZetaZero:*/ +.ZetaZero { + padding: 8px; +} +.ZetaZeroInline { + padding: 8px; +} +/* ConditionedSet:*/ +.ConditionedSet { + padding: 8px; +} +.ConditionedSetInline { + padding: 8px; +} +/* ConditionedList:*/ +.ConditionedList { + padding: 8px; +} +.ConditionedListInline { + padding: 8px; +} +/* ConditionedSetWithAttributes:*/ +.ConditionedSetWithAttributes { + padding: 8px; +} +.ConditionedSetWithAttributesInline { + padding: 8px; +} +/* ConditionedListWithAttributes:*/ +.ConditionedListWithAttributes { + padding: 8px; +} +.ConditionedListWithAttributesInline { + padding: 8px; +} +/* ConditionedSum:*/ +.ConditionedSum { + padding: 8px; +} +.ConditionedSumInline { + padding: 8px; +} +/* ConditionedProduct:*/ +.ConditionedProduct { + padding: 8px; +} +.ConditionedProductInline { + padding: 8px; +} +/* ConditionedMin:*/ +.ConditionedMin { + padding: 8px; +} +.ConditionedMinInline { + padding: 8px; +} +/* ConditionedMax:*/ +.ConditionedMax { + padding: 8px; +} +.ConditionedMaxInline { + padding: 8px; +} +/* ConditionedIntegrate:*/ +.ConditionedIntegrate { + padding: 8px; +} +.ConditionedIntegrateInline { + padding: 8px; +} +/* ConditionedLimit:*/ +.ConditionedLimit { + padding: 8px; +} +.ConditionedLimitInline { + padding: 8px; +} +/* DomainIntegrate:*/ +.DomainIntegrate { + padding: 8px; +} +.DomainIntegrateInline { + padding: 8px; +} +/* DomainSum:*/ +.DomainSum { + padding: 8px; +} +.DomainSumInline { + padding: 8px; +} +/* DomainProduct:*/ +.DomainProduct { + padding: 8px; +} +.DomainProductInline { + padding: 8px; +} +/* IntervalOpen:*/ +.IntervalOpen { + padding: 8px; +} +.IntervalOpenInline { + padding: 8px; +} +/* IntervalOpenClosed:*/ +.IntervalOpenClosed { + padding: 8px; +} +.IntervalOpenClosedInline { + padding: 8px; +} +/* IntervalClosedOpen:*/ +.IntervalClosedOpen { + padding: 8px; +} +.IntervalClosedOpenInline { + padding: 8px; +} +/* IntervalClosed:*/ +.IntervalClosed { + padding: 8px; +} +.IntervalClosedInline { + padding: 8px; +} +/* Ket:*/ +.Ket { + padding: 8px; +} +.KetInline { + padding: 8px; +} +/* Bra:*/ +.Bra { + padding: 8px; +} +.BraInline { + padding: 8px; +} +/* BraKet:*/ +.BraKet { + padding: 8px; +} +.BraKetInline { + padding: 8px; +} +/* Curl:*/ +.Curl { + padding: 8px; +} +.CurlInline { + padding: 8px; +} +/* Div:*/ +.Div { + padding: 8px; +} +.DivInline { + padding: 8px; +} +/* Grad:*/ +.Grad { + padding: 8px; +} +.GradInline { + padding: 8px; +} +/* Laplacian:*/ +.Laplacian { + padding: 8px; +} +.LaplacianInline { + padding: 8px; +} +/* Indexed:*/ +.Indexed { + padding: 8px; +} +.IndexedInline { + padding: 8px; +} +/* IndexedDefault:*/ +.IndexedDefault { + padding: 8px; +} +.IndexedDefaultInline { + padding: 8px; +} +/* InactiveIntegrate:*/ +.InactiveIntegrate { + padding: 8px; +} +.InactiveIntegrateInline { + padding: 8px; +} +/* InactiveSum:*/ +.InactiveSum { + padding: 8px; +} +.InactiveSumInline { + padding: 8px; +} +/* InactiveProduct:*/ +.InactiveProduct { + padding: 8px; +} +.InactiveProductInline { + padding: 8px; +} +/* InactiveContinuedFractionK:*/ +.InactiveContinuedFractionK { + padding: 8px; +} +.InactiveContinuedFractionKInline { + padding: 8px; +} +/* InactiveContinuedFractionKNoMin:*/ +.InactiveContinuedFractionKNoMin { + padding: 8px; +} +.InactiveContinuedFractionKNoMinInline { + padding: 8px; +} +/* InactiveD:*/ +.InactiveD { + padding: 8px; +} +.InactiveDInline { + padding: 8px; +} +/* InactiveDTraditional:*/ +.InactiveDTraditional { + padding: 8px; +} +.InactiveDTraditionalInline { + padding: 8px; +} +/* InactiveLimit:*/ +.InactiveLimit { + padding: 8px; +} +.InactiveLimitInline { + padding: 8px; +} +/* InactiveLimitFromLeft:*/ +.InactiveLimitFromLeft { + padding: 8px; +} +.InactiveLimitFromLeftInline { + padding: 8px; +} +/* InactiveLimitFromRight:*/ +.InactiveLimitFromRight { + padding: 8px; +} +.InactiveLimitFromRightInline { + padding: 8px; +} +/* InactiveLimitFromAutomatic:*/ +.InactiveLimitFromAutomatic { + padding: 8px; +} +.InactiveLimitFromAutomaticInline { + padding: 8px; +} +/* InactiveLimit2Arg:*/ +.InactiveLimit2Arg { + padding: 8px; +} +.InactiveLimit2ArgInline { + padding: 8px; +} +/* InactiveMaxLimit2Arg:*/ +.InactiveMaxLimit2Arg { + padding: 8px; +} +.InactiveMaxLimit2ArgInline { + padding: 8px; +} +/* InactiveMinLimit2Arg:*/ +.InactiveMinLimit2Arg { + padding: 8px; +} +.InactiveMinLimit2ArgInline { + padding: 8px; +} +/* InactiveDiscreteLimit:*/ +.InactiveDiscreteLimit { + padding: 8px; +} +.InactiveDiscreteLimitInline { + padding: 8px; +} +/* InactiveDiscreteMaxLimit:*/ +.InactiveDiscreteMaxLimit { + padding: 8px; +} +.InactiveDiscreteMaxLimitInline { + padding: 8px; +} +/* InactiveDiscreteMinLimit:*/ +.InactiveDiscreteMinLimit { + padding: 8px; +} +.InactiveDiscreteMinLimitInline { + padding: 8px; +} +/* InactiveLimitWithTooltip:*/ +.InactiveLimitWithTooltip { + padding: 8px; +} +.InactiveLimitWithTooltipInline { + padding: 8px; +} +/* InactiveMaxLimitWithTooltip:*/ +.InactiveMaxLimitWithTooltip { + padding: 8px; +} +.InactiveMaxLimitWithTooltipInline { + padding: 8px; +} +/* InactiveMinLimitWithTooltip:*/ +.InactiveMinLimitWithTooltip { + padding: 8px; +} +.InactiveMinLimitWithTooltipInline { + padding: 8px; +} +/* InactiveLimitWithSuperscript:*/ +.InactiveLimitWithSuperscript { + padding: 8px; +} +.InactiveLimitWithSuperscriptInline { + padding: 8px; +} +/* InactiveMaxLimitWithSuperscript:*/ +.InactiveMaxLimitWithSuperscript { + padding: 8px; +} +.InactiveMaxLimitWithSuperscriptInline { + padding: 8px; +} +/* InactiveMinLimitWithSuperscript:*/ +.InactiveMinLimitWithSuperscript { + padding: 8px; +} +.InactiveMinLimitWithSuperscriptInline { + padding: 8px; +} +/* InactiveGrad:*/ +.InactiveGrad { + padding: 8px; +} +.InactiveGradInline { + padding: 8px; +} +/* InactiveDiv:*/ +.InactiveDiv { + padding: 8px; +} +.InactiveDivInline { + padding: 8px; +} +/* InactiveCurl:*/ +.InactiveCurl { + padding: 8px; +} +.InactiveCurlInline { + padding: 8px; +} +/* InactiveLaplacian:*/ +.InactiveLaplacian { + padding: 8px; +} +.InactiveLaplacianInline { + padding: 8px; +} +/* InactivePart:*/ +.InactivePart { + padding: 8px; +} +.InactivePartInline { + padding: 8px; +} +/* InactiveHead:*/ +.InactiveHead { + padding: 8px; +} +.InactiveHeadInline { + padding: 8px; +} +/* InactiveDifferenceDelta:*/ +.InactiveDifferenceDelta { + padding: 8px; +} +.InactiveDifferenceDeltaInline { + padding: 8px; +} +/* InactiveDifferenceDelta3:*/ +.InactiveDifferenceDelta3 { + padding: 8px; +} +.InactiveDifferenceDelta3Inline { + padding: 8px; +} +/* InactiveDifferenceDelta4:*/ +.InactiveDifferenceDelta4 { + padding: 8px; +} +.InactiveDifferenceDelta4Inline { + padding: 8px; +} +/* InactiveDiscreteRatio:*/ +.InactiveDiscreteRatio { + padding: 8px; +} +.InactiveDiscreteRatioInline { + padding: 8px; +} +/* InactiveDiscreteRatio3:*/ +.InactiveDiscreteRatio3 { + padding: 8px; +} +.InactiveDiscreteRatio3Inline { + padding: 8px; +} +/* InactiveDiscreteRatio4:*/ +.InactiveDiscreteRatio4 { + padding: 8px; +} +.InactiveDiscreteRatio4Inline { + padding: 8px; +} +/* InactiveDiscreteShift:*/ +.InactiveDiscreteShift { + padding: 8px; +} +.InactiveDiscreteShiftInline { + padding: 8px; +} +/* InactiveDiscreteShift3:*/ +.InactiveDiscreteShift3 { + padding: 8px; +} +.InactiveDiscreteShift3Inline { + padding: 8px; +} +/* InactiveDiscreteShift4:*/ +.InactiveDiscreteShift4 { + padding: 8px; +} +.InactiveDiscreteShift4Inline { + padding: 8px; +} +/* CarlsonRC:*/ +.CarlsonRC { + padding: 8px; +} +.CarlsonRCInline { + padding: 8px; +} +/* CarlsonRK:*/ +.CarlsonRK { + padding: 8px; +} +.CarlsonRKInline { + padding: 8px; +} +/* CarlsonRE:*/ +.CarlsonRE { + padding: 8px; +} +.CarlsonREInline { + padding: 8px; +} +/* CarlsonRM:*/ +.CarlsonRM { + padding: 8px; +} +.CarlsonRMInline { + padding: 8px; +} +/* CarlsonRF:*/ +.CarlsonRF { + padding: 8px; +} +.CarlsonRFInline { + padding: 8px; +} +/* CarlsonRG:*/ +.CarlsonRG { + padding: 8px; +} +.CarlsonRGInline { + padding: 8px; +} +/* CarlsonRD:*/ +.CarlsonRD { + padding: 8px; +} +.CarlsonRDInline { + padding: 8px; +} +/* CarlsonRJ:*/ +.CarlsonRJ { + padding: 8px; +} +.CarlsonRJInline { + padding: 8px; +} +/* NotationTemplateTag:*/ +.NotationTemplateTag { + background-color: #FFFFD9; + padding: 8px; +} +.NotationTemplateTagInline { + background-color: #FFFFD9; + padding: 8px; +} +/* NotationPatternTag:*/ +.NotationPatternTag { + background-color: #FFE6FA; + padding: 8px; +} +.NotationPatternTagInline { + background-color: #FFE6FA; + padding: 8px; +} +/* NotationMadeBoxesTag:*/ +.NotationMadeBoxesTag { + background-color: #E6E3FF; + padding: 8px; +} +.NotationMadeBoxesTagInline { + background-color: #E6E3FF; + padding: 8px; +} +/* QuantityPanel:*/ +.QuantityPanel { + color: ; + padding: 8px; +} +.QuantityPanelInline { + color: ; + padding: 8px; +} +/* UnitTooltip:*/ +.UnitTooltip { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: ; + text-align: left; + border: 1px; + border-style: solid; + border-color: ; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +.UnitTooltipInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + background-color: ; + text-align: left; + border: 1px; + border-style: solid; + border-color: ; + padding-left: 2px; + padding-right: 2px; + padding-top: 1px; + padding-bottom: 1px; +} +/* UnitTooltipPrefix:*/ +.UnitTooltipPrefix { + font-size: 8px; + font-family: Verdana; + color: #808080; + padding: 8px; +} +.UnitTooltipPrefixInline { + font-size: 8px; + font-family: Verdana; + color: #808080; + padding: 8px; +} +/* UnitTooltipText:*/ +.UnitTooltipText { + font-size: 9px; + font-family: Verdana; + color: #333333; + padding: 8px; +} +.UnitTooltipTextInline { + font-size: 9px; + font-family: Verdana; + color: #333333; + padding: 8px; +} +/* UnitTooltipTemplate:*/ +.UnitTooltipTemplate { + padding: 8px; +} +.UnitTooltipTemplateInline { + padding: 8px; +} +/* MixedRadixUnitTooltipTemplate:*/ +.MixedRadixUnitTooltipTemplate { + padding: 8px; +} +.MixedRadixUnitTooltipTemplateInline { + padding: 8px; +} +/* Quantity:*/ +.Quantity { + padding: 8px; +} +.QuantityInline { + padding: 8px; +} +/* QuantityPostfix:*/ +.QuantityPostfix { + padding: 8px; +} +.QuantityPostfixInline { + padding: 8px; +} +/* QuantityUnitPostfix:*/ +.QuantityUnitPostfix { + padding: 8px; +} +.QuantityUnitPostfixInline { + padding: 8px; +} +/* QuantityPrefix:*/ +.QuantityPrefix { + padding: 8px; +} +.QuantityPrefixInline { + padding: 8px; +} +/* QuantityPrefixUnit:*/ +.QuantityPrefixUnit { + padding: 8px; +} +.QuantityPrefixUnitInline { + padding: 8px; +} +/* QuantityPrefixPostfix:*/ +.QuantityPrefixPostfix { + padding: 8px; +} +.QuantityPrefixPostfixInline { + padding: 8px; +} +/* QuantityPrefixUnitPostfix:*/ +.QuantityPrefixUnitPostfix { + padding: 8px; +} +.QuantityPrefixUnitPostfixInline { + padding: 8px; +} +/* QuantityTF:*/ +.QuantityTF { + padding: 8px; +} +.QuantityTFInline { + padding: 8px; +} +/* QuantityPostfixTF:*/ +.QuantityPostfixTF { + padding: 8px; +} +.QuantityPostfixTFInline { + padding: 8px; +} +/* QuantityUnitPostfixTF:*/ +.QuantityUnitPostfixTF { + padding: 8px; +} +.QuantityUnitPostfixTFInline { + padding: 8px; +} +/* QuantityPrefixTF:*/ +.QuantityPrefixTF { + padding: 8px; +} +.QuantityPrefixTFInline { + padding: 8px; +} +/* QuantityPrefixUnitTF:*/ +.QuantityPrefixUnitTF { + padding: 8px; +} +.QuantityPrefixUnitTFInline { + padding: 8px; +} +/* QuantityPrefixPostfixTF:*/ +.QuantityPrefixPostfixTF { + padding: 8px; +} +.QuantityPrefixPostfixTFInline { + padding: 8px; +} +/* QuantityPrefixUnitPostfixTF:*/ +.QuantityPrefixUnitPostfixTF { + padding: 8px; +} +.QuantityPrefixUnitPostfixTFInline { + padding: 8px; +} +/* QuantityMixedUnit1:*/ +.QuantityMixedUnit1 { + padding: 8px; +} +.QuantityMixedUnit1Inline { + padding: 8px; +} +/* QuantityMixedUnit2:*/ +.QuantityMixedUnit2 { + padding: 8px; +} +.QuantityMixedUnit2Inline { + padding: 8px; +} +/* QuantityMixedUnit3:*/ +.QuantityMixedUnit3 { + padding: 8px; +} +.QuantityMixedUnit3Inline { + padding: 8px; +} +/* QuantityMixedUnit4:*/ +.QuantityMixedUnit4 { + padding: 8px; +} +.QuantityMixedUnit4Inline { + padding: 8px; +} +/* QuantityMixedUnit5:*/ +.QuantityMixedUnit5 { + padding: 8px; +} +.QuantityMixedUnit5Inline { + padding: 8px; +} +/* QuantityMixedUnit6:*/ +.QuantityMixedUnit6 { + padding: 8px; +} +.QuantityMixedUnit6Inline { + padding: 8px; +} +/* QuantityMixedUnitTF1:*/ +.QuantityMixedUnitTF1 { + padding: 8px; +} +.QuantityMixedUnitTF1Inline { + padding: 8px; +} +/* QuantityMixedUnitTF2:*/ +.QuantityMixedUnitTF2 { + padding: 8px; +} +.QuantityMixedUnitTF2Inline { + padding: 8px; +} +/* QuantityMixedUnitTF3:*/ +.QuantityMixedUnitTF3 { + padding: 8px; +} +.QuantityMixedUnitTF3Inline { + padding: 8px; +} +/* QuantityMixedUnitTF4:*/ +.QuantityMixedUnitTF4 { + padding: 8px; +} +.QuantityMixedUnitTF4Inline { + padding: 8px; +} +/* QuantityMixedUnitTF5:*/ +.QuantityMixedUnitTF5 { + padding: 8px; +} +.QuantityMixedUnitTF5Inline { + padding: 8px; +} +/* QuantityMixedUnitTF6:*/ +.QuantityMixedUnitTF6 { + padding: 8px; +} +.QuantityMixedUnitTF6Inline { + padding: 8px; +} +/* QuantityMixedUnitGeneric:*/ +.QuantityMixedUnitGeneric { + padding: 8px; +} +.QuantityMixedUnitGenericInline { + padding: 8px; +} +/* QuantityMixedUnitGenericTF:*/ +.QuantityMixedUnitGenericTF { + padding: 8px; +} +.QuantityMixedUnitGenericTFInline { + padding: 8px; +} +/* QuantityMixedRadix1:*/ +.QuantityMixedRadix1 { + padding: 8px; +} +.QuantityMixedRadix1Inline { + padding: 8px; +} +/* QuantityMixedRadix2:*/ +.QuantityMixedRadix2 { + padding: 8px; +} +.QuantityMixedRadix2Inline { + padding: 8px; +} +/* QuantityMixedRadix3:*/ +.QuantityMixedRadix3 { + padding: 8px; +} +.QuantityMixedRadix3Inline { + padding: 8px; +} +/* QuantityMixedRadix4:*/ +.QuantityMixedRadix4 { + padding: 8px; +} +.QuantityMixedRadix4Inline { + padding: 8px; +} +/* QuantityMixedRadix5:*/ +.QuantityMixedRadix5 { + padding: 8px; +} +.QuantityMixedRadix5Inline { + padding: 8px; +} +/* QuantityMixedRadix6:*/ +.QuantityMixedRadix6 { + padding: 8px; +} +.QuantityMixedRadix6Inline { + padding: 8px; +} +/* QuantityMixedRadixTF1:*/ +.QuantityMixedRadixTF1 { + padding: 8px; +} +.QuantityMixedRadixTF1Inline { + padding: 8px; +} +/* QuantityMixedRadixTF2:*/ +.QuantityMixedRadixTF2 { + padding: 8px; +} +.QuantityMixedRadixTF2Inline { + padding: 8px; +} +/* QuantityMixedRadixTF3:*/ +.QuantityMixedRadixTF3 { + padding: 8px; +} +.QuantityMixedRadixTF3Inline { + padding: 8px; +} +/* QuantityMixedRadixTF4:*/ +.QuantityMixedRadixTF4 { + padding: 8px; +} +.QuantityMixedRadixTF4Inline { + padding: 8px; +} +/* QuantityMixedRadixTF5:*/ +.QuantityMixedRadixTF5 { + padding: 8px; +} +.QuantityMixedRadixTF5Inline { + padding: 8px; +} +/* QuantityMixedRadixTF6:*/ +.QuantityMixedRadixTF6 { + padding: 8px; +} +.QuantityMixedRadixTF6Inline { + padding: 8px; +} +/* QuantityMixedRadixGeneric:*/ +.QuantityMixedRadixGeneric { + padding: 8px; +} +.QuantityMixedRadixGenericInline { + padding: 8px; +} +/* QuantityMixedRadixGenericTF:*/ +.QuantityMixedRadixGenericTF { + padding: 8px; +} +.QuantityMixedRadixGenericTFInline { + padding: 8px; +} +/* QuantityUnit:*/ +.QuantityUnit { + padding: 8px; +} +.QuantityUnitInline { + padding: 8px; +} +/* QuantityUnitLabel:*/ +.QuantityUnitLabel { + font-family: Helvetica; + font-weight: normal; + color: #808080; + padding: 8px; +} +.QuantityUnitLabelInline { + font-family: Helvetica; + font-weight: normal; + color: #808080; + padding: 8px; +} +/* QuantityUnitTraditionalLabel:*/ +.QuantityUnitTraditionalLabel { + font-weight: normal; + padding: 8px; +} +.QuantityUnitTraditionalLabelInline { + font-weight: normal; + padding: 8px; +} +/* EntityTypeLabel:*/ +.EntityTypeLabel { + font-size: 9px; + font-weight: normal; + text-decoration: none; + color: #999999; + padding: 8px; +} +.EntityTypeLabelInline { + font-size: 9px; + font-weight: normal; + text-decoration: none; + color: #999999; + padding: 8px; +} +/* EntitySublabel:*/ +.EntitySublabel { + padding: 8px; +} +.EntitySublabelInline { + padding: 8px; +} +/* Entity:*/ +.Entity { + padding: 8px; +} +.EntityInline { + padding: 8px; +} +/* EntityFrameless:*/ +.EntityFrameless { + padding: 8px; +} +.EntityFramelessInline { + padding: 8px; +} +/* EntityFramelessHot:*/ +.EntityFramelessHot { + padding: 8px; +} +.EntityFramelessHotInline { + padding: 8px; +} +/* EntityFrame:*/ +.EntityFrame { + padding: 8px; +} +.EntityFrameInline { + padding: 8px; +} +/* EntityClass:*/ +.EntityClass { + padding: 8px; +} +.EntityClassInline { + padding: 8px; +} +/* EntityClassFrameless:*/ +.EntityClassFrameless { + padding: 8px; +} +.EntityClassFramelessInline { + padding: 8px; +} +/* EntityClassFramelessHot:*/ +.EntityClassFramelessHot { + padding: 8px; +} +.EntityClassFramelessHotInline { + padding: 8px; +} +/* EntityClassFrame:*/ +.EntityClassFrame { + padding: 8px; +} +.EntityClassFrameInline { + padding: 8px; +} +/* EntityProperty:*/ +.EntityProperty { + padding: 8px; +} +.EntityPropertyInline { + padding: 8px; +} +/* EntityPropertyClass:*/ +.EntityPropertyClass { + padding: 8px; +} +.EntityPropertyClassInline { + padding: 8px; +} +/* EntityValue:*/ +.EntityValue { + padding: 8px; +} +.EntityValueInline { + padding: 8px; +} +/* EntityCommonNameLabel:*/ +.EntityCommonNameLabel { + color: #653510; + padding: 8px; +} +.EntityCommonNameLabelInline { + color: #653510; + padding: 8px; +} +/* EntityTraditionalFramed:*/ +.EntityTraditionalFramed { + padding: 8px; +} +.EntityTraditionalFramedInline { + padding: 8px; +} +/* GeneralizedEntityToggle:*/ +.GeneralizedEntityToggle { + padding: 8px; +} +.GeneralizedEntityToggleInline { + padding: 8px; +} +/* GeneralizedEntityToggleLabeled:*/ +.GeneralizedEntityToggleLabeled { + padding: 8px; +} +.GeneralizedEntityToggleLabeledInline { + padding: 8px; +} +/* GeneralizedEntityBase:*/ +.GeneralizedEntityBase { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +.GeneralizedEntityBaseInline { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +/* GeneralizedEntityClassBase:*/ +.GeneralizedEntityClassBase { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +.GeneralizedEntityClassBaseInline { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +/* GeneralizedEntityInfo:*/ +.GeneralizedEntityInfo { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +.GeneralizedEntityInfoInline { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +/* GeneralizedEntityInfoItem:*/ +.GeneralizedEntityInfoItem { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +.GeneralizedEntityInfoItemInline { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +/* GeneralizedEntityInfoRow:*/ +.GeneralizedEntityInfoRow { + padding: 8px; +} +.GeneralizedEntityInfoRowInline { + padding: 8px; +} +/* GeneralizedEntityFrame:*/ +.GeneralizedEntityFrame { + padding: 8px; +} +.GeneralizedEntityFrameInline { + padding: 8px; +} +/* GeneralizedEntityInfoGrid:*/ +.GeneralizedEntityInfoGrid { + padding: 8px; +} +.GeneralizedEntityInfoGridInline { + padding: 8px; +} +/* GeneralizedEntityLabel:*/ +.GeneralizedEntityLabel { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #999999; + padding: 8px; +} +.GeneralizedEntityLabelInline { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #999999; + padding: 8px; +} +/* EntityPropertyInfoItem:*/ +.EntityPropertyInfoItem { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #9E693F; + padding: 8px; +} +.EntityPropertyInfoItemInline { + font-size: 11px; + font-family: Helvetica; + font-weight: normal; + color: #9E693F; + padding: 8px; +} +/* EntityPropertyInfoRow:*/ +.EntityPropertyInfoRow { + padding: 8px; +} +.EntityPropertyInfoRowInline { + padding: 8px; +} +/* EntityPropertyToggle:*/ +.EntityPropertyToggle { + padding: 8px; +} +.EntityPropertyToggleInline { + padding: 8px; +} +/* QualifiedEntityPropertyBase:*/ +.QualifiedEntityPropertyBase { + font-family: Helvetica; + font-style: Italic; + font-weight: Plain; + color: #653510; + padding: 8px; +} +.QualifiedEntityPropertyBaseInline { + font-family: Helvetica; + font-style: Italic; + font-weight: Plain; + color: #653510; + padding: 8px; +} +/* ImplicitEntityInfoRow:*/ +.ImplicitEntityInfoRow { + padding: 8px; +} +.ImplicitEntityInfoRowInline { + padding: 8px; +} +/* ImplicitEntityInfoLHSItem:*/ +.ImplicitEntityInfoLHSItem { + padding: 8px; +} +.ImplicitEntityInfoLHSItemInline { + padding: 8px; +} +/* ImplicitEntityInfoRHSItem:*/ +.ImplicitEntityInfoRHSItem { + padding: 8px; +} +.ImplicitEntityInfoRHSItemInline { + padding: 8px; +} +/* ImplicitEntityToggle:*/ +.ImplicitEntityToggle { + padding: 8px; +} +.ImplicitEntityToggleInline { + padding: 8px; +} +/* ImplicitEntityToggleLabeled:*/ +.ImplicitEntityToggleLabeled { + padding: 8px; +} +.ImplicitEntityToggleLabeledInline { + padding: 8px; +} +/* ImplicitEntityContains:*/ +.ImplicitEntityContains { + font-size: 11px; + font-style: Italic; + padding: 8px; +} +.ImplicitEntityContainsInline { + font-size: 11px; + font-style: Italic; + padding: 8px; +} +/* EntityContainsSequence:*/ +.EntityContainsSequence { + padding: 8px; +} +.EntityContainsSequenceInline { + padding: 8px; +} +/* GrayEntityFrame:*/ +.GrayEntityFrame { + padding: 8px; +} +.GrayEntityFrameInline { + padding: 8px; +} +/* ImplicitEntityPropertyToggle:*/ +.ImplicitEntityPropertyToggle { + padding: 8px; +} +.ImplicitEntityPropertyToggleInline { + padding: 8px; +} +/* ImplicitEntityPropertyFrame:*/ +.ImplicitEntityPropertyFrame { + padding: 8px; +} +.ImplicitEntityPropertyFrameInline { + padding: 8px; +} +/* ImplicitEntityPropertyBase:*/ +.ImplicitEntityPropertyBase { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +.ImplicitEntityPropertyBaseInline { + font-family: Helvetica; + color: #653510; + padding: 8px; +} +/* ImplicitEntityPropertySequence:*/ +.ImplicitEntityPropertySequence { + padding: 8px; +} +.ImplicitEntityPropertySequenceInline { + padding: 8px; +} +/* ImplicitEntityBase:*/ +.ImplicitEntityBase { + color: #653510; + padding: 8px; +} +.ImplicitEntityBaseInline { + color: #653510; + padding: 8px; +} +/* ImplicitEntityClassBase:*/ +.ImplicitEntityClassBase { + color: #653510; + padding: 8px; +} +.ImplicitEntityClassBaseInline { + color: #653510; + padding: 8px; +} +/* EntityWithIcon:*/ +.EntityWithIcon { + padding: 8px; +} +.EntityWithIconInline { + padding: 8px; +} +/* EntityPropertyWithIcon:*/ +.EntityPropertyWithIcon { + padding: 8px; +} +.EntityPropertyWithIconInline { + padding: 8px; +} +/* EntityIcon:*/ +.EntityIcon { + padding: 8px; +} +.EntityIconInline { + padding: 8px; +} +/* EntitySeq:*/ +.EntitySeq { + padding: 8px; +} +.EntitySeqInline { + padding: 8px; +} +/* EntityWithSubLabelSeq:*/ +.EntityWithSubLabelSeq { + padding: 8px; +} +.EntityWithSubLabelSeqInline { + padding: 8px; +} +/* EntityClassSeq:*/ +.EntityClassSeq { + padding: 8px; +} +.EntityClassSeqInline { + padding: 8px; +} +/* EntityPropertySeq:*/ +.EntityPropertySeq { + padding: 8px; +} +.EntityPropertySeqInline { + padding: 8px; +} +/* EntityPropertyClassSeq:*/ +.EntityPropertyClassSeq { + padding: 8px; +} +.EntityPropertyClassSeqInline { + padding: 8px; +} +/* ExternalIdentifier:*/ +.ExternalIdentifier { + padding: 8px; +} +.ExternalIdentifierInline { + padding: 8px; +} +/* ExternalIdentifierURL:*/ +.ExternalIdentifierURL { + padding: 8px; +} +.ExternalIdentifierURLInline { + padding: 8px; +} +/* ExternalIdentifierTypeLabel:*/ +.ExternalIdentifierTypeLabel { + font-size: 11px; + color: #8499B4; + padding: 8px; +} +.ExternalIdentifierTypeLabelInline { + font-size: 11px; + color: #8499B4; + padding: 8px; +} +/* ExternalIdentifierLabel:*/ +.ExternalIdentifierLabel { + font-size: 12px; + color: #6488B8; + padding: 8px; +} +.ExternalIdentifierLabelInline { + font-size: 12px; + color: #6488B8; + padding: 8px; +} +/* ExternalIdentifierLabelHyperlinkMouseover:*/ +.ExternalIdentifierLabelHyperlinkMouseover { + font-size: 12px; + color: #63A1F1; + padding: 8px; +} +.ExternalIdentifierLabelHyperlinkMouseoverInline { + font-size: 12px; + color: #63A1F1; + padding: 8px; +} +/* IconizedName:*/ +.IconizedName { + /* font-size: 1 + Inherited is not currently supported */ + color: #333333; + padding: 8px; +} +.IconizedNameInline { + /* font-size: 1 + Inherited is not currently supported */ + color: #333333; + padding: 8px; +} +/* IconizedNameLight:*/ +.IconizedNameLight { + /* font-size: 1 + Inherited is not currently supported */ + color: #898989; + padding: 8px; +} +.IconizedNameLightInline { + /* font-size: 1 + Inherited is not currently supported */ + color: #898989; + padding: 8px; +} +/* IconizedCustomName:*/ +.IconizedCustomName { + font-style: italic; + color: #333333; + padding: 8px; +} +.IconizedCustomNameInline { + font-style: italic; + color: #333333; + padding: 8px; +} +/* IconizedItem:*/ +.IconizedItem { + color: #151515; + padding: 8px; +} +.IconizedItemInline { + color: #151515; + padding: 8px; +} +/* IconizedLabel:*/ +.IconizedLabel { + color: #A6A6A6; + padding: 8px; +} +.IconizedLabelInline { + color: #A6A6A6; + padding: 8px; +} +/* IconizedFrame:*/ +.IconizedFrame { + padding: 8px; +} +.IconizedFrameInline { + padding: 8px; +} +/* IconizedObjectIcon:*/ +.IconizedObjectIcon { + padding: 8px; +} +.IconizedObjectIconInline { + padding: 8px; +} +/* IconizedDefaultName:*/ +.IconizedDefaultName { + font-size: 12px; + color: #898989; + padding: 8px; +} +.IconizedDefaultNameInline { + font-size: 12px; + color: #898989; + padding: 8px; +} +/* IconizedObject:*/ +.IconizedObject { + padding: 8px; +} +.IconizedObjectInline { + padding: 8px; +} +/* Canvas:*/ +.Canvas { + padding: 8px; +} +.CanvasInline { + padding: 8px; +} +/* CanvasOpts:*/ +.CanvasOpts { + padding: 8px; +} +.CanvasOptsInline { + padding: 8px; +} +/* CanvasOverlay:*/ +.CanvasOverlay { + padding: 8px; +} +.CanvasOverlayInline { + padding: 8px; +} +/* CanvasOverlayOpts:*/ +.CanvasOverlayOpts { + padding: 8px; +} +.CanvasOverlayOptsInline { + padding: 8px; +} +/* CanvasFrame:*/ +.CanvasFrame { + padding: 8px; +} +.CanvasFrameInline { + padding: 8px; +} +/* CanvasGraphics:*/ +.CanvasGraphics { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +.CanvasGraphicsInline { + font-size: 10px; + font-family: Arial; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #000000; + text-align: left; + margin-left: 4px; + padding: 8px; +} +/* NotebookObject:*/ +.NotebookObject { + padding: 8px; +} +.NotebookObjectInline { + padding: 8px; +} +/* NotebookObjectUnsaved:*/ +.NotebookObjectUnsaved { + padding: 8px; +} +.NotebookObjectUnsavedInline { + padding: 8px; +} +/* NotebookObjectMissing:*/ +.NotebookObjectMissing { + padding: 8px; +} +.NotebookObjectMissingInline { + padding: 8px; +} +/* NotebookObjectUUID:*/ +.NotebookObjectUUID { + padding: 8px; +} +.NotebookObjectUUIDInline { + padding: 8px; +} +/* NotebookObjectUUIDUnsaved:*/ +.NotebookObjectUUIDUnsaved { + padding: 8px; +} +.NotebookObjectUUIDUnsavedInline { + padding: 8px; +} +/* NotebookObjectUUIDMissing:*/ +.NotebookObjectUUIDMissing { + padding: 8px; +} +.NotebookObjectUUIDMissingInline { + padding: 8px; +} +/* NotebookObjectUUIDs:*/ +.NotebookObjectUUIDs { + padding: 8px; +} +.NotebookObjectUUIDsInline { + padding: 8px; +} +/* NotebookObjectUUIDsUnsaved:*/ +.NotebookObjectUUIDsUnsaved { + padding: 8px; +} +.NotebookObjectUUIDsUnsavedInline { + padding: 8px; +} +/* NotebookObjectUUIDsMissing:*/ +.NotebookObjectUUIDsMissing { + padding: 8px; +} +.NotebookObjectUUIDsMissingInline { + padding: 8px; +} +/* CellObject:*/ +.CellObject { + padding: 8px; +} +.CellObjectInline { + padding: 8px; +} +/* CellObjectMissing:*/ +.CellObjectMissing { + padding: 8px; +} +.CellObjectMissingInline { + padding: 8px; +} +/* CellObjectUUIDs:*/ +.CellObjectUUIDs { + padding: 8px; +} +.CellObjectUUIDsInline { + padding: 8px; +} +/* CellObjectUUIDsMissing:*/ +.CellObjectUUIDsMissing { + padding: 8px; +} +.CellObjectUUIDsMissingInline { + padding: 8px; +} +/* BoxObject:*/ +.BoxObject { + padding: 8px; +} +.BoxObjectInline { + padding: 8px; +} +/* FileArgument:*/ +.FileArgument { + font-size: 10px; + font-family: Verdana; + font-weight: Plain; + color: #444444; + padding: 8px; +} +.FileArgumentInline { + font-size: 10px; + font-family: Verdana; + font-weight: Plain; + color: #444444; + padding: 8px; +} +/* URLArgument:*/ +.URLArgument { + font-size: 10px; + font-family: Verdana; + font-weight: Plain; + color: #444444; + padding: 8px; +} +.URLArgumentInline { + font-size: 10px; + font-family: Verdana; + font-weight: Plain; + color: #444444; + padding: 8px; +} +/* DateObject:*/ +.DateObject { + padding: 8px; +} +.DateObjectInline { + padding: 8px; +} +/* DateObjectLabel:*/ +.DateObjectLabel { + font-weight: normal; + color: #808080; + padding: 8px; +} +.DateObjectLabelInline { + font-weight: normal; + color: #808080; + padding: 8px; +} +/* DateSetter:*/ +.DateSetter { + padding: 8px; +} +.DateSetterInline { + padding: 8px; +} +/* TimeObject:*/ +.TimeObject { + padding: 8px; +} +.TimeObjectInline { + padding: 8px; +} +/* TimeObjectLabel:*/ +.TimeObjectLabel { + font-weight: normal; + color: #808080; + padding: 8px; +} +.TimeObjectLabelInline { + font-weight: normal; + color: #808080; + padding: 8px; +} +/* TimeSetter:*/ +.TimeSetter { + padding: 8px; +} +.TimeSetterInline { + padding: 8px; +} +/* DateIntervalSetter:*/ +.DateIntervalSetter { + padding: 8px; +} +.DateIntervalSetterInline { + padding: 8px; +} +/* AroundTiny:*/ +.AroundTiny { + /* font-size: 0.8 Inherited is not currently supported */ + color: #666666; + padding: 8px; +} +.AroundTinyInline { + /* font-size: 0.8 Inherited is not currently supported */ + color: #666666; + padding: 8px; +} +/* AroundSmall:*/ +.AroundSmall { + /* font-size: 0.9 Inherited is not currently supported */ + color: #666666; + padding: 8px; +} +.AroundSmallInline { + /* font-size: 0.9 Inherited is not currently supported */ + color: #666666; + padding: 8px; +} +/* Around:*/ +.Around { + padding: 8px; +} +.AroundInline { + padding: 8px; +} +/* AroundExp:*/ +.AroundExp { + padding: 8px; +} +.AroundExpInline { + padding: 8px; +} +/* AroundSeq:*/ +.AroundSeq { + padding: 8px; +} +.AroundSeqInline { + padding: 8px; +} +/* AroundSeqExp:*/ +.AroundSeqExp { + padding: 8px; +} +.AroundSeqExpInline { + padding: 8px; +} +/* AroundAsym:*/ +.AroundAsym { + padding: 8px; +} +.AroundAsymInline { + padding: 8px; +} +/* AroundAsymExp:*/ +.AroundAsymExp { + padding: 8px; +} +.AroundAsymExpInline { + padding: 8px; +} +/* AroundAsymSeq:*/ +.AroundAsymSeq { + padding: 8px; +} +.AroundAsymSeqInline { + padding: 8px; +} +/* AroundAsymSeqExp:*/ +.AroundAsymSeqExp { + padding: 8px; +} +.AroundAsymSeqExpInline { + padding: 8px; +} +/* VideoBox1:*/ +.VideoBox1 { + padding: 8px; +} +.VideoBox1Inline { + padding: 8px; +} +/* VideoBox2:*/ +.VideoBox2 { + padding: 8px; +} +.VideoBox2Inline { + padding: 8px; +} +/* TemplateBoxErrorDisplayStyle:*/ +.TemplateBoxErrorDisplayStyle { + padding: 8px; +} +.TemplateBoxErrorDisplayStyleInline { + padding: 8px; +} +/* TemplateBoxErrorDisplayArgumentStyle:*/ +.TemplateBoxErrorDisplayArgumentStyle { + padding: 8px; +} +.TemplateBoxErrorDisplayArgumentStyleInline { + padding: 8px; +} +/* DifferenceDelta2:*/ +.DifferenceDelta2 { + padding: 8px; +} +.DifferenceDelta2Inline { + padding: 8px; +} +/* DiscreteRatio2:*/ +.DiscreteRatio2 { + padding: 8px; +} +.DiscreteRatio2Inline { + padding: 8px; +} +/* DiscreteShift2:*/ +.DiscreteShift2 { + padding: 8px; +} +.DiscreteShift2Inline { + padding: 8px; +} +/* CMYKColorSwatchTemplate:*/ +.CMYKColorSwatchTemplate { + padding: 8px; +} +.CMYKColorSwatchTemplateInline { + padding: 8px; +} +/* GrayLevelColorSwatchTemplate:*/ +.GrayLevelColorSwatchTemplate { + padding: 8px; +} +.GrayLevelColorSwatchTemplateInline { + padding: 8px; +} +/* HueColorSwatchTemplate:*/ +.HueColorSwatchTemplate { + padding: 8px; +} +.HueColorSwatchTemplateInline { + padding: 8px; +} +/* LABColorSwatchTemplate:*/ +.LABColorSwatchTemplate { + padding: 8px; +} +.LABColorSwatchTemplateInline { + padding: 8px; +} +/* LCHColorSwatchTemplate:*/ +.LCHColorSwatchTemplate { + padding: 8px; +} +.LCHColorSwatchTemplateInline { + padding: 8px; +} +/* LUVColorSwatchTemplate:*/ +.LUVColorSwatchTemplate { + padding: 8px; +} +.LUVColorSwatchTemplateInline { + padding: 8px; +} +/* RGBColorSwatchTemplate:*/ +.RGBColorSwatchTemplate { + padding: 8px; +} +.RGBColorSwatchTemplateInline { + padding: 8px; +} +/* XYZColorSwatchTemplate:*/ +.XYZColorSwatchTemplate { + padding: 8px; +} +.XYZColorSwatchTemplateInline { + padding: 8px; +} +/* LinguisticAssistantTemplate:*/ +.LinguisticAssistantTemplate { + padding: 8px; +} +.LinguisticAssistantTemplateInline { + padding: 8px; +} +/* InputFormAssistantTemplate:*/ +.InputFormAssistantTemplate { + padding: 8px; +} +.InputFormAssistantTemplateInline { + padding: 8px; +} +/* TeXAssistantTemplate:*/ +.TeXAssistantTemplate { + padding: 8px; +} +.TeXAssistantTemplateInline { + padding: 8px; +} +/* TeXAssistantInput:*/ +.TeXAssistantInput { + font-style: normal; + font-weight: normal; + padding: 8px; +} +.TeXAssistantInputInline { + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* TeXAssistantBoxes:*/ +.TeXAssistantBoxes { + padding: 8px; +} +.TeXAssistantBoxesInline { + padding: 8px; +} +/* TeXAssistantBoxesActive:*/ +.TeXAssistantBoxesActive { + color: #FF8000; + padding: 8px; +} +.TeXAssistantBoxesActiveInline { + color: #FF8000; + padding: 8px; +} +/* TeXAssistantError:*/ +.TeXAssistantError { + font-style: normal; + font-weight: normal; + padding: 8px; +} +.TeXAssistantErrorInline { + font-style: normal; + font-weight: normal; + padding: 8px; +} +/* Deploy:*/ +.Deploy { + padding: 8px; +} +.DeployInline { + padding: 8px; +} +/* InsetString:*/ +.InsetString { + padding: 8px; +} +.InsetStringInline { + padding: 8px; +} +/* CellExpression:*/ +.CellExpression { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + background-color: #FFFFFF; + margin-left: 6px; + padding: 8px; +} +.CellExpressionInline { + font-size: 12px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + background-color: #FFFFFF; + margin-left: 6px; + padding: 8px; +} +/* InputForm:*/ +.InputForm { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + padding: 8px; +} +.InputFormInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + padding: 8px; +} +/* OutputForm:*/ +.OutputForm { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + text-align: left; + line-height: 0.683333; + padding: 8px; +} +.OutputFormInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + text-align: left; + line-height: 0.683333; + padding: 8px; +} +/* StandardForm:*/ +.StandardForm { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + line-height: 1.25; + padding: 8px; +} +.StandardFormInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + line-height: 1.25; + padding: 8px; +} +/* TraditionalForm:*/ +.TraditionalForm { + line-height: 1.25; + padding: 8px; +} +.TraditionalFormInline { + line-height: 1.25; + padding: 8px; +} +/* TextForm:*/ +.TextForm { + padding: 8px; +} +.TextFormInline { + padding: 8px; +} +/* CodeLikeForm:*/ +.CodeLikeForm { + padding: 8px; +} +.CodeLikeFormInline { + padding: 8px; +} +/* InlineCell:*/ +.InlineCell { + text-align: left; + padding: 8px; +} +.InlineCellInline { + text-align: left; + padding: 8px; +} +/* InlineCellEditing:*/ +.InlineCellEditing { + background-color: #FFD24D; + padding: 8px; +} +.InlineCellEditingInline { + background-color: #FFD24D; + padding: 8px; +} +/* Placeholder:*/ +.Placeholder { + font-size: 9px; + font-family: Verdana; + font-style: italic; + font-weight: normal; + color: #7E7E7E; + background-color: #FFF8CB; + padding: 8px; +} +.PlaceholderInline { + font-size: 9px; + font-family: Verdana; + font-style: italic; + font-weight: normal; + color: #7E7E7E; + background-color: #FFF8CB; + padding: 8px; +} +/* SelectionPlaceholder:*/ +.SelectionPlaceholder { + font-size: 9px; + font-family: Verdana; + font-style: italic; + font-weight: normal; + color: #3F3F3F; + background-color: #C5C09D; + padding: 8px; +} +.SelectionPlaceholderInline { + font-size: 9px; + font-family: Verdana; + font-style: italic; + font-weight: normal; + color: #3F3F3F; + background-color: #C5C09D; + padding: 8px; +} +/* PrimaryPlaceholder:*/ +.PrimaryPlaceholder { + font-style: italic; + background-color: #E9E381; + padding: 8px; +} +.PrimaryPlaceholderInline { + font-style: italic; + background-color: #E9E381; + padding: 8px; +} +/* MathCaption:*/ +.MathCaption { + color: #333333; + line-height: 1.08333; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 66px; + margin-right: 12px; + margin-top: 24px; + margin-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + padding-top: 2px; + padding-bottom: 8px; +} +.MathCaptionInline { + color: #333333; + line-height: 1.08333; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 66px; + margin-right: 12px; + margin-top: 24px; + margin-bottom: 2px; + padding-left: 8px; + padding-right: 8px; + padding-top: 2px; + padding-bottom: 8px; +} +/* ObjectName:*/ +.ObjectName { + font-size: 24px; + font-family: Verdana; + font-weight: DemiBold; + margin-left: 24px; + margin-right: 22px; + margin-top: 16px; + margin-bottom: 6px; + padding: 8px; +} +.ObjectNameInline { + font-size: 24px; + font-family: Verdana; + font-weight: DemiBold; + margin-left: 24px; + margin-right: 22px; + margin-top: 16px; + margin-bottom: 6px; + padding: 8px; +} +/* Usage:*/ +.Usage { + font-size: 11px; + font-family: Verdana; + font-weight: normal; + background-color: #FFFDE5; + text-indent: 0px; + margin-left: 24px; + margin-right: 22px; + margin-top: 6px; + margin-bottom: 12px; + padding: 8px; +} +.UsageInline { + font-size: 11px; + font-family: Verdana; + font-weight: normal; + background-color: #FFFDE5; + text-indent: 0px; + margin-left: 24px; + margin-right: 22px; + margin-top: 6px; + margin-bottom: 12px; + padding: 8px; +} +/* Notes:*/ +.Notes { + font-size: 11px; + font-family: Verdana; + font-weight: normal; + margin-left: 50px; + margin-right: 24px; + margin-top: 7px; + margin-bottom: 9px; + padding: 8px; + display: list-item; + list-style-type: square; +} +.NotesInline { + font-size: 11px; + font-family: Verdana; + font-weight: normal; + margin-left: 50px; + margin-right: 24px; + margin-top: 7px; + margin-bottom: 9px; + padding: 8px; +} +/* InlineOutput:*/ +.InlineOutput { + font-weight: DemiBold; + margin-left: 66px; + margin-right: 4px; + margin-top: 8px; + margin-bottom: 8px; + padding: 8px; +} +.InlineOutputInline { + font-weight: DemiBold; + margin-left: 66px; + margin-right: 4px; + margin-top: 8px; + margin-bottom: 8px; + padding: 8px; +} +/* FunctionTemplate:*/ +.FunctionTemplate { + padding: 8px; +} +.FunctionTemplateInline { + padding: 8px; +} +/* Picture:*/ +.Picture { + margin-left: 27px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +.PictureInline { + margin-left: 27px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* OpenCloseItemizedPicture:*/ +.OpenCloseItemizedPicture { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +.OpenCloseItemizedPictureInline { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* ItemizedPicture:*/ +.ItemizedPicture { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +.ItemizedPictureInline { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* ListGraphic:*/ +.ListGraphic { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +.ListGraphicInline { + margin-left: 88px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 4px; + padding: 8px; +} +/* PictureGroup:*/ +.PictureGroup { + margin-left: 41px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 0px; + padding: 8px; +} +.PictureGroupInline { + margin-left: 41px; + margin-right: 4px; + margin-top: 4px; + margin-bottom: 0px; + padding: 8px; +} +/* Sound:*/ +.Sound { + margin-left: 27px; + margin-top: 8px; + margin-bottom: 0px; + padding: 8px; +} +.SoundInline { + margin-left: 27px; + margin-top: 8px; + margin-bottom: 0px; + padding: 8px; +} +/* CompatibilityDocked1:*/ +.CompatibilityDocked1 { + font-size: 18px; + font-family: Helvetica; + font-weight: Plain; + color: #FFFFFF; + background-color: #3E7F32; + border: 0px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 10px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; +} +.CompatibilityDocked1Inline { + font-size: 18px; + font-family: Helvetica; + font-weight: Plain; + color: #FFFFFF; + background-color: #3E7F32; + border: 0px; + border-style: solid; + border-color: #CCCCCC; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 10px; + padding-right: 0px; + padding-top: 10px; + padding-bottom: 10px; +} +/* CompatibilityDocked2:*/ +.CompatibilityDocked2 { + font-size: 100%; + background-color: #F6F6F6; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #3E7F32; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +.CompatibilityDocked2Inline { + font-size: 100%; + background-color: #F6F6F6; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 2px; + border-style: solid; + border-color: #3E7F32; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 0px; + padding: 5px; +} +/* CompatibilityTextTop:*/ +.CompatibilityTextTop { + font-size: 10px; + font-family: Times; + color: #808080; + background-color: #EDEDED; + line-height: 1.3; + border-left: 0px; + border-right: 0px; + border-top: 2px; + border-bottom: 0px; + border-style: solid; + border-color: #3E7F32; + margin-left: 0px; + margin-right: 0px; + margin-top: 5px; + margin-bottom: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 6px; + padding-bottom: 8px; +} +.CompatibilityTextTopInline { + font-size: 10px; + font-family: Times; + color: #808080; + background-color: #EDEDED; + line-height: 1.3; + border-left: 0px; + border-right: 0px; + border-top: 2px; + border-bottom: 0px; + border-style: solid; + border-color: #3E7F32; + margin-left: 0px; + margin-right: 0px; + margin-top: 5px; + margin-bottom: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 6px; + padding-bottom: 8px; +} +/* CompatibilityText:*/ +.CompatibilityText { + font-family: Times; + background-color: #EDEDED; + line-height: 1.25; + margin: 0px; + padding: 8px; +} +.CompatibilityTextInline { + font-family: Times; + background-color: #EDEDED; + line-height: 1.25; + margin: 0px; + padding: 8px; +} +/* CompatibilityInputTop:*/ +.CompatibilityInputTop { + font-size: 10px; + font-family: Times; + color: #808080; + background-color: #F0FFCF; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #3E7F32; + margin: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 6px; + padding-bottom: 10px; +} +.CompatibilityInputTopInline { + font-size: 10px; + font-family: Times; + color: #808080; + background-color: #F0FFCF; + border-left: 0px; + border-right: 0px; + border-top: 1px; + border-bottom: 0px; + border-style: solid; + border-color: #3E7F32; + margin: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 6px; + padding-bottom: 10px; +} +/* CompatibilityInput:*/ +.CompatibilityInput { + font-weight: DemiBold; + background-color: #F0FFCF; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #3E7F32; + margin: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 0px; + padding-bottom: 10px; +} +.CompatibilityInputInline { + font-weight: DemiBold; + background-color: #F0FFCF; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #3E7F32; + margin: 0px; + padding-left: 66px; + padding-right: 1px; + padding-top: 0px; + padding-bottom: 10px; +} +/* CompatibilityControls:*/ +.CompatibilityControls { + font-size: 9px; + font-family: Segoe UI; + background-color: #EDEDED; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 5px; + padding-left: 66px; + padding-right: 1px; + padding-top: 5px; + padding-bottom: 5px; +} +.CompatibilityControlsInline { + font-size: 9px; + font-family: Segoe UI; + background-color: #EDEDED; + border-left: 0px; + border-right: 0px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #000000; + margin-left: 0px; + margin-right: 0px; + margin-top: 0px; + margin-bottom: 5px; + padding-left: 66px; + padding-right: 1px; + padding-top: 5px; + padding-bottom: 5px; +} +/* RefGuideLink:*/ +.RefGuideLink { + color: #1A1A80; + padding: 8px; +} +.RefGuideLinkInline { + color: #1A1A80; + padding: 8px; +} +/* AddOnsLink:*/ +.AddOnsLink { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +.AddOnsLinkInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +/* AddOnsLinkText:*/ +.AddOnsLinkText { + font-family: Times; + color: #454F99; + padding: 8px; +} +.AddOnsLinkTextInline { + font-family: Times; + color: #454F99; + padding: 8px; +} +/* MainBookLink:*/ +.MainBookLink { + color: #454F99; + padding: 8px; +} +.MainBookLinkInline { + color: #454F99; + padding: 8px; +} +/* MainBookLinkMR:*/ +.MainBookLinkMR { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +.MainBookLinkMRInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +/* GettingStartedLink:*/ +.GettingStartedLink { + color: #454F99; + padding: 8px; +} +.GettingStartedLinkInline { + color: #454F99; + padding: 8px; +} +/* DemosLink:*/ +.DemosLink { + color: #454F99; + padding: 8px; +} +.DemosLinkInline { + color: #454F99; + padding: 8px; +} +/* TourLink:*/ +.TourLink { + color: #454F99; + padding: 8px; +} +.TourLinkInline { + color: #454F99; + padding: 8px; +} +/* OtherInformationLink:*/ +.OtherInformationLink { + color: #454F99; + padding: 8px; +} +.OtherInformationLinkInline { + color: #454F99; + padding: 8px; +} +/* OtherInformationLinkMR:*/ +.OtherInformationLinkMR { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +.OtherInformationLinkMRInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +/* MasterIndexLink:*/ +.MasterIndexLink { + color: #454F99; + padding: 8px; +} +.MasterIndexLinkInline { + color: #454F99; + padding: 8px; +} +/* NotebookLink:*/ +.NotebookLink { + font-family: Times; + color: #454F99; + padding: 8px; +} +.NotebookLinkInline { + font-family: Times; + color: #454F99; + padding: 8px; +} +/* NotebookLinkMR:*/ +.NotebookLinkMR { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +.NotebookLinkMRInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + color: #454F99; + padding: 8px; +} +/* PageLink:*/ +.PageLink { + color: #454F99; + padding: 8px; +} +.PageLinkInline { + color: #454F99; + padding: 8px; +} +/* NotebookTemplateSlot:*/ +.NotebookTemplateSlot { + color: #167E9C; + padding: 8px; +} +.NotebookTemplateSlotInline { + color: #167E9C; + padding: 8px; +} +/* NotebookTemplateExpression:*/ +.NotebookTemplateExpression { + color: #000000; + padding: 8px; +} +.NotebookTemplateExpressionInline { + color: #000000; + padding: 8px; +} +/* NotebookTemplateSlotUI:*/ +.NotebookTemplateSlotUI { + padding: 8px; +} +.NotebookTemplateSlotUIInline { + padding: 8px; +} +/* NotebookTemplateExpressionUI:*/ +.NotebookTemplateExpressionUI { + padding: 8px; +} +.NotebookTemplateExpressionUIInline { + padding: 8px; +} +/* NotebookTemplateBlock:*/ +.NotebookTemplateBlock { + padding: 8px; +} +.NotebookTemplateBlockInline { + padding: 8px; +} +/* NotebookRepeatingBlock:*/ +.NotebookRepeatingBlock { + padding: 8px; +} +.NotebookRepeatingBlockInline { + padding: 8px; +} +/* NotebookConditionalBlock:*/ +.NotebookConditionalBlock { + padding: 8px; +} +.NotebookConditionalBlockInline { + padding: 8px; +} +/* NotebookTemplateCellBehavior:*/ +.NotebookTemplateCellBehavior { + padding: 8px; +} +.NotebookTemplateCellBehaviorInline { + padding: 8px; +} +/* NotebookTemplateDockedCell:*/ +.NotebookTemplateDockedCell { + font-size: 12px; + font-family: Roboto; + font-weight: normal; + color: #757575; + border-left: 0px; + border-right: 1px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 0px; + margin-right: -1px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: -2px; +} +.NotebookTemplateDockedCellInline { + font-size: 12px; + font-family: Roboto; + font-weight: normal; + color: #757575; + border-left: 0px; + border-right: 1px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 0px; + margin-right: -1px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: -2px; +} +/* TemplateVariable:*/ +.TemplateVariable { + color: #FFFFFF; + padding: 8px; +} +.TemplateVariableInline { + color: #FFFFFF; + padding: 8px; +} +/* EvaluationMarker:*/ +.EvaluationMarker { + color: #46839C; + background-color: #EFFAFF; + padding: 8px; +} +.EvaluationMarkerInline { + color: #46839C; + background-color: #EFFAFF; + padding: 8px; +} +/* TemplateDockedCell:*/ +.TemplateDockedCell { + font-size: 11px; + font-family: Sans Serif; + color: #6B6B6B; + border-left: 0px; + border-right: 1px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 0px; + margin-right: -1px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: -2px; +} +.TemplateDockedCellInline { + font-size: 11px; + font-family: Sans Serif; + color: #6B6B6B; + border-left: 0px; + border-right: 1px; + border-top: 0px; + border-bottom: 1px; + border-style: solid; + border-color: #B3B3B3; + margin-left: 0px; + margin-right: -1px; + margin-top: 0px; + margin-bottom: 0px; + padding-left: 0px; + padding-right: 0px; + padding-top: 0px; + padding-bottom: -2px; +} +/* EmbeddedHTML:*/ +.EmbeddedHTML { + padding: 8px; +} +.EmbeddedHTMLInline { + padding: 8px; +} +/* EmbeddedHTMLLink:*/ +.EmbeddedHTMLLink { + padding: 8px; +} +.EmbeddedHTMLLinkInline { + padding: 8px; +} +/* TextElementLabel:*/ +.TextElementLabel { + /* font-size: Small is not currently supported */ + font-family: Verdana; + font-weight: normal; + color: #8C8C8C; + padding: 8px; +} +.TextElementLabelInline { + /* font-size: Small is not currently supported */ + font-family: Verdana; + font-weight: normal; + color: #8C8C8C; + padding: 8px; +} +/* TextElementGrid:*/ +.TextElementGrid { + padding: 8px; +} +.TextElementGridInline { + padding: 8px; +} +/* Citation:*/ +.Citation { + text-indent: 0px; + padding: 8px; +} +.CitationInline { + text-indent: 0px; + padding: 8px; +} +/* CodeAssistCompletion:*/ +.CodeAssistCompletion { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistCompletionInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistTemplate:*/ +.CodeAssistTemplate { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #000000; + background-color: #FFFFFF; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 15px; + padding-right: 15px; + padding-top: 10px; + padding-bottom: 9px; +} +.CodeAssistTemplateInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #000000; + background-color: #FFFFFF; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 15px; + padding-right: 15px; + padding-top: 10px; + padding-bottom: 9px; +} +/* CodeAssistSpecialCharacter:*/ +.CodeAssistSpecialCharacter { + font-size: System`Convert`CSSDump`ToPoint[6 + Floor[Inherited]]; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistSpecialCharacterInline { + font-size: System`Convert`CSSDump`ToPoint[6 + Floor[Inherited]]; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistCompletionHighlight:*/ +.CodeAssistCompletionHighlight { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + text-decoration: underline; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistCompletionHighlightInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + text-decoration: underline; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistVariableCompletion:*/ +.CodeAssistVariableCompletion { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #000066; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistVariableCompletionInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #000066; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistVariableCompletionHighlight:*/ +.CodeAssistVariableCompletionHighlight { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + text-decoration: underline; + color: #000066; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistVariableCompletionHighlightInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + text-decoration: underline; + color: #000066; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 17px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistSeparator:*/ +.CodeAssistSeparator { + font-size: 8px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #668094; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +.CodeAssistSeparatorInline { + font-size: 8px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #668094; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +/* CodeAssistSeparatorHighlight:*/ +.CodeAssistSeparatorHighlight { + font-size: 8px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #668094; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +.CodeAssistSeparatorHighlightInline { + font-size: 8px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #668094; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +/* CodeAssistUsage:*/ +.CodeAssistUsage { + font-size: 8px; + font-family: Helvetica; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +.CodeAssistUsageInline { + font-size: 8px; + font-family: Helvetica; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +/* FunctionTemplateTooltip:*/ +.FunctionTemplateTooltip { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #333333; + background-color: #FEFDD4; + text-align: left; + border: 1px; + border-style: solid; + border-color: #000000; + padding-left: 5px; + padding-right: 5px; + padding-top: 5px; + padding-bottom: 5px; +} +.FunctionTemplateTooltipInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + text-decoration: none; + color: #333333; + background-color: #FEFDD4; + text-align: left; + border: 1px; + border-style: solid; + border-color: #000000; + padding-left: 5px; + padding-right: 5px; + padding-top: 5px; + padding-bottom: 5px; +} +/* FunctionTemplateArgument:*/ +.FunctionTemplateArgument { + font-size: 9px; + font-family: Times; + font-style: italic; + font-weight: normal; + padding: 8px; +} +.FunctionTemplateArgumentInline { + font-size: 9px; + font-family: Times; + font-style: italic; + font-weight: normal; + padding: 8px; +} +/* FunctionTemplateHighlight:*/ +.FunctionTemplateHighlight { + font-size: 9px; + font-family: Segoe UI; + font-weight: bold; + padding: 8px; +} +.FunctionTemplateHighlightInline { + font-size: 9px; + font-family: Segoe UI; + font-weight: bold; + padding: 8px; +} +/* CodeAssistString:*/ +.CodeAssistString { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #666666; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 9px; + padding-right: 9px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistStringInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #666666; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 9px; + padding-right: 9px; + padding-top: 7px; + padding-bottom: 7px; +} +/* CodeAssistCharCompletion:*/ +.CodeAssistCharCompletion { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 11px; + padding-top: 7px; + padding-bottom: 7px; +} +.CodeAssistCharCompletionInline { + font-size: 9px; + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: normal; + font-weight: DemiBold; + color: #1A1A1A; + background-color: #F0F0F0; + text-align: left; + border: 1px; + border-style: solid; + border-color: #F5F5F5; + padding-left: 18px; + padding-right: 11px; + padding-top: 7px; + padding-bottom: 7px; +} +/* MisspelledWord:*/ +.MisspelledWord { + text-decoration: none; + padding: 8px; +} +.MisspelledWordInline { + text-decoration: none; + padding: 8px; +} +/* CodeAssistInlineFormula:*/ +.CodeAssistInlineFormula { + padding: 8px; +} +.CodeAssistInlineFormulaInline { + padding: 8px; +} +/* Translation:*/ +.Translation { + font-size: System`Convert`CSSDump`ToPoint[Floor[(-2 + Inherited) Dynamic[AbsoluteCurrentValue[EvaluationNotebook[], Magnification]]]]; + font-family: Helvetica; + font-weight: normal; + color: #8CADBF; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.TranslationInline { + font-size: System`Convert`CSSDump`ToPoint[Floor[(-2 + Inherited) Dynamic[AbsoluteCurrentValue[EvaluationNotebook[], Magnification]]]]; + font-family: Helvetica; + font-weight: normal; + color: #8CADBF; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* SelectedTranslation:*/ +.SelectedTranslation { + font-size: System`Convert`CSSDump`ToPoint[Floor[(-2 + Inherited) Dynamic[AbsoluteCurrentValue[EvaluationNotebook[], Magnification]]]]; + font-family: Helvetica; + font-weight: bold; + color: #8CADBF; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +.SelectedTranslationInline { + font-size: System`Convert`CSSDump`ToPoint[Floor[(-2 + Inherited) Dynamic[AbsoluteCurrentValue[EvaluationNotebook[], Magnification]]]]; + font-family: Helvetica; + font-weight: bold; + color: #8CADBF; + margin-left: 66px; + margin-right: 10px; + margin-top: 10px; + margin-bottom: 5px; + padding: 8px; +} +/* CodeAssistReference:*/ +.CodeAssistReference { + font-size: 9px; + font-family: Source Sans Pro; + font-style: normal; + font-weight: normal; + color: #333333; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +.CodeAssistReferenceInline { + font-size: 9px; + font-family: Source Sans Pro; + font-style: normal; + font-weight: normal; + color: #333333; + background-color: #FFFFFF; + text-align: left; + padding: 8px; +} +/* SuggestionsBar:*/ +.SuggestionsBar { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +.SuggestionsBarInline { + font-size: 100%; + background-color: #FFFFFF; + padding: 8px; +} +/* SuggestionsBarText:*/ +.SuggestionsBarText { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #474747; + padding: 8px; +} +.SuggestionsBarTextInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #474747; + padding: 8px; +} +/* SuggestionsBarControl:*/ +.SuggestionsBarControl { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #476686; + padding: 8px; +} +.SuggestionsBarControlInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #476686; + padding: 8px; +} +/* SuggestionsBarControlActive:*/ +.SuggestionsBarControlActive { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #E55F11; + padding: 8px; +} +.SuggestionsBarControlActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #E55F11; + padding: 8px; +} +/* SuggestionsBarMore:*/ +.SuggestionsBarMore { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #476686; + padding: 8px; +} +.SuggestionsBarMoreInline { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #476686; + padding: 8px; +} +/* SuggestionsBarMoreActive:*/ +.SuggestionsBarMoreActive { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +.SuggestionsBarMoreActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +/* SuggestionsBarSemanticControl:*/ +.SuggestionsBarSemanticControl { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #454C99; + padding: 8px; +} +.SuggestionsBarSemanticControlInline { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #454C99; + padding: 8px; +} +/* SuggestionsBarSemanticControlActive:*/ +.SuggestionsBarSemanticControlActive { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +.SuggestionsBarSemanticControlActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: italic; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +/* SuggestionsBarCategory:*/ +.SuggestionsBarCategory { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #808080; + padding: 8px; +} +.SuggestionsBarCategoryInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #808080; + padding: 8px; +} +/* SuggestionsBarMenuControl:*/ +.SuggestionsBarMenuControl { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #476686; + padding: 8px; +} +.SuggestionsBarMenuControlInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #476686; + padding: 8px; +} +/* SuggestionsBarHiddenFunctionLabel:*/ +.SuggestionsBarHiddenFunctionLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #808080; + padding: 8px; +} +.SuggestionsBarHiddenFunctionLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #808080; + padding: 8px; +} +/* SuggestionsBarButtonFrame:*/ +.SuggestionsBarButtonFrame { + padding: 8px; +} +.SuggestionsBarButtonFrameInline { + padding: 8px; +} +/* SuggestionsBarButtonLabel:*/ +.SuggestionsBarButtonLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #476686; + padding: 8px; +} +.SuggestionsBarButtonLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #476686; + padding: 8px; +} +/* SuggestionsBarButtonLabelActive:*/ +.SuggestionsBarButtonLabelActive { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +.SuggestionsBarButtonLabelActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #E55F11; + padding: 8px; +} +/* OutputSizeLimit:*/ +.OutputSizeLimit { + background-color: #F6F9FA; + padding: 8px; +} +.OutputSizeLimitInline { + background-color: #F6F9FA; + padding: 8px; +} +/* OutputSizeLimit`Skeleton:*/ +.OutputSizeLimit`Skeleton { + padding: 8px; +} +.OutputSizeLimit`SkeletonInline { + padding: 8px; +} +/* OutputSizeLimitTemplate:*/ +.OutputSizeLimitTemplate { + padding: 8px; +} +.OutputSizeLimitTemplateInline { + padding: 8px; +} +/* OSLText:*/ +.OSLText { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #808080; + padding: 8px; +} +.OSLTextInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #808080; + padding: 8px; +} +/* OSLControl:*/ +.OSLControl { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #476686; + padding: 8px; +} +.OSLControlInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #476686; + padding: 8px; +} +/* OSLControlActive:*/ +.OSLControlActive { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #E55F11; + padding: 8px; +} +.OSLControlActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #E55F11; + padding: 8px; +} +/* RibbonText:*/ +.RibbonText { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + padding: 8px; +} +.RibbonTextInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + padding: 8px; +} +/* RibbonBold:*/ +.RibbonBold { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #4C4C4C; + padding: 8px; +} +.RibbonBoldInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #4C4C4C; + padding: 8px; +} +/* RibbonWhite:*/ +.RibbonWhite { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #FFFFFF; + padding: 8px; +} +.RibbonWhiteInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #FFFFFF; + padding: 8px; +} +/* RibbonTitle:*/ +.RibbonTitle { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #F45F11; + padding: 8px; +} +.RibbonTitleInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #F45F11; + padding: 8px; +} +/* RibbonTitleActive:*/ +.RibbonTitleActive { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #FF0000; + padding: 8px; +} +.RibbonTitleActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #FF0000; + padding: 8px; +} +/* RibbonCaption:*/ +.RibbonCaption { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + padding: 8px; +} +.RibbonCaptionInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #4C4C4C; + padding: 8px; +} +/* RibbonTabLabel:*/ +.RibbonTabLabel { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #4C4C4C; + padding: 8px; +} +.RibbonTabLabelInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #4C4C4C; + padding: 8px; +} +/* RibbonTabLabelActive:*/ +.RibbonTabLabelActive { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #F45F11; + padding: 8px; +} +.RibbonTabLabelActiveInline { + font-size: 9px; + font-family: Segoe UI; + font-style: normal; + font-weight: bold; + color: #F45F11; + padding: 8px; +} +/* SummaryHead:*/ +.SummaryHead { + padding: 8px; +} +.SummaryHeadInline { + padding: 8px; +} +/* SummaryItem:*/ +.SummaryItem { + padding: 8px; +} +.SummaryItemInline { + padding: 8px; +} +/* SummaryItemAnnotation:*/ +.SummaryItemAnnotation { + color: #808080; + padding: 8px; +} +.SummaryItemAnnotationInline { + color: #808080; + padding: 8px; +} +/* NonInterpretableSummary:*/ +.NonInterpretableSummary { + color: #6C6C6C; + padding: 8px; +} +.NonInterpretableSummaryInline { + color: #6C6C6C; + padding: 8px; +} +/* SummaryPanel:*/ +.SummaryPanel { + /* font-size: 0.8 Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +.SummaryPanelInline { + /* font-size: 0.8 Inherited is not currently supported */ + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +/* SummaryEmbed:*/ +.SummaryEmbed { + color: #344B66; + padding: 8px; +} +.SummaryEmbedInline { + color: #344B66; + padding: 8px; +} +/* SummaryEmbedHover:*/ +.SummaryEmbedHover { + color: #E55F11; + padding: 8px; +} +.SummaryEmbedHoverInline { + color: #E55F11; + padding: 8px; +} +/* SummaryEmbedFailed:*/ +.SummaryEmbedFailed { + color: #DD1100; + padding: 8px; +} +.SummaryEmbedFailedInline { + color: #DD1100; + padding: 8px; +} +/* SummaryEmbedMenu:*/ +.SummaryEmbedMenu { + color: ; + padding: 8px; +} +.SummaryEmbedMenuInline { + color: ; + padding: 8px; +} +/* SummaryEmbedMenuHover:*/ +.SummaryEmbedMenuHover { + color: ; + padding: 8px; +} +.SummaryEmbedMenuHoverInline { + color: ; + padding: 8px; +} +/* SummaryEmbedMenuAnnotation:*/ +.SummaryEmbedMenuAnnotation { + color: #646464; + padding: 8px; +} +.SummaryEmbedMenuAnnotationInline { + color: #646464; + padding: 8px; +} +/* SummaryEmbedGrid:*/ +.SummaryEmbedGrid { + padding: 8px; +} +.SummaryEmbedGridInline { + padding: 8px; +} +/* SummaryEmbedButton:*/ +.SummaryEmbedButton { + padding: 8px; +} +.SummaryEmbedButtonInline { + padding: 8px; +} +/* NumericalApproximationElider:*/ +.NumericalApproximationElider { + color: #666666; + padding: 8px; +} +.NumericalApproximationEliderInline { + color: #666666; + padding: 8px; +} +/* EchoLabel:*/ +.EchoLabel { + font-family: Roboto; + color: #FF8000; + padding: 8px; +} +.EchoLabelInline { + font-family: Roboto; + color: #FF8000; + padding: 8px; +} +/* EchoBeforeLabel:*/ +.EchoBeforeLabel { + font-family: Roboto; + color: #7BA0BC; + padding: 8px; +} +.EchoBeforeLabelInline { + font-family: Roboto; + color: #7BA0BC; + padding: 8px; +} +/* EchoAfterLabel:*/ +.EchoAfterLabel { + font-family: Roboto; + color: #34688E; + padding: 8px; +} +.EchoAfterLabelInline { + font-family: Roboto; + color: #34688E; + padding: 8px; +} +/* EchoDingbat:*/ +.EchoDingbat { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #FF8000; + padding: 8px; +} +.EchoDingbatInline { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #FF8000; + padding: 8px; +} +/* EchoBeforeDingbat:*/ +.EchoBeforeDingbat { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #7BA0BC; + padding: 8px; +} +.EchoBeforeDingbatInline { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #7BA0BC; + padding: 8px; +} +/* EchoAfterDingbat:*/ +.EchoAfterDingbat { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #34688E; + padding: 8px; +} +.EchoAfterDingbatInline { + /* font-size: 4 + Inherited is not currently supported */ + font-family: Roboto; + color: #34688E; + padding: 8px; +} +/* EchoNumberDingbat:*/ +.EchoNumberDingbat { + /* font-size: -6 + Inherited is not currently supported */ + padding: 8px; +} +.EchoNumberDingbatInline { + /* font-size: -6 + Inherited is not currently supported */ + padding: 8px; +} +/* FormPanel:*/ +.FormPanel { + padding: 8px; +} +.FormPanelInline { + padding: 8px; +} +/* FormTitle:*/ +.FormTitle { + font-size: 20px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +.FormTitleInline { + font-size: 20px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +/* FormDescription:*/ +.FormDescription { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +.FormDescriptionInline { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +/* FormLabel:*/ +.FormLabel { + font-size: 13px; + font-family: Source Sans Pro; + font-weight: SemiBold; + color: #646464; + padding: 8px; +} +.FormLabelInline { + font-size: 13px; + font-family: Source Sans Pro; + font-weight: SemiBold; + color: #646464; + padding: 8px; +} +/* FormSublabel:*/ +.FormSublabel { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +.FormSublabelInline { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +/* FormField:*/ +.FormField { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +.FormFieldInline { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #333333; + padding: 8px; +} +/* FormFieldHint:*/ +.FormFieldHint { + font-size: 14px; + font-family: Source Sans Pro; + font-style: italic; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +.FormFieldHintInline { + font-size: 14px; + font-family: Source Sans Pro; + font-style: italic; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +/* FormFailure:*/ +.FormFailure { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #DD1100; + padding: 8px; +} +.FormFailureInline { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #DD1100; + padding: 8px; +} +/* FormHelp:*/ +.FormHelp { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +.FormHelpInline { + font-size: 12px; + font-family: Source Sans Pro; + font-weight: normal; + color: #A6A6A6; + padding: 8px; +} +/* FormDefaultButton:*/ +.FormDefaultButton { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #FFFFFF; + padding: 8px; +} +.FormDefaultButtonInline { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #FFFFFF; + padding: 8px; +} +/* FormCancelButton:*/ +.FormCancelButton { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +.FormCancelButtonInline { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +/* FormUtilityButton:*/ +.FormUtilityButton { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +.FormUtilityButtonInline { + font-size: 14px; + font-family: Source Sans Pro; + font-weight: normal; + color: #646464; + padding: 8px; +} +/* NLI:*/ +.NLI { + padding: 8px; +} +.NLIInline { + padding: 8px; +} +/* NaturalLanguageInputField:*/ +.NaturalLanguageInputField { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + padding: 8px; +} +.NaturalLanguageInputFieldInline { + font-size: 14px; + font-family: Helvetica; + font-weight: normal; + padding: 8px; +} +/* NaturalLanguageControlBar:*/ +.NaturalLanguageControlBar { + font-size: 11px; + padding: 8px; +} +.NaturalLanguageControlBarInline { + font-size: 11px; + padding: 8px; +} +/* NaturalLanguageControlBarButton:*/ +.NaturalLanguageControlBarButton { + font-size: 11px; + color: #476686; + padding: 8px; +} +.NaturalLanguageControlBarButtonInline { + font-size: 11px; + color: #476686; + padding: 8px; +} +/* NaturalLanguageControlBarButtonActive:*/ +.NaturalLanguageControlBarButtonActive { + font-size: 11px; + color: #E55F11; + padding: 8px; +} +.NaturalLanguageControlBarButtonActiveInline { + font-size: 11px; + color: #E55F11; + padding: 8px; +} +/* NaturalLanguageControlBarButtonSelected:*/ +.NaturalLanguageControlBarButtonSelected { + font-size: 11px; + color: #FFFFFF; + padding: 8px; +} +.NaturalLanguageControlBarButtonSelectedInline { + font-size: 11px; + color: #FFFFFF; + padding: 8px; +} +/* NaturalLanguageAssumptions:*/ +.NaturalLanguageAssumptions { + font-size: 11px; + font-family: Roboto; + color: #767777; + line-height: 1; + padding: 8px; +} +.NaturalLanguageAssumptionsInline { + font-size: 11px; + font-family: Roboto; + color: #767777; + line-height: 1; + padding: 8px; +} +/* NaturalLanguageAssumptionLink:*/ +.NaturalLanguageAssumptionLink { + color: #476686; + padding: 8px; +} +.NaturalLanguageAssumptionLinkInline { + color: #476686; + padding: 8px; +} +/* NaturalLanguageAssumptionLinkActive:*/ +.NaturalLanguageAssumptionLinkActive { + color: #E55F11; + padding: 8px; +} +.NaturalLanguageAssumptionLinkActiveInline { + color: #E55F11; + padding: 8px; +} +/* NaturalLanguageFailure:*/ +.NaturalLanguageFailure { + font-size: 12px; + font-family: Roboto; + font-weight: normal; + color: #333333; + line-height: 1; + padding: 8px; +} +.NaturalLanguageFailureInline { + font-size: 12px; + font-family: Roboto; + font-weight: normal; + color: #333333; + line-height: 1; + padding: 8px; +} +/* QueryPasteButton:*/ +.QueryPasteButton { + font-size: 13px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +.QueryPasteButtonInline { + font-size: 13px; + font-family: Segoe UI; + font-style: normal; + text-decoration: none; + color: ; + text-align: left; + padding: 8px; +} +/* QueryEvaluatableFrame:*/ +.QueryEvaluatableFrame { + padding: 8px; +} +.QueryEvaluatableFrameInline { + padding: 8px; +} +/* QueryError:*/ +.QueryError { + padding: 8px; +} +.QueryErrorInline { + padding: 8px; +} +/* QueryDivide:*/ +.QueryDivide { + padding: 8px; +} +.QueryDivideInline { + padding: 8px; +} +/* QuerySquare:*/ +.QuerySquare { + padding: 8px; +} +.QuerySquareInline { + padding: 8px; +} +/* QueryPower:*/ +.QueryPower { + padding: 8px; +} +.QueryPowerInline { + padding: 8px; +} +/* QuerySqrt:*/ +.QuerySqrt { + padding: 8px; +} +.QuerySqrtInline { + padding: 8px; +} +/* QueryCubeRoot:*/ +.QueryCubeRoot { + padding: 8px; +} +.QueryCubeRootInline { + padding: 8px; +} +/* QuerySurd:*/ +.QuerySurd { + padding: 8px; +} +.QuerySurdInline { + padding: 8px; +} +/* QueryInfinity:*/ +.QueryInfinity { + padding: 8px; +} +.QueryInfinityInline { + padding: 8px; +} +/* Query-Infinity:*/ +.Query-Infinity { + padding: 8px; +} +.Query-InfinityInline { + padding: 8px; +} +/* QueryPi:*/ +.QueryPi { + padding: 8px; +} +.QueryPiInline { + padding: 8px; +} +/* QueryE:*/ +.QueryE { + padding: 8px; +} +.QueryEInline { + padding: 8px; +} +/* QueryExp:*/ +.QueryExp { + padding: 8px; +} +.QueryExpInline { + padding: 8px; +} +/* QueryLog:*/ +.QueryLog { + padding: 8px; +} +.QueryLogInline { + padding: 8px; +} +/* QueryLogBase:*/ +.QueryLogBase { + padding: 8px; +} +.QueryLogBaseInline { + padding: 8px; +} +/* QueryLog10:*/ +.QueryLog10 { + padding: 8px; +} +.QueryLog10Inline { + padding: 8px; +} +/* QueryAbs:*/ +.QueryAbs { + padding: 8px; +} +.QueryAbsInline { + padding: 8px; +} +/* QueryLessEqual:*/ +.QueryLessEqual { + padding: 8px; +} +.QueryLessEqualInline { + padding: 8px; +} +/* QueryGreaterEqual:*/ +.QueryGreaterEqual { + padding: 8px; +} +.QueryGreaterEqualInline { + padding: 8px; +} +/* QueryUnequal:*/ +.QueryUnequal { + padding: 8px; +} +.QueryUnequalInline { + padding: 8px; +} +/* QueryVector2:*/ +.QueryVector2 { + padding: 8px; +} +.QueryVector2Inline { + padding: 8px; +} +/* QueryVector3:*/ +.QueryVector3 { + padding: 8px; +} +.QueryVector3Inline { + padding: 8px; +} +/* QueryVector4:*/ +.QueryVector4 { + padding: 8px; +} +.QueryVector4Inline { + padding: 8px; +} +/* QueryMatrix2x2:*/ +.QueryMatrix2x2 { + padding: 8px; +} +.QueryMatrix2x2Inline { + padding: 8px; +} +/* QueryMatrix2x3:*/ +.QueryMatrix2x3 { + padding: 8px; +} +.QueryMatrix2x3Inline { + padding: 8px; +} +/* QueryMatrix3x2:*/ +.QueryMatrix3x2 { + padding: 8px; +} +.QueryMatrix3x2Inline { + padding: 8px; +} +/* QueryMatrix3x3:*/ +.QueryMatrix3x3 { + padding: 8px; +} +.QueryMatrix3x3Inline { + padding: 8px; +} +/* QueryMatrix4x4:*/ +.QueryMatrix4x4 { + padding: 8px; +} +.QueryMatrix4x4Inline { + padding: 8px; +} +/* QueryMatrix5x5:*/ +.QueryMatrix5x5 { + padding: 8px; +} +.QueryMatrix5x5Inline { + padding: 8px; +} +/* QueryDegree:*/ +.QueryDegree { + padding: 8px; +} +.QueryDegreeInline { + padding: 8px; +} +/* QueryTheta:*/ +.QueryTheta { + padding: 8px; +} +.QueryThetaInline { + padding: 8px; +} +/* QueryRadians:*/ +.QueryRadians { + padding: 8px; +} +.QueryRadiansInline { + padding: 8px; +} +/* QuerySin:*/ +.QuerySin { + padding: 8px; +} +.QuerySinInline { + padding: 8px; +} +/* QueryCos:*/ +.QueryCos { + padding: 8px; +} +.QueryCosInline { + padding: 8px; +} +/* QueryTan:*/ +.QueryTan { + padding: 8px; +} +.QueryTanInline { + padding: 8px; +} +/* QuerySec:*/ +.QuerySec { + padding: 8px; +} +.QuerySecInline { + padding: 8px; +} +/* QueryCsc:*/ +.QueryCsc { + padding: 8px; +} +.QueryCscInline { + padding: 8px; +} +/* QueryCot:*/ +.QueryCot { + padding: 8px; +} +.QueryCotInline { + padding: 8px; +} +/* QueryArcSin:*/ +.QueryArcSin { + padding: 8px; +} +.QueryArcSinInline { + padding: 8px; +} +/* QueryArcCos:*/ +.QueryArcCos { + padding: 8px; +} +.QueryArcCosInline { + padding: 8px; +} +/* QueryArcTan:*/ +.QueryArcTan { + padding: 8px; +} +.QueryArcTanInline { + padding: 8px; +} +/* QueryArcSec:*/ +.QueryArcSec { + padding: 8px; +} +.QueryArcSecInline { + padding: 8px; +} +/* QueryArcCsc:*/ +.QueryArcCsc { + padding: 8px; +} +.QueryArcCscInline { + padding: 8px; +} +/* QueryArcCot:*/ +.QueryArcCot { + padding: 8px; +} +.QueryArcCotInline { + padding: 8px; +} +/* QuerySinh:*/ +.QuerySinh { + padding: 8px; +} +.QuerySinhInline { + padding: 8px; +} +/* QueryCosh:*/ +.QueryCosh { + padding: 8px; +} +.QueryCoshInline { + padding: 8px; +} +/* QueryTanh:*/ +.QueryTanh { + padding: 8px; +} +.QueryTanhInline { + padding: 8px; +} +/* QuerySech:*/ +.QuerySech { + padding: 8px; +} +.QuerySechInline { + padding: 8px; +} +/* QueryCsch:*/ +.QueryCsch { + padding: 8px; +} +.QueryCschInline { + padding: 8px; +} +/* QueryCoth:*/ +.QueryCoth { + padding: 8px; +} +.QueryCothInline { + padding: 8px; +} +/* QueryArcSinh:*/ +.QueryArcSinh { + padding: 8px; +} +.QueryArcSinhInline { + padding: 8px; +} +/* QueryArcCosh:*/ +.QueryArcCosh { + padding: 8px; +} +.QueryArcCoshInline { + padding: 8px; +} +/* QueryArcTanh:*/ +.QueryArcTanh { + padding: 8px; +} +.QueryArcTanhInline { + padding: 8px; +} +/* QueryArcSech:*/ +.QueryArcSech { + padding: 8px; +} +.QueryArcSechInline { + padding: 8px; +} +/* QueryArcCsch:*/ +.QueryArcCsch { + padding: 8px; +} +.QueryArcCschInline { + padding: 8px; +} +/* QueryArcCoth:*/ +.QueryArcCoth { + padding: 8px; +} +.QueryArcCothInline { + padding: 8px; +} +/* QueryD:*/ +.QueryD { + padding: 8px; +} +.QueryDInline { + padding: 8px; +} +/* QueryD2:*/ +.QueryD2 { + padding: 8px; +} +.QueryD2Inline { + padding: 8px; +} +/* QueryPartialD:*/ +.QueryPartialD { + padding: 8px; +} +.QueryPartialDInline { + padding: 8px; +} +/* QueryPartialDMixed:*/ +.QueryPartialDMixed { + padding: 8px; +} +.QueryPartialDMixedInline { + padding: 8px; +} +/* QueryPartialD2:*/ +.QueryPartialD2 { + padding: 8px; +} +.QueryPartialD2Inline { + padding: 8px; +} +/* QueryIntegrate:*/ +.QueryIntegrate { + padding: 8px; +} +.QueryIntegrateInline { + padding: 8px; +} +/* QueryIntegrate2:*/ +.QueryIntegrate2 { + padding: 8px; +} +.QueryIntegrate2Inline { + padding: 8px; +} +/* QueryIntegrate3:*/ +.QueryIntegrate3 { + padding: 8px; +} +.QueryIntegrate3Inline { + padding: 8px; +} +/* QueryIntegrateOver:*/ +.QueryIntegrateOver { + padding: 8px; +} +.QueryIntegrateOverInline { + padding: 8px; +} +/* QueryIntegrateOver2:*/ +.QueryIntegrateOver2 { + padding: 8px; +} +.QueryIntegrateOver2Inline { + padding: 8px; +} +/* QueryIntegrateOver3:*/ +.QueryIntegrateOver3 { + padding: 8px; +} +.QueryIntegrateOver3Inline { + padding: 8px; +} +/* QueryProduct:*/ +.QueryProduct { + padding: 8px; +} +.QueryProductInline { + padding: 8px; +} +/* QueryLimit:*/ +.QueryLimit { + padding: 8px; +} +.QueryLimitInline { + padding: 8px; +} +/* QueryLeftLimit:*/ +.QueryLeftLimit { + padding: 8px; +} +.QueryLeftLimitInline { + padding: 8px; +} +/* QueryRightLimit:*/ +.QueryRightLimit { + padding: 8px; +} +.QueryRightLimitInline { + padding: 8px; +} +/* QueryUnitStep:*/ +.QueryUnitStep { + padding: 8px; +} +.QueryUnitStepInline { + padding: 8px; +} +/* QueryDiracDelta:*/ +.QueryDiracDelta { + padding: 8px; +} +.QueryDiracDeltaInline { + padding: 8px; +} +/* QueryPiecewise2:*/ +.QueryPiecewise2 { + padding: 8px; +} +.QueryPiecewise2Inline { + padding: 8px; +} +/* QueryPiecewise3:*/ +.QueryPiecewise3 { + padding: 8px; +} +.QueryPiecewise3Inline { + padding: 8px; +} +/* QueryLaplaceTransform:*/ +.QueryLaplaceTransform { + padding: 8px; +} +.QueryLaplaceTransformInline { + padding: 8px; +} +/* QueryInverseLaplaceTransform:*/ +.QueryInverseLaplaceTransform { + padding: 8px; +} +.QueryInverseLaplaceTransformInline { + padding: 8px; +} +/* QueryFourierTransform:*/ +.QueryFourierTransform { + padding: 8px; +} +.QueryFourierTransformInline { + padding: 8px; +} +/* QueryInverseFourierTransform:*/ +.QueryInverseFourierTransform { + padding: 8px; +} +.QueryInverseFourierTransformInline { + padding: 8px; +} +/* QuerySum:*/ +.QuerySum { + padding: 8px; +} +.QuerySumInline { + padding: 8px; +} +/* InformationTitleText:*/ +.InformationTitleText { + font-size: 9px; + font-family: Segoe UI; + color: #777777; + padding: 8px; +} +.InformationTitleTextInline { + font-size: 9px; + font-family: Segoe UI; + color: #777777; + padding: 8px; +} +/* InformationTitleBackground:*/ +.InformationTitleBackground { + padding: 8px; +} +.InformationTitleBackgroundInline { + padding: 8px; +} +/* InformationGenericSubtitleBackground:*/ +.InformationGenericSubtitleBackground { + padding: 8px; +} +.InformationGenericSubtitleBackgroundInline { + padding: 8px; +} +/* InformationUsageSubtitleBackground:*/ +.InformationUsageSubtitleBackground { + padding: 8px; +} +.InformationUsageSubtitleBackgroundInline { + padding: 8px; +} +/* InformationEntitySubtitleBackground:*/ +.InformationEntitySubtitleBackground { + padding: 8px; +} +.InformationEntitySubtitleBackgroundInline { + padding: 8px; +} +/* InformationTitleFrame:*/ +.InformationTitleFrame { + padding: 8px; +} +.InformationTitleFrameInline { + padding: 8px; +} +/* InformationGridFrame:*/ +.InformationGridFrame { + padding: 8px; +} +.InformationGridFrameInline { + padding: 8px; +} +/* InformationGridPlain:*/ +.InformationGridPlain { + font-weight: normal; + padding: 8px; +} +.InformationGridPlainInline { + font-weight: normal; + padding: 8px; +} +/* InformationUsageText:*/ +.InformationUsageText { + font-size: 12px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +.InformationUsageTextInline { + font-size: 12px; + font-family: Segoe UI; + font-style: normal; + font-weight: normal; + color: #000000; + padding: 8px; +} +/* InformationGridGroupHeader:*/ +.InformationGridGroupHeader { + font-size: 12px; + font-weight: DemiBold; + color: #8C8C8C; + padding: 8px; +} +.InformationGridGroupHeaderInline { + font-size: 12px; + font-weight: DemiBold; + color: #8C8C8C; + padding: 8px; +} +/* InformationGridButton:*/ +.InformationGridButton { + font-size: 12px; + font-weight: DemiBold; + color: #0549A6; + padding: 8px; +} +.InformationGridButtonInline { + font-size: 12px; + font-weight: DemiBold; + color: #0549A6; + padding: 8px; +} +/* InformationGridLink:*/ +.InformationGridLink { + padding: 8px; +} +.InformationGridLinkInline { + padding: 8px; +} +/* InformationRowOpener:*/ +.InformationRowOpener { + color: #7C7C7C; + padding: 8px; +} +.InformationRowOpenerInline { + color: #7C7C7C; + padding: 8px; +} +/* InformationRowLabel:*/ +.InformationRowLabel { + color: #636363; + padding: 8px; +} +.InformationRowLabelInline { + color: #636363; + padding: 8px; +} +/* ProgressGrid:*/ +.ProgressGrid { + font-size: 12px; + font-family: Roboto; + color: #494949; + padding: 8px; +} +.ProgressGridInline { + font-size: 12px; + font-family: Roboto; + color: #494949; + padding: 8px; +} +/* ProgressTitle:*/ +.ProgressTitle { + font-size: 12px; + font-family: Roboto; + color: #646464; + padding: 8px; +} +.ProgressTitleInline { + font-size: 12px; + font-family: Roboto; + color: #646464; + padding: 8px; +} +/* ProgressLight:*/ +.ProgressLight { + font-size: 12px; + font-family: Roboto; + color: #898989; + padding: 8px; +} +.ProgressLightInline { + font-size: 12px; + font-family: Roboto; + color: #898989; + padding: 8px; +} +/* HolonomicDisplay:*/ +.HolonomicDisplay { + padding: 8px; +} +.HolonomicDisplayInline { + padding: 8px; +} +/* HolonomicInnerGrid:*/ +.HolonomicInnerGrid { + font-weight: normal; + padding: 8px; +} +.HolonomicInnerGridInline { + font-weight: normal; + padding: 8px; +} +/* HolonomicMiddleGrid:*/ +.HolonomicMiddleGrid { + font-weight: normal; + padding: 8px; +} +.HolonomicMiddleGridInline { + font-weight: normal; + padding: 8px; +} +/* HolonomicSmall:*/ +.HolonomicSmall { + /* font-size: Dynamic[0.8 Inherited] is not currently supported */ + padding: 8px; +} +.HolonomicSmallInline { + /* font-size: Dynamic[0.8 Inherited] is not currently supported */ + padding: 8px; +} +/* CombinatorB:*/ +.CombinatorB { + padding: 8px; +} +.CombinatorBInline { + padding: 8px; +} +/* CombinatorC:*/ +.CombinatorC { + padding: 8px; +} +.CombinatorCInline { + padding: 8px; +} +/* CombinatorK:*/ +.CombinatorK { + padding: 8px; +} +.CombinatorKInline { + padding: 8px; +} +/* CombinatorI:*/ +.CombinatorI { + padding: 8px; +} +.CombinatorIInline { + padding: 8px; +} +/* CombinatorS:*/ +.CombinatorS { + padding: 8px; +} +.CombinatorSInline { + padding: 8px; +} +/* CombinatorW:*/ +.CombinatorW { + padding: 8px; +} +.CombinatorWInline { + padding: 8px; +} +/* CombinatorY:*/ +.CombinatorY { + padding: 8px; +} +.CombinatorYInline { + padding: 8px; +} + +@media screen{ +} + +@media print{ +/* Title:Printout*/ +.Title { + margin-left: 10pt; + margin-top: 30pt; + margin-bottom: 10pt; + padding: 8pt; +} +.TitleInline { + margin-left: 10pt; + margin-top: 30pt; + margin-bottom: 10pt; + padding: 8pt; +} +/* Subtitle:Printout*/ +.Subtitle { + margin-left: 10pt; + margin-top: 2pt; + margin-bottom: 20pt; + padding: 8pt; +} +.SubtitleInline { + margin-left: 10pt; + margin-top: 2pt; + margin-bottom: 20pt; + padding: 8pt; +} +/* Subsubtitle:Printout*/ +.Subsubtitle { + margin-left: 10pt; + margin-top: 2pt; + margin-bottom: 8pt; + padding: 8pt; +} +.SubsubtitleInline { + margin-left: 10pt; + margin-top: 2pt; + margin-bottom: 8pt; + padding: 8pt; +} +/* Chapter:Printout*/ +.Chapter { + margin-left: 10pt; + margin-top: 15pt; + margin-bottom: 10pt; + padding: 8pt; +} +.ChapterInline { + margin-left: 10pt; + margin-top: 15pt; + margin-bottom: 10pt; + padding: 8pt; +} +/* Subchapter:Printout*/ +.Subchapter { + margin-left: 10pt; + margin-top: 20pt; + margin-bottom: 8pt; + padding: 8pt; +} +.SubchapterInline { + margin-left: 10pt; + margin-top: 20pt; + margin-bottom: 8pt; + padding: 8pt; +} +/* Section:Printout*/ +.Section { + margin-left: 10pt; + margin-top: 18pt; + margin-bottom: 8pt; + padding: 8pt; +} +.SectionInline { + margin-left: 10pt; + margin-top: 18pt; + margin-bottom: 8pt; + padding: 8pt; +} +/* Subsection:Printout*/ +.Subsection { + margin-left: 30pt; + margin-top: 16pt; + margin-bottom: 8pt; + padding: 8pt; +} +.SubsectionInline { + margin-left: 30pt; + margin-top: 16pt; + margin-bottom: 8pt; + padding: 8pt; +} +/* Subsubsection:Printout*/ +.Subsubsection { + margin-left: 49pt; + margin-top: 16pt; + margin-bottom: 6pt; + padding: 8pt; +} +.SubsubsectionInline { + margin-left: 49pt; + margin-top: 16pt; + margin-bottom: 6pt; + padding: 8pt; +} +/* Subsubsubsection:Printout*/ +.Subsubsubsection { + margin-left: 49pt; + margin-top: 14pt; + margin-bottom: 6pt; + padding: 8pt; +} +.SubsubsubsectionInline { + margin-left: 49pt; + margin-top: 14pt; + margin-bottom: 6pt; + padding: 8pt; +} +/* Subsubsubsubsection:Printout*/ +.Subsubsubsubsection { + margin-left: 49pt; + margin-top: 14pt; + margin-bottom: 6pt; + padding: 8pt; +} +.SubsubsubsubsectionInline { + margin-left: 49pt; + margin-top: 14pt; + margin-bottom: 6pt; + padding: 8pt; +} +/* Text:Printout*/ +.Text { + margin-left: 49pt; + padding: 8pt; +} +.TextInline { + margin-left: 49pt; + padding: 8pt; +} +/* SmallText:Printout*/ +.SmallText { + margin-left: 33pt; + padding: 8pt; +} +.SmallTextInline { + margin-left: 33pt; + padding: 8pt; +} +/* Item:Printout*/ +.Item { + margin-left: 65pt; + padding: 8pt; + display: list-item; + list-style-type: square; +} +.ItemInline { + margin-left: 65pt; + padding: 8pt; +} +/* ItemParagraph:Printout*/ +.ItemParagraph { + margin-left: 65pt; + padding: 8pt; +} +.ItemParagraphInline { + margin-left: 65pt; + padding: 8pt; +} +/* Subitem:Printout*/ +.Subitem { + margin-left: 92pt; + padding: 8pt; + display: list-item; + list-style-type: square; +} +.SubitemInline { + margin-left: 92pt; + padding: 8pt; +} +/* SubitemParagraph:Printout*/ +.SubitemParagraph { + margin-left: 92pt; + padding: 8pt; +} +.SubitemParagraphInline { + margin-left: 92pt; + padding: 8pt; +} +/* Subsubitem:Printout*/ +.Subsubitem { + margin-left: 119pt; + padding: 8pt; + display: list-item; + list-style-type: square; +} +.SubsubitemInline { + margin-left: 119pt; + padding: 8pt; +} +/* SubsubitemParagraph:Printout*/ +.SubsubitemParagraph { + margin-left: 119pt; + padding: 8pt; +} +.SubsubitemParagraphInline { + margin-left: 119pt; + padding: 8pt; +} +/* ItemNumbered:Printout*/ +.ItemNumbered { + margin-left: 65pt; + padding: 8pt; +} +.ItemNumberedInline { + margin-left: 65pt; + padding: 8pt; +} +/* SubitemNumbered:Printout*/ +.SubitemNumbered { + margin-left: 92pt; + padding: 8pt; +} +.SubitemNumberedInline { + margin-left: 92pt; + padding: 8pt; +} +/* SubsubitemNumbered:Printout*/ +.SubsubitemNumbered { + margin-left: 119pt; + padding: 8pt; +} +.SubsubitemNumberedInline { + margin-left: 119pt; + padding: 8pt; +} +/* SideCaptionArray:Printout*/ +.SideCaptionArray { + margin-left: 49pt; + padding: 8pt; +} +.SideCaptionArrayInline { + margin-left: 49pt; + padding: 8pt; +} +/* SideCaption:Printout*/ +.SideCaption { + margin-left: 33pt; + padding: 8pt; +} +.SideCaptionInline { + margin-left: 33pt; + padding: 8pt; +} +/* Input:Printout*/ +.Input { + margin-left: 49pt; + padding: 8pt; +} +.InputInline { + margin-left: 49pt; + padding: 8pt; +} +/* InputOnly:Printout*/ +.InputOnly { + margin-left: 49pt; + padding: 8pt; +} +.InputOnlyInline { + margin-left: 49pt; + padding: 8pt; +} +/* Code:Printout*/ +.Code { + margin-left: 49pt; + padding: 8pt; +} +.CodeInline { + margin-left: 49pt; + padding: 8pt; +} +/* Output:Printout*/ +.Output { + margin-left: 49pt; + margin-top: 3pt; + margin-bottom: 9pt; + padding: 8pt; +} +.OutputInline { + margin-left: 49pt; + margin-top: 3pt; + margin-bottom: 9pt; + padding: 8pt; +} +/* Message:Printout*/ +.Message { + color: #000000; + margin-left: 49pt; + padding: 8pt; +} +.MessageInline { + color: #000000; + margin-left: 49pt; + padding: 8pt; +} +/* Print:Printout*/ +.Print { + margin-left: 49pt; + padding: 8pt; +} +.PrintInline { + margin-left: 49pt; + padding: 8pt; +} +/* Echo:Printout*/ +.Echo { + margin-left: 49pt; + padding: 8pt; +} +.EchoInline { + margin-left: 49pt; + padding: 8pt; +} +/* EchoBefore:Printout*/ +.EchoBefore { + margin-left: 49pt; + padding: 8pt; +} +.EchoBeforeInline { + margin-left: 49pt; + padding: 8pt; +} +/* EchoAfter:Printout*/ +.EchoAfter { + margin-left: 49pt; + padding: 8pt; +} +.EchoAfterInline { + margin-left: 49pt; + padding: 8pt; +} +/* EchoTiming:Printout*/ +.EchoTiming { + margin-left: 49pt; + padding: 8pt; +} +.EchoTimingInline { + margin-left: 49pt; + padding: 8pt; +} +/* InlineFormula:Printout*/ +.InlineFormula { + padding: 8pt; +} +.InlineFormulaInline { + padding: 8pt; +} +/* DisplayFormula:Printout*/ +.DisplayFormula { + margin-left: 49pt; + padding: 8pt; +} +.DisplayFormulaInline { + margin-left: 49pt; + padding: 8pt; +} +/* DisplayFormulaNumbered:Printout*/ +.DisplayFormulaNumbered { + margin-left: 49pt; + padding: 8pt; +} +.DisplayFormulaNumberedInline { + margin-left: 49pt; + padding: 8pt; +} +/* Program:Printout*/ +.Program { + margin-left: 49pt; + padding: 8pt; +} +.ProgramInline { + margin-left: 49pt; + padding: 8pt; +} +/* Reference:Printout*/ +.Reference { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +.ReferenceInline { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +/* Author:Printout*/ +.Author { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +.AuthorInline { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +/* Affiliation:Printout*/ +.Affiliation { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +.AffiliationInline { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +/* Abstract:Printout*/ +.Abstract { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +.AbstractInline { + line-height: 1.16667; + margin-left: 49pt; + padding: 8pt; +} +/* Header:Printout*/ +.Header { + font-size: 100%; + padding: 8pt; +} +.HeaderInline { + font-size: 100%; + padding: 8pt; +} +/* HeaderSection:Printout*/ +.HeaderSection { + font-size: 100%; + padding: 8pt; +} +.HeaderSectionInline { + font-size: 100%; + padding: 8pt; +} +/* HeaderSubsection:Printout*/ +.HeaderSubsection { + font-size: 100%; + padding: 8pt; +} +.HeaderSubsectionInline { + font-size: 100%; + padding: 8pt; +} +/* HeaderTitle:Printout*/ +.HeaderTitle { + font-size: 100%; + padding: 8pt; +} +.HeaderTitleInline { + font-size: 100%; + padding: 8pt; +} +/* Footer:Printout*/ +.Footer { + font-size: 100%; + padding: 8pt; +} +.FooterInline { + font-size: 100%; + padding: 8pt; +} +/* FooterSection:Printout*/ +.FooterSection { + font-size: 100%; + padding: 8pt; +} +.FooterSectionInline { + font-size: 100%; + padding: 8pt; +} +/* FooterSubsection:Printout*/ +.FooterSubsection { + font-size: 100%; + padding: 8pt; +} +.FooterSubsectionInline { + font-size: 100%; + padding: 8pt; +} +/* FooterTitle:Printout*/ +.FooterTitle { + font-size: 100%; + padding: 8pt; +} +.FooterTitleInline { + font-size: 100%; + padding: 8pt; +} +/* PageNumber:Printout*/ +.PageNumber { + font-size: 100%; + padding: 8pt; +} +.PageNumberInline { + font-size: 100%; + padding: 8pt; +} +/* ExternalLanguage:Printout*/ +.ExternalLanguage { + margin-left: 48pt; + margin-right: 10pt; + margin-top: 8pt; + margin-bottom: 8pt; + padding: 8pt; +} +.ExternalLanguageInline { + margin-left: 48pt; + margin-right: 10pt; + margin-top: 8pt; + margin-bottom: 8pt; + padding: 8pt; +} +/* PrintTemporary:Printout*/ +.PrintTemporary { + font-size: 11pt; + margin-left: 39pt; + padding: 8pt; +} +.PrintTemporaryInline { + font-size: 11pt; + margin-left: 39pt; + padding: 8pt; +} +/* CellLabel:Printout*/ +.CellLabel { + font-size: 8pt; + color: #808080; + margin-top: 0pt; + margin-bottom: 0pt; +} +/* FrameLabel:Printout*/ +.FrameLabel { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + color: #000000; + padding: 8pt; +} +.FrameLabelInline { + font-family: Dynamic[AbsoluteCurrentValue[EvaluationCell[], {StyleHints, CodeFont}]]; + font-style: italic; + color: #000000; + padding: 8pt; +} +/* PrintUsage:Printout*/ +.PrintUsage { + padding: 8pt; +} +.PrintUsageInline { + padding: 8pt; +} +/* InformationLink:Printout*/ +.InformationLink { + color: #000000; + padding: 8pt; +} +.InformationLinkInline { + color: #000000; + padding: 8pt; +} +/* InformationLinkLF:Printout*/ +.InformationLinkLF { + color: #000000; + padding: 8pt; +} +.InformationLinkLFInline { + color: #000000; + padding: 8pt; +} +/* Inert:Printout*/ +.Inert { + background-color: #FFFFFF; + padding: 8pt; +} +.InertInline { + background-color: #FFFFFF; + padding: 8pt; +} +/* HideContentsInPrint:Printout*/ +.HideContentsInPrint { + padding: 8pt; +} +.HideContentsInPrintInline { + padding: 8pt; +} +/* Link:Printout*/ +.Link { + color: #000000; + padding: 8pt; +} +.LinkInline { + color: #000000; + padding: 8pt; +} +/* SlideShowNavigationBar:Printout*/ +.SlideShowNavigationBar { + background-color: #FFFFFF; + line-height: 1.25; + border: 0pt; + border-style: solid; + border-color: #000000; + margin-left: 18pt; + margin-right: 4pt; + margin-top: 4pt; + margin-bottom: 4pt; + padding: 8pt; +} +.SlideShowNavigationBarInline { + background-color: #FFFFFF; + line-height: 1.25; + border: 0pt; + border-style: solid; + border-color: #000000; + margin-left: 18pt; + margin-right: 4pt; + margin-top: 4pt; + margin-bottom: 4pt; + padding: 8pt; +} +/* SlideShowSection:Printout*/ +.SlideShowSection { + margin-left: 18pt; + margin-right: 30pt; + margin-top: 30pt; + margin-bottom: 0pt; + padding: 8pt; +} +.SlideShowSectionInline { + margin-left: 18pt; + margin-right: 30pt; + margin-top: 30pt; + margin-bottom: 0pt; + padding: 8pt; +} +/* SlideHyperlink:Printout*/ +.SlideHyperlink { + text-decoration: none; + color: #000000; + padding: 8pt; +} +.SlideHyperlinkInline { + text-decoration: none; + color: #000000; + padding: 8pt; +} +/* PreviousNext:Printout*/ +.PreviousNext { + margin-left: 2pt; + margin-right: 2pt; + margin-top: 6pt; + margin-bottom: 6pt; + padding: 8pt; +} +.PreviousNextInline { + margin-left: 2pt; + margin-right: 2pt; + margin-top: 6pt; + margin-bottom: 6pt; + padding: 8pt; +} +/* SlideTOCLink:Printout*/ +.SlideTOCLink { + text-decoration: none; + color: #000000; + padding: 8pt; +} +.SlideTOCLinkInline { + text-decoration: none; + color: #000000; + padding: 8pt; +} +/* SlideTOC:Printout*/ +.SlideTOC { + color: #000000; + padding: 8pt; +} +.SlideTOCInline { + color: #000000; + padding: 8pt; +} +/* FirstSlide:Printout*/ +.FirstSlide { + font-size: 10%; + background-color: #FFFFFF; + line-height: 0.2; + border: 0pt; + border-style: solid; + border-color: #000000; + padding: 8pt; +} +.FirstSlideInline { + font-size: 10%; + background-color: #FFFFFF; + line-height: 0.2; + border: 0pt; + border-style: solid; + border-color: #000000; + padding: 8pt; +} +/* PageBreak:Printout*/ +.PageBreak { + background-color: #FFFFFF; + border: 0pt; + border-style: solid; + border-color: #000000; + padding: 8pt; +} +.PageBreakInline { + background-color: #FFFFFF; + border: 0pt; + border-style: solid; + border-color: #000000; + padding: 8pt; +} +/* UnmatchedBracket:Printout*/ +.UnmatchedBracket { + color: #000000; + padding: 8pt; +} +.UnmatchedBracketInline { + color: #000000; + padding: 8pt; +} +/* Graphics:Printout*/ +.Graphics { + font-size: 9pt; + padding: 8pt; +} +.GraphicsInline { + font-size: 9pt; + padding: 8pt; +} +/* GraphicsAxes:Printout*/ +.GraphicsAxes { + padding: 8pt; +} +.GraphicsAxesInline { + padding: 8pt; +} +/* GraphicsTicks:Printout*/ +.GraphicsTicks { + padding: 8pt; +} +.GraphicsTicksInline { + padding: 8pt; +} +/* GraphicsFrame:Printout*/ +.GraphicsFrame { + padding: 8pt; +} +.GraphicsFrameInline { + padding: 8pt; +} +/* GraphicsFrameTicks:Printout*/ +.GraphicsFrameTicks { + padding: 8pt; +} +.GraphicsFrameTicksInline { + padding: 8pt; +} +/* GraphicsLabel:Printout*/ +.GraphicsLabel { + color: #000000; + padding: 8pt; +} +.GraphicsLabelInline { + color: #000000; + padding: 8pt; +} +/* Graphics3D:Printout*/ +.Graphics3D { + font-size: 9pt; + padding: 8pt; +} +.Graphics3DInline { + font-size: 9pt; + padding: 8pt; +} +/* Graphics3DAxes:Printout*/ +.Graphics3DAxes { + padding: 8pt; +} +.Graphics3DAxesInline { + padding: 8pt; +} +/* Graphics3DTicks:Printout*/ +.Graphics3DTicks { + padding: 8pt; +} +.Graphics3DTicksInline { + padding: 8pt; +} +/* Graphics3DLabel:Printout*/ +.Graphics3DLabel { + color: #000000; + padding: 8pt; +} +.Graphics3DLabelInline { + color: #000000; + padding: 8pt; +} +/* Placeholder:Printout*/ +.Placeholder { + font-size: 8pt; + padding: 8pt; +} +.PlaceholderInline { + font-size: 8pt; + padding: 8pt; +} +/* SelectionPlaceholder:Printout*/ +.SelectionPlaceholder { + font-size: 8pt; + padding: 8pt; +} +.SelectionPlaceholderInline { + font-size: 8pt; + padding: 8pt; +} +/* MathCaption:Printout*/ +.MathCaption { + color: #000000; + margin-left: 39pt; + margin-right: 0pt; + margin-top: 14pt; + margin-bottom: 0pt; + padding: 8pt; +} +.MathCaptionInline { + color: #000000; + margin-left: 39pt; + margin-right: 0pt; + margin-top: 14pt; + margin-bottom: 0pt; + padding: 8pt; +} +/* ObjectName:Printout*/ +.ObjectName { + font-size: 21pt; + margin-left: 0pt; + margin-right: 0pt; + margin-top: 14pt; + margin-bottom: 5pt; + padding: 8pt; +} +.ObjectNameInline { + font-size: 21pt; + margin-left: 0pt; + margin-right: 0pt; + margin-top: 14pt; + margin-bottom: 5pt; + padding: 8pt; +} +/* Usage:Printout*/ +.Usage { + font-size: 10pt; + font-weight: normal; + background-color: #F2F2F2; + line-height: 1.2; + margin-left: 0pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 12pt; + padding: 8pt; +} +.UsageInline { + font-size: 10pt; + font-weight: normal; + background-color: #F2F2F2; + line-height: 1.2; + margin-left: 0pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 12pt; + padding: 8pt; +} +/* Notes:Printout*/ +.Notes { + font-size: 9pt; + margin-left: 24pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 7pt; + padding: 8pt; +} +.NotesInline { + font-size: 9pt; + margin-left: 24pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 7pt; + padding: 8pt; +} +/* InlineOutput:Printout*/ +.InlineOutput { + margin-left: 39pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 6pt; + padding: 8pt; +} +.InlineOutputInline { + margin-left: 39pt; + margin-right: 0pt; + margin-top: 6pt; + margin-bottom: 6pt; + padding: 8pt; +} +/* Picture:Printout*/ +.Picture { + font-size: 65%; + margin-left: 2pt; + margin-top: 4pt; + margin-bottom: 4pt; + padding: 8pt; +} +.PictureInline { + font-size: 65%; + margin-left: 2pt; + margin-top: 4pt; + margin-bottom: 4pt; + padding: 8pt; +} +/* OpenCloseItemizedPicture:Printout*/ +.OpenCloseItemizedPicture { + margin-left: 76pt; + margin-right: 2pt; + margin-top: 0pt; + margin-bottom: 0pt; + padding: 8pt; +} +.OpenCloseItemizedPictureInline { + margin-left: 76pt; + margin-right: 2pt; + margin-top: 0pt; + margin-bottom: 0pt; + padding: 8pt; +} +/* ItemizedPicture:Printout*/ +.ItemizedPicture { + font-size: 50%; + margin-left: 77pt; + margin-right: 2pt; + margin-top: -4pt; + margin-bottom: 4pt; + padding: 8pt; +} +.ItemizedPictureInline { + font-size: 50%; + margin-left: 77pt; + margin-right: 2pt; + margin-top: -4pt; + margin-bottom: 4pt; + padding: 8pt; +} +/* ListGraphic:Printout*/ +.ListGraphic { + font-size: 50%; + margin-left: 77pt; + margin-right: 2pt; + margin-top: -4pt; + margin-bottom: 4pt; + padding: 8pt; +} +.ListGraphicInline { + font-size: 50%; + margin-left: 77pt; + margin-right: 2pt; + margin-top: -4pt; + margin-bottom: 4pt; + padding: 8pt; +} +/* PictureGroup:Printout*/ +.PictureGroup { + margin-left: 76pt; + margin-right: 2pt; + margin-top: 0pt; + margin-bottom: 0pt; + padding: 8pt; +} +.PictureGroupInline { + margin-left: 76pt; + margin-right: 2pt; + margin-top: 0pt; + margin-bottom: 0pt; + padding: 8pt; +} +/* Sound:Printout*/ +.Sound { + margin-left: 2pt; + margin-right: 0pt; + margin-top: 8pt; + margin-bottom: 0pt; + padding: 8pt; +} +.SoundInline { + margin-left: 2pt; + margin-right: 0pt; + margin-top: 8pt; + margin-bottom: 0pt; + padding: 8pt; +} +/* AddOnsLink:Printout*/ +.AddOnsLink { + text-decoration: none; + color: #000000; + padding: 8pt; +} +.AddOnsLinkInline { + text-decoration: none; + color: #000000; + padding: 8pt; +} +/* AddOnsLinkText:Printout*/ +.AddOnsLinkText { + text-decoration: none; + color: #000000; + padding: 8pt; +} +.AddOnsLinkTextInline { + text-decoration: none; + color: #000000; + padding: 8pt; +} +/* MainBookLink:Printout*/ +.MainBookLink { + color: #000000; + padding: 8pt; +} +.MainBookLinkInline { + color: #000000; + padding: 8pt; +} +/* MainBookLinkMR:Printout*/ +.MainBookLinkMR { + color: #000000; + padding: 8pt; +} +.MainBookLinkMRInline { + color: #000000; + padding: 8pt; +} +/* GettingStartedLink:Printout*/ +.GettingStartedLink { + color: #000000; + padding: 8pt; +} +.GettingStartedLinkInline { + color: #000000; + padding: 8pt; +} +/* DemosLink:Printout*/ +.DemosLink { + color: #000000; + padding: 8pt; +} +.DemosLinkInline { + color: #000000; + padding: 8pt; +} +/* TourLink:Printout*/ +.TourLink { + color: #000000; + padding: 8pt; +} +.TourLinkInline { + color: #000000; + padding: 8pt; +} +/* OtherInformationLink:Printout*/ +.OtherInformationLink { + color: #000000; + padding: 8pt; +} +.OtherInformationLinkInline { + color: #000000; + padding: 8pt; +} +/* OtherInformationLinkMR:Printout*/ +.OtherInformationLinkMR { + color: #000000; + padding: 8pt; +} +.OtherInformationLinkMRInline { + color: #000000; + padding: 8pt; +} +/* MasterIndexLink:Printout*/ +.MasterIndexLink { + color: #000000; + padding: 8pt; +} +.MasterIndexLinkInline { + color: #000000; + padding: 8pt; +} +/* NotebookLink:Printout*/ +.NotebookLink { + font-size: 11pt; + color: #000000; + padding: 8pt; +} +.NotebookLinkInline { + font-size: 11pt; + color: #000000; + padding: 8pt; +} +/* NotebookLinkMR:Printout*/ +.NotebookLinkMR { + font-size: 11pt; + color: #000000; + padding: 8pt; +} +.NotebookLinkMRInline { + font-size: 11pt; + color: #000000; + padding: 8pt; +} +/* PageLink:Printout*/ +.PageLink { + color: #000000; + padding: 8pt; +} +.PageLinkInline { + color: #000000; + padding: 8pt; +} +} + +.script {font-family: Mathematica5, cursive} +.gothic {font-family: Mathematica6, Century Gothic} +.doublestruck {font-family: Mathematica7} \ No newline at end of file diff --git a/ISDC2022_Workshops/Resources/HTML/HTMLFiles/xhtml-math11-f.dtd b/ISDC2022_Workshops/Resources/HTML/HTMLFiles/xhtml-math11-f.dtd new file mode 100644 index 0000000..74ff678 --- /dev/null +++ b/ISDC2022_Workshops/Resources/HTML/HTMLFiles/xhtml-math11-f.dtd @@ -0,0 +1,9823 @@ + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + +]]> + +]]> + +]]> + + + +]]> + + +]]> + +]]> + + + + + + + + + + + + + + + + + + + + + +]]> +]]> + + + + + + + + +]]> + +]]> + + + +]]> + +]]> + + + +]]> + +]]> + + + + + + + + +]]> + + +]]> + + +]]> + + +]]> + + +]]> + + + + + +]]> + + +]]> + + + +]]> + + + + + + + + + +]]> +]]> + + + + + + + +]]> +]]> + + + + + + +]]> + + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + +]]> + + + + + + +%SVG.dtd; +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + +%xhtml-arch.mod;]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + +]]> + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + +]]> + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + + + +]]> + + + +]]> + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + +]]> + + + +]]> + + + + + + + + + + + + + +]]> + + + + + + +]]> + + + + + + +]]> +]]> + + + + + + + +]]> + + + + + + + + +]]> + + + + +]]> +]]> + + + + + + +]]> +]]> + + + + + + + + + + +]]> + + + + + +]]> + + + + + +]]> +]]> + + + + + +]]> + + + + + +]]> + + + + + +]]> +]]> +]]> + + +]]> + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + +]]> + + + + + + +]]> + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + + + + + +]]> + + + +]]> + + +]]> + + + + +%xhtml-legacy.mod;]]> + + + + + + + + + + + + + + + + + + +]]> + + + +]]> + + + + + + + +]]> + + + + + + +]]> + + + + + + + +]]> + + + +]]> + + + + + + + +]]> + + + + + + + +]]> + + +]]> + + + + +]]> + + + + + + + + + + + + + + +%mathml-qname.mod;]]> + + + +]]> + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + +]]> + + + + + +]]> + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +]]> + + + + + + + +]]> + + + + + + + + + + diff --git a/ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/ContactInformation.png b/ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/ContactInformation.png new file mode 100644 index 0000000000000000000000000000000000000000..515c0859405482683a638f51c7de1a3ac78f368f GIT binary patch literal 92403 zcma&NWmr`27cLA^A}uYYA|PGTC6bZ~N=lbV3=KmKozmS(qjblRLw8BT(49jw40DFx z|9U^25AXTFHMRG{v-e(W-D}-z-Ql0q6bPQZc!q|CM(|NlRs#*~i8>k@dfHQL)Hkt; z|2k1G=*}7nAJEE2Y4=bcFs-CjrP0u;V({)wuuz|I9Tat)(a;DXkALWWfMRnrwCu@` zveI8X43DyK!P*dbU(RBAZf$(6l~HcKhV}1BX0jxo$m(t)i-8q}H7jlN$nUqfuk=2Z zywRha$!Q|amXbSZR@>&?_#d9W z3L^e6nH$#5jCy_g%KH78?BiF@(IZ$Me~W$kNu1>IjjZ2#_~QX@o{*{kcO=O#kJpcH z!qIw2AJVz2+NB@XKWi+1zXsta{qvfE=w-H1-P4aW-&b<4t_{5`6#xC%%GWCUGui0KDT25#%Qu0f zYm`#C@}hPc&+tk7==W;*;anA@v_UzIub{ve@kb-Cx2+oau$BKInD45^FGJ8SDF?Lj z_OBM=m2&buv(0RI%5$a&rJ>}@0svHNvS8@523S~@;_=F1&mxK>qEl_5$6E@^&0jZ% z`Dv6|+(K#2zQ_>@{{j;b!TK07EY8+lVFN5f7Kd}{7FUNBS}s|R@-j_F^`lNVYya*g za33E)4Qgl7t6JukmP$tpNo8BRxsmA~dm=0l$ilvQyEHzNE+N>QnWn|vg`B)YQbH*G zzKI;w;}+cLMSBllbyVPXmDtRhZ7#c4B-7Y`r_>cjcbUp^)58EB)eUW4Es72HM(J;@ zM;cX|Mm$=Q7*Wp@Jz9_^i8G6RTT{YMYUdJKr+(iDkQ32;?r~#Yz8}-y_LgoPt!EC=r#!~4kTTzlF+XV2-DlXh zw?>k2rc3G7`@kVvYoTNBOa+;>jU?ogxsfACqQ?u)jkhYhGy>Troo%$o4{?L!)I_#E zi@*=9HX%eQ{U_~!q%?lYd1S(&xutzd2!V}mq^7SrD_ZE8FG7!Mt=2FEKh3=5+2c)r zo|W}n9fY`y8BVX$!6xvW3iI>YEUn3oUxP@+S6e76=SY^BuXnQ-d`w7(J;0#@VBp{T zyr=Ko4bu3SwnoKTlnRt4=pfDz*V(!RYy!f>IL4j+Oc73)vzp}XC*9@?D>#Y%le1cgTF`v`QF)Ch>(eg=p{F&H5k~ z2Q#VQ%NcR0+DcOXuDw|CoaC2ur>f#h4eLG1`XGT(_+!wNWvm|4ygnu<_}0{V_yrT? z#b+`JQ-A(-I-PdH2c}D;98$p+q3^6U`k*V9v@V~%mS~k_av0v%*e<26NW4KAR+xhM znM*gxzs=n|qD1cYZ%pSq6_+vznnh|%*3-oy_oooO+xv3{#CR7jheS_gN~~TT+s&(% z?EQb&NlHmdL+Vm?tC)q4b}suml0{|HjL1{=z``CWoC(O!*G9Y^36`3aQ^ z1G)SvN83qT!O=UcmPnMbEgT@v`YaC`)gK@2ML0+H`vm5?0=+sPb5zKvwqMTi{q7Vk zR-TO7I{EF*22-`umM5!5{%JT%Bc%zeAy}tPJt8dv6-ftY$`&_sK=trPXLEyg6HyY?au4OKb0??9eYrEm@_1=$vI6>cZ+h>e$n_HCRu83>F3Z*fLVwV8Hp{k*_cfNb z1aPL%jyYyK%8YbfDri!&dri@U!3W&4zif5+}lRdY~G*8q>wOjC67rlyg?!W zMAl1<$wypl#m@K^mYxRAMOibS3RRl4?k=pYcU<&pECWy88p%o`T$&or?Tt|ZzuNPX zL8C~Gd@<`kU%i-T4NXzYihlR{t;}(&dv2!h9ZwB@3i95nl*6D|EnVO*C!>Pl8&a05 zl${(Yb1-p2cxq z(O$2VAxJcIe`~Y35d#=}?*5;F#ANY_eJRzEZ+4f`DsQb%Qpxlv17GPGF_Ja+zY0Cn z{;uHI39B`MK;69dr?KR}5hht>-;Rs^lMzN&nX0s&g7P_S(!#y8`F!p^+^$C^X>HPb z?)v(^eKg@oiy{tnG_Ay?;rTD0IMn+kH~rl}(r^Bi8+>ebwJ|PJy+NypV5ST!9ZVV; z48ql(7pZi^Lb<=d*^3`is$Ex~%c{gu>{3T6ZdvjMbEdy!9TIa-?zy9BF`-$JLDas!1ZfgULO# zjg}YwhqF!)wMZ5n6AF$SU2G!XSvCFfrt<{Y&BoNTP0ZBYKQh`&2JTsGK6ka1CeGU& z3C^Ry(Xhm?T2HsIZ$2W<`k?afqu%Xgztpea9O?69QMu7;b_Xql&67Jl+^X7AnuR}K zlhpa2@qCM^hp&a^*yi0&Dm!mRawiYnU1n_hVXzHsk1U#3v_{OO)g_F)x&YAFh1zyq z;9+39@H{E{O8~#wC~!J%8XJgblFC4mH<*ZFbW@j4)gQg$b691aEF5{IQTyE`^!}vX zh!GMp5{t6A{`-gl0-@RjeR~l(rKE*h;YSP#&Qe_88WyCaJZ_3nfgpZoeZB9(Q$LLv9%xq;@1(x(XZ)K{d!6#*-ypR=EFsge zmnTgMSro*$?}TwIZ@KL@?{(68*q1UU`Zq4q8)kCF*fu~r-eAAXW#m(*(Ho8UVhHld zzQ5T3ppfe8CMvBMOtTUkhE+V~Tm7SP8sc_KjdGI6dxe9ci(VR|!FVPc)eS?HXwiK% z>&g7&OdmHhcDB97M}&Gociwge@*HM!&(;~#cc^lP?>Y^(#wZ6EGk1&t2={WX`< zMn2f(J8iWh`2WLf?x*DH$orb*(Xa13FN$Dmp?D~elB>4UCt;5jbrWCWP*9Ad!1;K& zzlC62@3?L9f%lnDnsAQ|q-bC6vBJGAuz$EpBNho1CbC+zRtNGoMlk6FYivpT2Iz-;Sv$7Fn^ITLP zK=)^Lj6{IGhJ_abqMx>hb=gkZrJ%mbN6iO@0&7T?R!<2O)c7)!vmG)b?&?q|*r>&< ze#|}l%{iXLu20{Hts?Tr^^-N1^>CcUk4z`1QeeqV->Mxx3^fs|VbR@v%ul*xi#-DT ztmi6|vm($K8*}5+s1piRZD`N~Okf-NGNGZHaSDY4C@Q~96 zYQ-$@!wr#)z~g0_7i(I>ZmLIIPT8%h|X*IqO{Y*!8B=MWAZAXU$_?w%Wg9oFnTI#4wP z0qJo4`(=Jn59mfo{88KBpS)geF#se5>&HQbY@q0Yj^np!U0cD>vrLT)A6a(#PdJ-jJ#P(&c}e$H(Wqt)bigz%BJoY!n?ky-B?0>u2pN7U5Uhb zg>l>qp<_JYY3IOIvl!gba0I)K4|NM6cSc7g;ET!N z$-mlWNbTdB%UMPu4?(-!J8gHQ3I_KNvRQOnn~CX`fM(L66LfEWCcK zSJrzVJ?9H`G!_H#t|HM`yANfWMNV3}s@?HS?ft0Aq(7aQVz%ep6;%us9A5R}BTfgV z4j3hogNw9TE6kjS5EpFDYe;PTJg((Z=J5S7w2NT;LB8r6Q-nI3U;>)7z?ep91NXa)W_2$9soR&NBbLniD(BSg#(Bqu1GwnB~!F9(i z*Daox-PgntST`Ob$8?jyK4%8QP+$0v-YjJQ?8{5Tw;6kq$Y;ki`~C&WAOY?o(87HO zOZg|F)q|&(2iljYTepBdjnP=Y{i>cw3Y?zEPWkY&)UdVFmx|8VNF_KB@ee?rK({eZ z)DrV7U;^^F*#%eZPJE&+mSU4-J+0I>S5lg~;!BC`rWKB4Ut@~mY;RPC1u7F+gagN= zzi#z2LZm>2zoOq$%X%f3;{Wjcyz=MkqR<8PTqXMLRf3&YUZRyBSU!tE;K+-QwTG0x z3!C6rFg%7j&Z(yC7levuRRFl^->}sN_tXtN0I&WIT}e17r!lJ+H*vX`_*dX{ZC0S3 zLs7quRs0l1v)BQ*)6%Zi!aOz6tI?9k>4SzFzYlD*y(G ztV&C4B`TA?4ib>FGt(vfD#>@gXlWpxyf(6yA8$q?v!(t0v-nO$WqchA)h4sIH?egHWKSp5b- zwTJNrQ<&8ZQ?b9-Lan;U>3YVi$5O88w98WPaFAVLfW5*yd9^LPL}9efRfWnUj#l`T zKwklqA!T?N-+3%OJ*A1>H>`iws3Lw!jm9$ACh-R=#Sl-FEj2a&wnm1~FB1r|W?g0~ z22LP-dbOyn82n762S2+Vl})d#h~*#r`Kvc%;O?5#u#(QQlO^=}AX^@NUc|H;YqIWO z!dLN!q0gl=aKD7ePU3VYr_(S%gQ%3y6fxELNCZ$RC8fzA|4_@D9`flW0wy>QhG7fWW!xzaL-S1$xAI_+cx;gCel zZp2(yC%6gPf9ne&$38{hl|tV4anT6bt2VA8Q9#^K`mL!`E%R<%X6mpn=S+|q6Tl=B zq7t7ikrQVd-b}xMmbvuKqD!cO6QLNo!1Uy-PMbN?` z%C5T=&cIF7j%=I%G8kzGY&svs#hs#40f;;PJkokJYD`Y=Fo7}HDG$6k4ib8@}Z#9qdOi!mm+9^~V=v^`?D zv~*gGw;sGPh3*QYa|d(oWWxhc6#MXYnisT{$x^N}l6zFZZg>O5HP140i1i0bJ

( z5>*{-s}g(rpu>%&7beu2Tt$y9{=frl9$-U8h4_F<#!)03YAs(Z{v$`1a@t)O^r!k3 z6_V0KE%JN_QPs`h({YxOp&?l>Z>nM=6a_jA{xxzIOiE9GJwH%8w%Z?w+T>Ok)h{TW?8VIX7-GfuFeN3bXh9>xGdQge z#Dc#z`ebb}cz@fjm?O!(h%>hZLc*uPYi%~reQ+r4sz)Z?&bVEsP0J;3%X$Rw%oEaX z{+hmx1k)z%rVpRzBb4rZiZu1Pk{&e=n&>-67{RO%RcpGC_1aS67A z`8Mcc;4xO@c*jNVqhHYqSHD4gN~LWA0SwcV@e*sRB0RVO#?G z;U_>I^|&3wG=k#{{^(AuWF~GO`n9u_S7YM*L(@$*BW`Zbp@32d#WlFuZ`F72Y(26@ zwZ$(yzIA7b(NUuE$3KR8N&mW0ti4nEf<@q9rx>qdFK)a-W%7rCo@@ApmhW1hS~f#XIq zY(in^=bf)?x?ro(BgfvP%l>m;LY5wMPpi4NWJ;fWT=;zH2YqG?g3+CD=^|SqhTq1! zyocyr2PH0&M(EhtW=2*na0jakHyG=IU|>asERz&5U6j4hp*Qyuzb^(km|f%$|LSu8 ztKe%GX3IBUpfd_adYxu;2{un5CKPUwLvASIO2F;;*R2MqU>bZa>eDpNQv*9XF?!}e zY}eRVGHMB^287~rGmp=P{}Zv{#bK?*qrZT@7K}uOiulibc4oLzfiHRBfTb{{5q7|Q zj50wt0!7Bz)W0M8W-1?R&$n)oh7^0o%kE)(t8Cu+F=f^Wxda^?m?;zcc>`ZTl8?#| zwQ@7~7Mo&t80_~k7|D!EA%*w;9q5#3;yj3^yYnuNuQ-o&*Gl3BWB>I<45C^BI7*O^ ze+gXsCuH(h=&yLa+F#KI{(_rrDWQ1E#m?$@F6x<+t>V0^2IvEReG~YKzsGJoI9Z9%isDK1RWWbqS4l%#Szlgh-0@|9jm!|-Gcb? zeMqZ)3RmdRQG91jX1nbQL@zcRIZe^DS9sR)o4&u&V0pQj?p2l;!;f`f zs`V^kGK5ejYiC=zaNr~g20{w)TKndW+CU$S_ZBW4yvo(G23wRd`(%53rHnpqpsvhV%J{K%Rqb4gQ`&` zP^PER?fdjDoW*l~>#Waf@N{iwaERN;R@OpF}5(4}y2~>eS zjA$JGl5Vgmg%r`H_qpIm<5_#=On3AAw_`sKxf993%c%13<-pnEPQc5RRL>7@<^;lz z%Za4A`!y>*&v~81&s@J5Q5blFGm3?0OgHK6#LhunBgx*xIQ29K$Y-Z_bsYTm*I9-b z<&zIauLI5&Uy-u-?f`Z$0Uaweu3(tL?9DG}x+5XZ9G@%kgPQA6F>R&4T9?Df4M1zL znW673DboElxR**&oRs;S#aNn0Q&%(HoAofpKl3TPF{wv}ryMHt{$2sfkPrbx+1n0L zBQ-@dL-o?2HAxqC2tgT z#cfp5U5X?8{^vIoVtO&YGf9g|If>*F?VK4xxn%r7xs8>|+Kax>UZO_phKh#=2iTJzVv^A!u*(XiczQhnLlT zXX#@POiegz+8J#a>W`yb^a{MF|L(stp?X4i9w0vU%p~!)VWqk2FjQ`66wB@9hx=4~ z_QGt>{liipa6tu0ekdGHhQIVpX>i_(0q{%%&)K=0H)%-K2|~cK7&7C70a5&kviUAS zVa=itc%w5H`zWdV=Vk}Gu3!|nMNif&CkJ>5XVod3u| z_e0^nVR)NTFt`Rx)q?677lza;V+n zOq|#8o@H5baqVe+bxTLan?Zt19umOTvb)Kv2n?xg5ocra4^4xWg!!uJ)4Yp&DbzO_ z2pC>-w>Y|62l`g&Q|F4vG&t!v_V~rCFqsOmnMf$Ab$P7-?cNXq zJ-k?KCB__^_*>z-mQQ4!+OWkqoZ)CSrI>OB0Xv{EwDwNvn`#xm?_k24*+JU{UFg2gZ?ei};bzx~N3r~Qdmm`G-B71_)!@5c1PbvwX* zgHCLzvG34@U;2Q;(1Euy*PtbE^LJ?T5T((QDUIvqSUGcP4Lak3eRD}3&{}-_K4R8n z*9n66i7(*t?V!Z|*!if9sV~ZzW~gvGCy4m+yk4vV@RN*8C=&#hAoX1XMCo?!=o zPrDRY%hY#!3EA0+rG=KpM}hvByfjie7$zc4LxIV3I{8ah=%2e%`7$TqCzjZby zixK)J=4%iZ>cWym5TOa?^u60t0&XRJp~%c!ZR&7su1X-u~X3s^si4D21NAs)#L zcQMDAkr~@hLiifF&4)i|xe7U1L`L zkzuE*UpUaR<{hME%_J`@ixh#!o{yl$Mr;3u~~F7tO@p7y=)@6JK{Tu$#@nSeU3;hQ6hd%Q5M zhf_yyT&2ugbz!ft_DEV=!GPI9Z7?(b?b@wYy|r^?E1((l<;z8I54EyWYz};owdmK<9^xv9 z@SY$LL)Z-`d#j(bLG0(aq3Qktyukg$>hKpD`28>X_pPlg;RP?hlky1ZTwR3ar&qlF zoX%rJd90oJlS7%Nd5|}PPmQF+pe6Tc0v98B@o)@x|8G>=fvi)2)_YU|(^G%n;@F+| zPQ++jF`FF=91KYh{9XSUA?Seb9bMk$S(>$&r(I#SRZ>)__bO@hJh&GhAc0Eh{`h!d zR@&Cud8Gm~Mhpk?96IpBZ9eFFIYvo>nFb8 z5pU0TzHv;)K~ZMa%aWh*afK;Ejy-q$rku&eW(h3!VvHycW9MroTyboSoQyR>D;Sz* z*MaSj?rV2yK@RWz0ND=N_V00m6f3KEH-X0Mi@9>kHx_!4!|4L^G^oZANN7(6;}<*^ zy*P7PmuyFJCv&6BFGvb|KUOxW1?PB3u<3F}$Zj4#d3H1_ClN)wCUdvT$|TXMn4w9% ztU#Z#u{6Jp?pWB5!n{1bZG$IQbAQ_t-rnve-Pp-I_g2ho^)TyBvszQd=OAx{I`q4q zT<6NQGi5d#YX<-_k~zXXnywu}%li7FGFTAsm?0(Z!eT1k^^I?CpLZCDtKOQai}Nmv zla@1Bh18828>{jKyrx>G&;;F|fKrp0e9M3Sq`P9G=g<2sp>0C-=J^Mis)lNc7!pES=Z=Pt+TRC9(JTxS&p0(I#HYLWPB)y3P1QU zU7T13C)A`z**x3S4N(=|i@L5Ai_p-Mq8!2W5Ho+3v}zt36gys$RfLJ`L!fB>WH4+{ z&gpu&$nv18$J}K%vJWGL?hAG?dHv!suZs6Astv8&?whBw0tF~I=XcRl9|IMBVpKZ#EZk3UA@_SsGOHj5Leff4Rcg>%wHy@ zW-3*2k7LnWqsUT@a~dxOdKiN(*cdIE+;Zwm?xwUZOBd3ug&PufW8rNV{aCn=glA11 zKGbK|E!R|st}Soal;7rLNuupE@8(i&Z6+{O1xP-uW1b55vlS8sjpYlqD%{^*`*EA| z4be7}2ljP%W~Qcc7(Har`dk@`5HxPhvL%`2kYT&VGhW>f{6K0CX%Bvh6X8`e1Ma#)CTTza05a{F+5c?Ve zbdY>U%-gxdnqnj=s{J4WB7!&52|&JlzzK9LP#cLN9t|#zVaK>lV!40 z3;pxwHR2m(gvPQZ*SdKgfq~*`5}v&nQMb1{Li|auz1c2kc{R%$7Sis70B-C@4yS^5 zYoV3ZJ=bDeWPl)i+Thk33y^#ODa|%5Z}^1J%Jl0&JnrFSO?A3sop06L2F>`FoZcm; zFV-uu0E5Q@niExw_ew6v)JtH%E^9-;09KLT$)xkx2p@oWOu5C4Xt9BI zwhx)nL{HxD)8Y~$0ZRr zeGJ^ZfC8RdMqetd#)gx((L1b=LidW+PlOk;yzE>{LI%PDY^)-{iS$97}I>JFpLB<*dT^OnWS&_Uc~U>Jr#f-(s^ZS~lgKhUb2@52Qx$Vr)u z`U|${O0i@@A4ATM1_K8vFI1OuN2#+4l~AjW3U7SZygf9N{g@g%n3w~4V2`@>aU(cA zJ8N4jj_D&jP!5>*V912ArpdUs87Xbd`hJ$D?QAm(V?7`2Djyt-k!Nl^5lOU&!&8M! zpUIDV){M@}>6g++Pi(}fF#2)+t(j*~J5t`_sDR{wOp$**w8y4$8TdmSFA5$|d(tKn z%J|pl_xdf~E8pht*^SD4U|^GdOIaR?P|A*uq1TZHBNcaoS&S-(iy4gYg7Qv#WwV;~ z4qxtgfAEgfVOOt?nJestKZD?LXQsSdN$E%N5at=9ugGuiWLn&)Hi_Gzr{P@)wXB$1 zyv(0xQSxOt$1N3qU5-5Sf%aEd2i~pMN`;qG&MYg-Up=@d%{Gd~|qC zePnOSBV@pe8uZRX4PVE^p@_XW2oX^IM)}AO*oo&b8}MsIi=qny8KGB@S=e~ z#VRL}$Xo}S`Q?GW<;hP&$OV=C{i%Ueiv2Q}m1`0!Z+vxZqc!e{%8%du@M@z7?{sbb>=q#e@q}N+%-xvm zO>D42V-(qMQi10^#Vx_Q$p!oWh8BBYj}nTxEWqp2aJKzKZZ|#Md~-C_M7qCBcm7^2 zkrw6k=i-p=#FAvCilVS+d#Q7D`g>n^rN6)fcp*>cN$|~npfZXDQ$5!MH9G1bDAo04 zmAd72TT|uUU?S_z_e9C~vvkVI<1D5e=RP_(aZP5>Bb;Ex>#6I>`MY9BWNMGSC1aYv z4C&69bK!9trzu?r@9(YdaP5qOc2sfyZyVUCC3$Q9i$lkufxK=n!Vw%R^>CxhXRU!O zbym$@f`T)bUQ($>K$n{Z`boH_TUKiF9AoC21>*Q67HU>&F>i!<3%wPw4ezqOj>Q>Q zxvI~9NWl7aMauDVIsxq?8Dpj7Utp@@zl}4U)kwwEu_WdE(mu1OfqPeYymhG)x(m#* zN7;Yf^S)^UArn-wj3z|qa{arBe@w$$c-Xw&4K#~JOSMHyz0-s3F42Q`V z9f{b~PF=XEKER##55F^an5YV#Dg&YqZ5v$^p5sl~2pXfHcZ1EUr#exU?n z`sIyJ&OsJ{kX2A#0*%a@yhwI0-O>IvuGMv2n{_w@IdTN-{}{5WOd3YIq^egZ+8?3w z^N;xb=>;>kt3Ns3HRihESa3DgSui^De2eZzNBU9tM~l$Q1Q#jj`jfw>gGs3ovL^zP zC7Qh_uM`PoS=Ym{7z-uZnMd;I>RDE^+?{-j)4FlnBY~JJ50+zX6JQaf0$1A&rWo$; z=RFK2R{nK+0eI>2LbyMPA=faTH!qCa;^@Tc7aOqRGg0%$sS(6^CF|FO1RTw{<9=7i zh|H!w_jDzzFzc5_O8c0{suVlxBUDl4)8=m~FwdiB%GRKyGruUSmOYO*f9;(v*qmlL zZbT~(;dQwo>O|v7h3JgBbWKyha5^^EzAKfjzxpA`===?n!k=XN7IAE?B7fIE4!rRXw742jI$bZWwm&Ovc@Xesw~!>RdCXLN@A$g9nZRoiz5+=_9Pi9kt$>52<)iPrpQ?i2 zfA`5WK~x#fs|MRN`n@Ocn(qSpwwxsBdP&~i<^RUp{S^qF&vR#Spzl*;O%)kRWVIgY z+ZF6uoERPM)g$iY55_T~{PNZVq9D2Kd7$40aR!^dF9>>YOik&Fg6k!7>I1Gr=Y9HP z2WCL8bmEMIa6-P|Fld2+Ojn?DdN-9cKOtQeL&|#8V7+&kSM#seHVb4?7Na+-QPa-H zDn$5+H=CqSgFKjKe|4hE|5_WVHJk~6a_Y}qwuHO`fXiDdPs*4u2wP?iz2aHnjfELw zBGQ3@d+6({HB4V+HbMm?bJG!-)Vh5eWiJfUnQX6iCB=sEra!>fG%EBbF}n7m#h8UP z(esH0S-oE*Bw-m$)?FAYVFP4Mc-r}F=T!uFO+{BNFbr~bdkIi1-wi0SmzKiB+iaTg z(NB2(4bT9*ZFYhnw0f!OsA)`Sl_n470s74l0fQvOwrNcaB`A8K%Uweiysz6*Q-mvN zaMF71Q}3L+f@P@_^p@Kw&|z;K^& z#d~X(P6*Jx4G1ogWl?PRt>_PDk$g$Y(uGuDZ+z`Wv7arGAZC^e>!_u0-CxQSQ22PY zIyo^!XRKBKAM-F%^UrYEt$$Nc%BABrTCxDOupSncCdV)ybsC2wCo+@S}^7F z^>$&=bBXbqiQkN3wUp>xQuYMAGCo_IsJt;b5}2INq4wtZ+A=Xtu%jyY$GRh|MFn`X zMs&C&l45ulZ@{y0k)Up>p}?s*utD8-K+*MmtlL65MPC(?@bEr}%b-hv@=?tMvavdC zHi^YqbNsg@Xg#@UsBa~=HmR(iYBin}X*27*U!pMZSz+%2*HFUG8trt+^uv^N;7aW! z+V=adB{hDlX05*58CEDFmcMz}NitMSr4>K^VpQqrw;#swcmNelu-H?2oT~K0l1A-#cE0>%w8gAh(D#t7D!6w&tAVUOeqo(xO0ZzO%E>q1B`B1b7Q8IFuN|Gu~PRQ(I8+i-q=4;yp0@tLtom zdeEP-BfN)|SI^xZbt5X&WX7%6y9-dRllJ!aA^2ze=)?X&xQeZCqEA=+kD9i{v9ZRE zEsUC5nU~$tLK)f(_zaSd;)QaO44eDow<8Uv^55u~Q-`mhPq6Wpe7z_|PT%W@Y>W|> zs@{}NO{s(4B(NY?-K%UwBh$s%tzfOr`JLF(Je`hluUF1@*Hq==M^W5k+%jACYIoEG zdhyb^7psY(G-{~!(4E8sHLkiM?x#PDd_nvwrA3@`10oEQ7YlaJSCvxDBB z{m?|a=`61iW3Yi8qV>*jdJkYW7}Uurwf1I<{@eHLh9!Xr1<@C z;1;^g=J{9-i|c+zXg|4LBiEo`a$s&fI~}7h&#m#56DbQvjI+$CcqdrKou%7EoL=sT z_R~INNl*`q2UqN(2aXTV@_CSfLZ_84Pwsq+(928S4tPT^5q!h_*zb}sft}s~4W@D; zp%!L^=K6lr^OsUmHEc7X^`4u|9Orry)%p^6!dA**y&NEy!<*k4Mxur@loxYVy~VCL zda*6p+35x52jUQl7XLws5vz3n8g~Qz3(0L-EkA2QUxP;DGjUXiptM@|NSd`%J^%~^aFubV-Z>A*Twx*T*1m%e zJ?HmmR!p@4fuUIvowwdjegaQZi5|=3?_$&}z6|5)=p~2+yU@Ygh{!1KdXgc5C3}~Z z(lFJadyQWTCEu%>hp}zDuQYwos~cR2ayY6(^3Qfl{#fB+Ba-w;zc}*Bb-n5>qOJ{K z)h^FR3Ez@fSr)`Leir@QjZhz?j_fR{iKF`+w6k@yagqdRmz!TUX+bYiZ|{7XM#QYF03oo4#4gWXbW4&3gIIuJja` zroe#c7`?{cnQ9cks$ro_*@*tjih)xvM6gWawjXjn>eZ>YSE$yykUs&p#S-35?W}e% z86~PMWQIJgp|8*MN2xI9->KZRQLP)G2Jfp2@Tr}e5jg>SLXYB6&{#yj&$Vm9-*OGm zYofzIfI#n*kqTE+e)z`&-3LI`OqW^~Y5*wH4JBD5vFY?d=~b&=bTdXbPTi5Ni{HHI zE6Q2Pbjapax%EHrWPI8B?&1WhcidEzfdCQTunO3DRN2j z<(rpL49J4ZuU~TLdTIod`AiSKI~(a0dNcDh<7=*fuNElX61kfLTAOJiuO}?QbE~Av zDTbZ_7yGVY2@o;<^RAk93%qCr&&a{5KKhrbg)iaX8>WBltfS`O(!HY4Ney*7&PANJ zFDHMYH-B;_nuJ4i%YKU-#IRz#`vzh z-7-90w=jHpubf<3^I#PI{>+aEU%u5?nA@9pQh-1P&F6gNhkp2 zva|AXk?JnSVZPNjO~0Hv73ngi$mb}1CBKhfUhE2XpKUdT5CZ~aO*1NK5sXfus2 znb3B6F%uLS*tAa$&I}Dr=LDKVG(;+Mm8o-hoW{aS=s&$$n*+2P*kKWkM#gz!nYyu@pxQ*@1}oRoUg85}NKbJEE`R!-xi z;5t0gTRN{pf48t&!ngirLhHB;c$+ngvA=15bL?JDVx4uhj>98_8IRM6sHj$>DkB5= z)_n5++2r%!d~#SHG`@4>5>E6=Rw8m~|Bas)r`~{%(Mm+jm5y@?`Y=nW7U&elmuUNv zQ1)-~k?h_V9*O>IXobLmonZDh?8?xza?H@HK#J!zNwL-Th`x1>&@^s;4Qy+Os>*1< z&7b8#?VGSLP7v#8XbM0j&p(BCQ%c^25gIRn*Pnt))E2y@J*#?af}I%Zyw`e&m&Z

bMRL()-2B}pLpiKD!Q5QRA6=viLQvU`J!dqvuz+(yvMdX*5$wA&(23U zAonYNee>)0L!<*nJpKr9imasPC-dco*X`a`Y*|gO8J0L;PAqXo8w?4{)Th881$v;7 zR(bbz`xOcSwakb2Uyg}ypHh;_ZnfcOn+yAItxjX1f z^S)aq`ba2gaMpp5U~#dljv%he0RkUxW6V3Bc-xpC(|xeRN;`!RZrpFxZ-z&+?@c0^ zlzpq9_TO4X2U_n}!1&R7reDrq$00_}@kzuUKEz!E-i7}k_TDlmj<{|2gy1AFxCgi3 z3GNU)I3xsz2@u?2aEIU;EO>AT?l8D(aCe8`?#yYPQ@gdbr|LbmyYI*Sl&TEf)7{hE z|68u>cTd^s(j#x|1OC5(>)-C@C;l6uTcQ;uQx>cfUN!Y;S1J8@`R`Z2B%%DE2f;iL ziLEEa2-2#ncFVoD`FM6K1rCa>%Pq17^{H2}flrT&V^>FI;bCXH%iK(PAIg`X72BX# zEeS~y{cjVZ8o7<;{YpMsxfklx2C3YVdFzABIzxb{_gj6yTB^F4tFAXpxW`$do%he_ zNYR>0>6jS}Xsn{qunlmU&PB&F)mnb7p?H4t;L6czMDU2^gw-uL8)-VeLEZDo4Na~y zk#*5Z7x?iV)+Gi~c}Rq>r@>)T-4tnFdW_+{f!?d7qsS$oav^i`ZIxh$ww%2Kx`qv1bh3U<;J^WmFEpz zT~|nMswAeU{MPVn%kJG2p`?4V>4Q#nJN35j1BC*G$UnfIHanP?#B(FDv6g|D*+tnu zYHZ$jWw*=`!!VG65l8-5_jbTQrMWlr8FNGi~g(G`XsvyMl9@JRulr6E1x!SR9q}U#-f<& z{@VMs^ju^tJo;qCY4Y85KwDvh;r>0~WPpS(Tc3Q-2@Og(X0;eih6sK>91C`Z zWeOgN49CZ>%ptM8&%Cff&J{7rWdH6 z6ey&-r@vSb7a2v)x<98H6jp>2u+o?6%qGDjEG$OfKCi-BEJ<;;=GTM2CP9z?8Ml>r z18!CT)j(q6{Qhq`bV(9C2zYvh<@IZmG6s^0lZqC<`dPQ29wy$B|kEl z&vD!(T{?0+DaD>VGdQdV|JGA6#9l4b|`Vtezai6yK$D=9{iM z^2M#eqp=?;+#k^ci3V@9Hp4v{)0_&RHd62MW3rXf zpVoJt`+3pZfE+x|Vf#~x$LzpTCP|$L5&t=^`s^d4V(QG#-bl;-(t1c;-*>-Vh^$mB zt}U)PB%NZfdV?l5jGoP;SxAgr7{HG(6U2(dyXm4NI&^OWu7$XtO6SLfB9DTur_gJO z4Zy?wQ=|0X&`Ui!lOetf_Ix9p`ggvXF!j84?(ir0{EyzunIYhU{@(Vkt`)FfH3*ZN zpl20P2wX}WkocM+ToL^nqKOu2f6kN)NMwkEW#P|#Ur~VFOKsU!XB}8{EK-Y(;_~mj zf)3>?>R8Q=-Cv#YYJOg_ZRH0RMWB^JS5xyEg}Uzh^5xj%&-n6C30RXmWWK5N<1VAzJco*Yg(&BuW)`A8eKg z)ruxoG&IGMf7=Tm)#NB5sLU+=@iBh9b<@y=*F8C`&a9nj>j+RzsIvy~B%B}AQN8N# zvfmV`Uk=(HOyI%je|OD%ouvEWLtYORlgp}b2TzUcXa%^XRCJ(mx7Bb6VQ|()W*Zf%B2-3LrE};GSNvMW3%S+h7Cz(eamSljxKS*u@N z7f9<*!wynWqr$i&j?3L5K4#tae@|LmJzA>bPFDx zsF^?6_yg9D^IS)ynyf!zb^y%8)^AmFq@~o^3@QnvLkM#%*FTmYkdES%MD;@f!ocL# zrrfm@!ZucxF3{Ggzjh1SYu%?u9eYx2mYGiy0J%-8liskWf?o$SRj^<`6TI+W^`&zw9tQZFkOq=X2oTW%37L1+4_kfT8%zGwj!Aee#d6-fugs zA9yThvP+K6w;%cx@@#!lf3Rp|cjLdGG@M^;N6pX-KwjZiq#^vH?){C+Zflem;FExsUhZG04Wr6H(*bBp_vXNy@J+L&Pr&pa-tH*AjlXlZX9n}D0A`4K zrtU~$Myx7UO}Y zx#tH1id0V1qNgW-l#_h!9`ug=^`Wg{_s2t^#8JD*{Ix84y2#Pd>V<>>{C8U;%%wXb z>r!HaQZ$C0f38A^z@sMWoy>(%B?!6an?y7huUF1Zn|VG<3L&Y;l6)KX^z}+=lGp<&@L2Lz0@jd`?vvSMH@66G zE55lI6vo$Z+tvClI^W7$cJwX)(Zhn!Y89Qn&DkM9nkbnA=oiUOpomD4t56sPD83Jc zJoyktt(vtB`58(i68t!Q=oJMYBbahtycb}b4R>oR`Qp1+Cy$wfvou#3| z4l3i_)qQ`czp`VQdqfXJ(+vOF(4l5er>#0S@+ml^Tt4m>bh>Ge^XGNRvzT_6`Ik5h zqaschcx%q;>6!!hC3X)}_W%j%AwT@z@OrS*5Tf4|oSs*IIe;r*CXQ-ETuuU7GW0_@ z2;tyxf-{exdM~G+o&H#edi;QyUZM4_w^}TBs34QAx|I@_-qYx<_rnb=v-Y?|t9o2J z3a%t(kDQoe&DoMwB4vDg?_Q+il@kys$%f*bjeGW^bhmlBl@FE5#!}ZQ6!*}eo&!&r zgTq#=z6+I@3qw1MLk(NwCqA=xHMl)Q?VUzR$jDbhO(ypn?-__x&@u`sSTl1ipnBib zR`TGwlv!7Rf!5)@J*|R%VWD;^0rS_dQ14siM1La-!glr zpw6oA-PJ%a?)XhI%xb=B`JRXBgy}OQjp$R&_%X;(Py7+=90*#D7PaBHG5Ov2b>+h4 zsJ48;BghXIPJ<&NBZy8(+>?a6I5t710rMPtS-ZV?Nt3x&WRel3;%_$do0;}+Jz)z% z5a?_y;VFu`C{6C$QT+*1i%bNmrbw<)Aj`c5x#{H$iD0?qrOWMc;bvM_nT-o9vKFj0 z0XQVU8Hml3sjC8_Iss!#G)lcik*C)sBtSS`wN0^4Hx5)%pl}z4-;yt%^Zn;xn&siY!4$DH3MR1i z<(<{VYVKxnmG#7T>T1$a&10WKN+VCTOreVc&h8T$ajvHUeK~Am0g<2jq@Z*v9fX|D z!+>So7W#VZ2+~jWFu+=$Mhz5AlYmHf03cn&>DV3_Go@p^q6lZx`=M?6^|Qt@l!6%s zyz35D{n*MbMk%PQ7e&5#nLGHh;d0rSbq~%G@b7$!oz%zSHx0Xim1ordi4dbfQ4wbf z5hRIhxn^1q-l9z=oKs4yKb87m+g~S$gt>NV^wC?)GaunP0KwwdhxyIG)n7Y!SmsL3W?Cc#Q^SsL%T_x4@1^%;WnQOi?C zt&1Y8lH+5*-QnYP$jZ!D@fT2zoyY%7#zvdJndQn+{ZX+uSO#JS` zuCv66tXg6AJwPm|5=+*n@RmAS5VkO&Tnl#G`4w40*>Um1BkWUCxgXes8<;4`)2_jScM6(2)I8u?JQ~)_Yk+4yy?@KLe?8U zqv+E8%vBGb6p$%uGB3k1v`J^3^7N7XmbOwF8ANJRT zkwx3Pru<$5Q=cC_TrAI_6Nms@FGCSk43NmJTKmGC<7puBg&R1I$N{`6(@%g$D9>>> z$AK$_(p5-Ih%&?wBfux@^-41HmxUpX9g=0^Gl-v|UehJH`AkU^1 zYHmARvbaF@*M3&12e2QJ4#)lS&H)n08>i{w`DtmOA)X0;oTo` zFohjny}&;C6XA~S;+{(lL#4QGvt=?m3@#zK@%Rznfo7_037qdXDm%?- zwd$@VYWD{H;=0TB${(PCQ*(n(+vHv4N=0!nTh2tNJH~a8hGk{96g)kKA5w(Md_fRl zNH#0K#eUK_lI{Pl{L9Ge4T?V|nN>X|nO>h3ciWLJa@-Pg4{w0l;0^ca>&N;Oon1&b zX{%htb4O><4L!>dN#JFXZRQ8>$FCYrUHr|Gp>H1i1L4t9c;5<;eK$yqYcY(qW6Y3! z4k#d9Mul0O6AX`6JJj{3$tYOQs^oTy)WJ*Cr)b+yrbtJn8NGE?9S2Ux;-T(Mu%6JK zYfiCFeVE?nHbugx(-D46)h2KS5x1@WsK7vRBRP%zU!e>01C9u`ctBep6D_L$tsF(& zwZ%Q*@aptoMrSn+C{Qe-GTqO$zXe-1+lFS(m)J~v=Jug4~Kwd~=-kYBk-+p%=T z_&&_#Fh9B0Gf$_L(%ymcwRYJ|pcY;_-RovqSu5Y$_w?3{vkFbwi9(F*-}9}({se%P z8WyP`-fe#+FA0Z z1wz~WeynR(6nC6E?){#&;#C^Wh_rT_VIv}3dd+vlkmiXiv5T*O=Fgj8GN}mO+XxaT z5_q5_w^?BWwA$DS6!X@KAPt)ZIPboIW`~?ewvuYBeAj(3&)6t{3k3kI9u~$8D{S66 zPr+-AE_9%rn96jnxU6=w{6QuA3w0*7&{t`#YvXRy?K}=3&Cl5*U_B?RJo8*}-6Wlv z*SkT>z-`#|MHNpweFH$G>~QDHhcA{4jDNnnV2n;ag=~|>O8p!bHlxeCdBEZ)ZX=sg%uVdaHzDjI>_a#)pgBrA-{&l?ryf!R#!c|PFqOLWx( z^K4?O4Mudg9$Y(7sLHw+cKo+1^&JRMWUy>XDCPxhqtVd! zX0WN{hshQ&3}X^sD_;Klv$#NY3y`5qnHEj00)FesX7E420m4G_3(?zRAxoLKHN|4{ zNr9b_H#?8Fk5X8=Oip<0!Ym?)?n7Q%rWivIjFLM(Qv zWQNG!=9X(b{!W(XOQh54k7@XCs-=_tYuwDw5#Dq-ZH(ZnGmCLh0ytPD;VVY<{RN*z zqgcr2PBU5#rXzr*k`&J7KF}Q6%EAuV1h%?VA#+0Q+)#+Mq0FPDZCnUG`J=k{IvfK+?#`{T0^y%G2+OqA$jSuA0>-cCCa=xxs zyjs9_Y8%)HiYA5E8VIw=a@*Tj4!-65y)Aq3b_Va34zhQe{5E~Da?|KK2#&zGh4A<} z%wu#sA-YU7;-AFA8hds~y-oG3BniCdp`rP|=>sjDKIfzRK)~E+dl$>JNyet@tmfGvuC@O4?Zlh}Lliz%?`Mn5Mz;Rh zg`&Ss75|=}mMo|CV_)jq=jg^rLkB?2x-gSTL&b4X{=v2&`KG848=gp8e>nsW z=7^b`?mm(ts_v(;o^@8i}_ zQ0YiH zJFUMVNVYc2ON6#7#n$xY#dF9~q|))YeE2y)uz64sMtPk40si8IvP_nA1F4M`=`0xZ z_FM(v9WpG&(7eIiHSlhnK=m-5WCL_c;y^!WNbFg z>hbWBe?c$qYU6}qZDL(b%e!VS~iMAzJGTxA%NE2_rJehI_lJR>PdCwOo39*ee_J>w@}wV1pCOx0eD?Z4KJ&~+yPq!1C`2F z2F>u^r>HURsCQ~AGE?OS^CE(b;e|sneXbg(oydmboq;tKcpXS^?6eiq{g6&Gg== zmTq)!R2HrpfZ%7v>gTw-l18Thi&RMF7}cigi#{YrRN=G#YuyRPK-Mplm%Ywm!s0G$F)nRXRG?Q0~i*(C|fc?P1fN7keBqeAst z+y?+&2`xeRz(!BFHQx*G5vd1v-Xwxtcp(f^k5Ut$ytKi*eL%4S&j03M7;gopK=WPz z*!|)|@V4*^A+c{C$XyGQq60)R+8 zvH}W+AmT8FDjn57e+yM}4oMpHOyCw5^78e(JG{m5c~R}d-*Z2l78K+~^}76B!*`lG?RLWaEt{pA_9>2eh5ICYmKUw=y zp-^8l^Ofetdhb&}9$MdqE|#9EOplb`^UG|C&VG)_uML|hR34}mD!*SxN+kft zmI255f1g_cJ$iYSe53|6954U=7XvI*gkoQHG}s%+o^3n<5ZVLd=f_%aGrn8V>z?zy z9QCI$A9h)Z?3z{QSwS8$Sh)dA<8JGx$+HgxBP3d%;)W63ed%g8`T{ry<56Ia#-ZAZ z#|g^*xRI+yS7D?#6cT+LA9MHoka_41K!O3R`Uyl3`xpkhHL7l_b)?iw$*6Fm9J%*7 zB$b3kdxnJNQzc&mYCcw%)u$+omktv>Kp(4I6sIia@;>(W2x!>WaH0}%_iB;Z&+hXA z>QGSnz!+g9;Kz}_z1xk{AaXjqZHSAI^Ugp0HNfu zWxWgCF*mRd9NPB$67lkDqx;}??((cbwuJ^fBmR23NPus#dlg3uDDXkafb7Iu7J?JX zv_#rn>bT3`K$jK6-oPMsGM@4GFRB*s48EK;4$x;oVvZ53x50>LZxFAuCbdYiZEaNi z0TPt~?nN_LCMkgLp2;{!GI(YVCacP%XgX-;juvTZT80GS`0m;DY+UZYeqsfE<$&zj zHMG@Uya-@daR54GW(ghs3y^Pzu6rf`1gQsyzyd(6ru8|#o*lv+cXrXw7+VS4aad}0 zFR2J-Q}k!PbRTbZx2tK9mk!gBtuOL5VE-D(mU0;aw4DEfd%g7imklk5+qLDkZV5?Lb1qe&f2AZPnSgwP8u&(JbSG@%q42ix@0MA%CTB8bAdQ2j{0s1xGg<*mtESf z>Ls5~U`ki@YB@70hB>8e%XZ7X@5@$|3zU@m!`Z#loY}ZSLdjyr#p=w?e3vPn#nHQ! z0ESqBldjD~Zd6->9)~$^hIW4Y@UOEn;TxC*u|FT`0Z=dtlyPqTYq@m$uAlQ(v+-^V zg3^?Y-*@xx%8JJ?_-Lgi^U9}3obNx!dV9134@__2E<0HfJaTYCs@*XKT;7K*$j9#i zMmTyHL)?iOug1X)O2M>s{MRhMAE)pYuD=iVfN3Fv=N)Jc2c@T{Aty^R>8=FS=NB#l@jpw0`=O|=6wzT0#@iYUJ?TNBj zaz)XmE$!O#XV^~a#o@w}&t!haHoC?;j2BZ|m1hGMLpMg&`e=C>t){IVd-2z{_kV`) zW?PPUl*t;;pzA*%TK<|aP~7%U52167$pXE4@t6X4n=QXEt=aS286AD^ZwC04d?$^& zJe7;Kt;F>)@31sRMLf!uXZV1Zn*eaL2!~1Lv^q$PfwkX#Wh>Yoc#BCvcDAD(@2?jk zF5oOMQATBB=rw*Ucoe68pm++aU@S6pgw_{-9Tjn?@Oo&FaMR!U@&U`G9y%RK(R8eP z_J?+e;pVo&BQ^{jfAChve(E10{9!N3N323kM*vF^*CquljX=fwE=t>ItfHe6ffBDq zUJ~ko{z@^W8|t!#TDI)+Pa)$LcE(n>90`ftmlZ_)$y`omR6j|_o6RUHH}ypxm8#JX zkeLZuM8X4%-k#M@6tn(_FZ|clPf?cQYU9YACDg}4K$!m>)^?DbW`X(cw%1G|(njLS zMa}eF681G5&#oLh;*X%r=i-J#79#V4PQs{J0i3@rW%oaj2+2}IjQ59F1*oykFv68T z`v5#^IpmjL+5Oroe!8I}n4Zs5h%pLJ82OoLZ^Iw1v+`eiS{TriIj{{~au`a5V8D+7 zU24c8k_fxIa74S>Z{Gu;JVOh`7@w@%#D)kG+qdQ4%JRFQ`&Yo~ZGDpU5U#vlHPi_h z&?pHAyrBkvz1?pwkW)pm=Jm$vA`xAp;M+Hv^Z9_22cqVlt_=gJL{Qw1`nd@5mk+&bn-! zl)+q@0_{~B@!jYBXecqkK|+_wB-*e@*)zSBh3Oi-o>WCv245K z?ib3#ial>W0}deb2uh7e?pXbwqq5!st;iR3?EjmISpSXr0wvA&(|S2Dm1B7SsH5bw z?(x$KG*Nb%o?1%Yt?gyTP#jiRL1(upsia5?AZ#33sgn;qr@k7+Hg|=}7Jc&m54_%A zMF^i@MuG4bq^#fI&!aD*7+?CWzwF3gZ@8DxNO$kzGm++fasRMLQ4sFj`JaB7CrN_H zON5sIYUAUOx;V z(7uTU{%;rfj?sdZwyk5~$+CS(xh2Ki z=lk`73=cvLEAUqsIDh^jvBTp-6Zm%V3FGCEp<>L}uXA+?XyK zsJ~LS#@g?m6@}yf}H$d|& z`VA=$%Xv$VE7P0L=7(s7PJVX9GYha--Ymmxe>*~SB%Iu=uuYE3Ut(RU=+=gUPJ3&? zfwj}%gno%cxbE`+*f0uE%o+~j<;h@*Sx1ZcYX zD9qFt{baj2V=>LTb!yDkVV@#09Q$La<})~1+>iqM_QrFn|3ZxiaG+WCO40($)J&fy zsL~(R?WbG49<1DAl{|6%9IpZUxxU9l?(GyC(890V{cCGE7D3E;*yMJx13AjRE3mgu zddbc{bl>wZG?+GI0uz?5BqjnjiYn|3A5KAVC`I#hEl<=OuBV33*5~_!Bkc|eat$;r zwHQA*@!8jsN=)#+y;yqaSS$l#Ifc7q9EQFWDK~4sj^?WiU_+L!c8XaVv6LZ;TLV9T z=EKk6gy1wAiXYO_EI+EtcaHs*IMN<>r46(FaOtj|uTXiQhcWn3^O=%0#iv0=TxIm5 zWMwNxfgTi67lB+FF_7iTq>#JWhxkWb`WY|WX?0MAKYM(PPW2`Oa<+$~ajI$$eK168 z_1YH!&x*SyyNMh&hYml?@e<7%lIi;IM&Yn?&qFCivCC{XIvg#8x(IkPj?cg_lqS&M zlZ>x7uQMbjv)0Y<;8)_DDFDhWs~Buoo2w>Oig1}%)~?Nv#QzRE5w^c2MQwQJOGlZ| z-@y%c?Sdpvlp`Hkb?}I%6bd8+KlI8qD?7^qbnQBj>N;$f8Y(H`aJg==xW#|tN;lor zdp7bu4W@8g9=e;3SA|)k98^{8Vje2+qh`a zE6JGrK=uZN(D!nBI|;`DmdKgvj~bW6Aac;94+-xWFtZApA?Q-3R}iF{lgshGOq}Jq zrtt_owC7%_2|VY0&0WnHzgOGK)cu|mqz+)`V#!4nhjng?HEorKI`8p=F&sN!*vI~k z&|QQ%%nW65R}K*plpC@XY2INjWS%$SsgTG3bHv9OS28EnOR|mzDi$L4tX+sWx!H5W zEMf|QF3KA0_U$llWbiSHf8VQ{+co}69~=EOGMk0VG#e2n+0=ZRTc1Gau3S83i?WT# zT0Kspk}mIIYyM!k6Y5Zb@@PvLju62XJ!q2ockbG07w38>+7NH_t>CsWV{#KB z&;qCMUF+JyASVlif>Jct_7DHqql>f;Z1~cJXi&4=zAb?hn`_nH z2cTxK*BK}eV4oY2H5W~(z|G}P$`>fFC$_Thu-~|hTLvHHn7%^g`Mca=HBWgo8Y6JQL*PXDO|skSJst5 zLC5mf-73Z~t?OR^2aYf)Nk;MU>+F4W9LU>lUR5&OX-D@A$@PJM@K}lLBm|zAor4;h z^JALI|8=kV?r7*VtjVX4_22nlDPEOj)x%knX{{G~XXS;->k$jon)ZJOfF(c|4FRTiwfaraJ~#9Ln-WhewcGBRiz zm_1=j9*7~`a5gk-iybUdYS)(n_Pw$MN#_t8g+DuAvrpIV0%-p*1n4DcUoTyP(O+#< z>*UuSqd};G-(~`1B0HrA&@+6|U#)+>7K6z=`=WsGn>6%KZS9dh3t-$GOZWUb_?Z)~ z@z+f;{*xe6AyxpsbVb#~Cnc$Js99GW=INriNu-fo$$iY>C+P?x@T@HF1{U7yg)s)4 zTek$lJNR>+J<_~U?J4lwzOO@oC!Dxnpr@3#BtDZH#_{Wo5ZA2Z4zIow$!9xomj1-% zgthKXpuaiT2ygCZj^jqOh?F%k zmui$+%8BTmFqOL)M53`egME%Vz6)LX+O53l=k!sQl4bb40JcCArbZ6qVVFZU``2pI z(Ygc1HGWVyX`-Ij$$3**uj6laOR>@cqV^am*>4No#s|}HGJc=@ zoaNxODo`2t<+72gT>3OOKpTql>%awhxHjn1Csy-0=^&Ds>A1mRawO{#asAKVLj=2% zS4>&JdRbxUu7?4e{>x5w}Qj)f5Re5W|$b^Pe2Zrt;rv2qj+R&R* z&jT_oaJI??RS63N5F}MNbSF^f-Qd1c)!*uW_FgMPN@#h2_=REO>+1`TEfi$_!(dWf zb=TY`|Bn7wzO#gm$!-Znu%t2&3FR({t>5&sN(GKtP!Jts8W*f)h?(8~#K%T;C_(#Y zc1*E67o+9{Cp!fBDhEvjNc2!I#)nw3Kn(=vg0XpntjbMhMujs`#?PF0ayAEqOCH^C zM>Uz&lPI=nf0f5*PiCX4Daz|l*9%HCIXi!@Y5ifR7Vb{OB%9N03|x2(jz!mpdMTw} zduWB8uR!!G9|CNzwc()&;XDf+^`6b!JNcFO5JY*6 zA+N6AtO$K3;-fg1V<7o5MXa{z>nd~gMNB(}0_;uP;gLm(YWa_O%Nvu1{hYdd9L;R`faYyKLi|y43K{k; zfDA)%TOQk{yHBHUQigM+kwS9D%OKveEEafIJ|tHq{vIn^mVE>NJF)to_=gW!CiHXo z#MfzCy!$iLs`dwvn7wKqCRv)hq!eDbkLUQ4V%a|QeK^u{t@$|TuvFJ%W^a@mq#gKS z2-{&Whx+)fN4Nb=Pu-7S!J{_NpX~H8 z9K}hvgvDd(4DY$TJM1EJpokamS*+P?$c@l;h{rr4dLnr@0xCHC?Yrzrc6JQryd2S( zeZY5_O8T_au4&MQUDWV!U>i0onBn{)v04wx>ub3{a*9Od4u^HN4hN#TXtoZ=;ALBu zeP2iLs$t5KrwUHOh|^%`G43@BVuyFfBPvc}(y=2Rtrd)Nj$xdiD>}f0)xwp7yq_?z z@h*X-9E&`W*Ik$;RMx5dXRM#-4&_H#DufxJS)~vZ-}S+d*QmL)(w)+H6kdZ))9h9^ zA5@|x9jG;=o6OFjV(Igtt%LHgjwUxIZWw!+I}`Wg^&2NUsWB5@TKbZMWhCe2INt{` zpn8I>COiK8lm$cbDUN%BBt}f%t#aF-vdCzKTI|| zYq{wTHWR9-v0YsODJsTu(Jd0%D+T4xBiUn+m+!kwhFKza;rxDRx+~s&vlFTB12m<) zWrZ?qG^yj>p7=M=HbFQt(WtuVOf4nRF`4Omzp-l!vSnqg3KFE=WVLl=fJlV7{w@?Y zX4y+>R=^{o_Eqj@M|x<|WJXj-6H^Wg8)%Ysg~ZV>^C~nW-e5@d$g400rt_)_T(vfQ zq{g%V`(|^9+NH|36 z3gVhWK*5ZslK5fFZKhiIX&A>18?v5Z7ZW=~7?d}o56DTw}xtVh8R zvJ39|q4hgSNgp^z_B^-%K7Uzsn)FTlL!h!53f$Fuc+4~ox!5Ww85=0KVw4@PuC`%! z@FEwP_{5dvyo6IWTOBAAH3vXPY|fcz!H(Uab*ZdN<=_)FCCQktM6OgGkS0RjesQ9s z`IMsD@iXM}ekQ+TzMh0#;pQ!neOfo5ljt#2_tJ*5w|fQlOX_cuG-v?cMyuphAEx`b z9zm_9No<*csNf4>)apm4J-Al(r5OuClYxG#C|^Vh>BXLjck%_)L$dS}ctB(GJ?F`HAfVs-8VLP< z>k7w0Yy*{}(0+3r%f^D(FI&A_O0YjWd$=#U(Prt6!-pfZFJOEfqwJ!NjcUUxp_-c& zChQJIFEQ~gY^1V?p)Z*h*wQwmbTCX0 z@SWrX6AQUkJhf>@;Qa2y-PIUJv$L*e27SakgFAM%i~j7oou}zMzE7(b3i*io8_38% zThdKHO6oDIo^@;^L%G`AG;@DrD+FIfcS7Od;FBO{wOuk?7>tAR$5eJ$7DeLQY+Pn)=t+$22PPSmatbaOsT&qvoRYiJKp6S1- zqB<%?T8=R+iOaQS;FR^U2oeo*$Z6kF3D1KL`ZYmlf$2MEp%5V`COcYD5-ysB9L_en_v{)U~Ll zD*3{$+NM|Vtbc9D%!8bo;h0G=P*;FO9Vk9@v5X%GT6vhfGWNT<~=_oBy zKI`t`NWGyAvpjY0ur!oQh@u4V%F@aP$ba^CBZ6esD9~wV=SO3yx%RhHsH?uLnt?G~ zS)>2^-uBDD!$3)(LHn}Je^Jfm>v9EeoYYb?Gu(;3!h5&l#YklNvMFugMiEEl_ojX* zLwJ1AG4LAuY+{35G^v+6VusH6vQISNmq!aJ0I}ok*A9bDe~oDymp@5*e}DyF743ID zivl|V1O_6&?ZMg>YNffxI)|J(8+N$*X)9Gma^~-O=QWmq(;g);F);+qXr@F<3pR@c zR<$2>ggxCn{I&<){y&dMLa!ai9jP%?L*nu)T&3jNQrntD&t!7J{d)wL3}e!AfB3`8+B0N^yIfn)!J{Bq6B^4DAG1rhxDU+TAO(Z zQoa4^g{;F6uNNhVgx$GVa0zVe~rU!0D*2IY|l zLBG%1CtAHcM7g+CC*rLPy7}=_z7uwHyEf;qDl(T5zmX3-KG^w_!I{kK{zNCAcuRHW z+5`@jg*3n3h}&D}@B~^6Nol3n?;6DLT2w>`7HgOYQkO+{{p}uoKsd@~mt%aEIXnKn z*x(LiEK0Jz{BWLQaHQvlP7)JejvG&~{TpC8a9ZU!!&%~egU>Gh8w;``xj*%=fu6uo zVW8=0hjDW&c}GFN(rI^+Bj41=Fy!+QRdvq#>sZHL6B13c$+U57+;+>Ufa$hwyC`Y% z(`EAZX3MFNB-B>TIXdg0m+QO3)79())%>rQ`dj^fN_Yx1=Fy5%Pk6as%k{65|4k$O zy=)XK4?Va!oS(EQkdNouZ*B3ose4&3+bpJ;p!${Hg7g?(?Y1{YWSvTEyp#?hrS@{& zfaK?hU+uk7?;EJiOvx`j=8;rhLYh`%U^1?^ET6k4$LgeT1~8TTB|^Pe{7Q|hjD2^j z9s4UO%+ooO@Ojn(7ozwVX&vsNqmpbWep1pqV>9UF-w#pje5bqXA&gExU%4b zWy3!~AxDP-#e1Km+e&pg-1B`pyP^GA!ERb2a_AV#FTUcx^{P^&xh) z0l92CTk19G&Q4}ntMQpq;;~bSPH2=2A4^Psxbb!r)<+;*MyQ}Rrxd#jbgiG(`K@ z5Dq~=mYFrL*Aq}k;Tp(5*{k*MtOf!$2nP11KX#D2g8oL-KZ#Z&IeHv4DnuaaGM;Kf zyAXUzSb7z^+K`PvfZ|(AT9zgLLyG#X4;7cw%d$-(hOa;1nOq}I{{CAaMI0F_x>Mi2 zzvY_t9_FAtgkBNQO`-1oC=^er&^U;({O#B8=ZyJEX*1B|bgknWX7T=0Ai8pzjubRsqxb-JS)T!;CFD=gunI^Q zJR%0kjCcU@{OUej_zw?qmVW`bJD}V(60CRP%<@fQOX6dJTE>t>r-}He5Lx;fEYlE~ zTya)0&4Z_L8#y{gu8O@o%c(-}Y^X0*pi1Zakoqv%Em1`LV`#Vs21`FEgg=djxab+^ z-;)B-;zaFBtObNP;?k_jgO&B+hjSV39o}@W`i`lm&;-m9CfG==3XJxD2{;#9%i?m! zn}txh+v(p3G_a|>mak9+#YIJ{>0>LXe<-kvRQ>?w^Srf#Vv_zsR?V6DZ9JSIyjTWE zf~;o2X5___4dG#1pD}mgZkQPN{AnH0zlQ5GO`Jig1MzHt+X2@n1sT6pxrpGfKD9m7 zXY8M^6sfRP!MU7Y4;)4*5?8aFY;cqYv_msw@1D#-#dD=O}FnEn=p!xxQc$R5g{m zD|y>qJ3WrOya&PY?4RaMZ5LQHDgaAgvmhM%)phdch-(HpE{rA$9E?aEyEy4IkiFge z$jaqFNGfeO0w;A)nnn zVZI`}Q$!3T@+6(TlS+dBOq(rsA)wVqtc`~skz$$;C#jGaiK-t+O+^&3L)>9-L9C@( zL?gSx{|>s_)DdFTdx=W_3R{RC+w#tzf1xH5KGad#yIo;q3-?(upbDI?{h)Vh9n z56-P422T+u-Yv2Z5|U$!IAtq6n`!^fAqtC92zq$2135O4zV4r_M5#SthI*sm5rEo| z8w&Svs~C9_2Evx4|5V{qA9vqi(z4!dg1SvjO-BGm$p4HMm}t_tf3#eaL-FY<3aCFT z9YcUK^83G?$Uoe(n-S^bQ`M|rl`LD(F7>;U>iZIP!r5kc=5@L3uD28u>9%&U0WUSm zlf&AdoWd=Y8Ux|AT!fz(WCHiz@f+yD@6V8f>40hJ|L!`}gY+P*$I}l9J7!WkA~bWJ z=_7SPlGd(}wnNI)BNqZI$AXbVLoaHkf>evLbl+r9eqc~!ac>YJs#i_W_`eGIW^6_c zTu8V8uisbMmEDN^Dvu={rnmD(11%M885n*fFux|fOr8P*BZ)nLBdI!_E&MWbA|`}R z#3_k@K{{ej4xBM1Ut%@GKS2iByL?MHI^G)P zV=*1o!cfQap$}j;)&NUn-5Hj|kvsY{C9J-UGwuz{F4>i#ceo-e-S!)8oK|zRPr5HZ zul0@yfZ|4IbVtTPUFYZ$H~el75pUhXVoXqpv}j{%`o-NWA;c<%b@qSvQ&yTJ_j-o>fSola@Z4tq^nwkK2uE1H-d#@O2R zrpVH+L%*9H&cg;yc>2tzG7o_ugkq;(QR9Hbd*UAL~4+K&|*i$XMFb4EzcU=u* zy0d8rLBe4qXW9Ky5cKU{57?J(gO7N`CAC+f?>*4M zsXpvR_P;IJKi6)A6=l_;7|_@r+QEm1EzqX`!5wH3SgPGgck&72`=971b#2 zy9eCNsO=8w(E@$zET5fxY3ywc+U`pJVL#F{;bD#zUOthDM}#QVeES6k%h&dYK)V5Y zBxbAd>3`e|R-EZ2?SB;@0f9v*pR6zU-wxsisiO>Tn{SWVE3J%dJCU|z9V`c z>nZBj`aFDZSA0+C^^X>E-k)l;@t0O0k>DlGhl?@3$V8G`fKmc%*C<@M`$yo;c70g8 zXWb@St7Vh{CBh&C^sDBbt;d#FRO0R0vyOF6pk9JLIQaXc%@r$!!n9}fk9^M3>*+a z*D`t61Xx%tuaiK&`9}qJ3B3835kj@|A_F^tbmr`jO*A8~of3&=Uteha^d&>$*WPavj{v zinZ*mM(-5-&xC%0cs!2lvymbrb==8)F2vgrtQ7*)noyZZeuu!wh3dc?anCq5+O}vE zd<~9hr2J2X$8%x=_c7xi2DTK)+3roG-SW0I{D|Pt`?wNsq7rWiXd}p5An|?scj!pY zf2>yCG3Nm55MSmH1euvNex$wC{wNngZpp zw0>d5hEjBWCf@J()LsGj_|2C`mF3i^QNLmpf-KJTIj=iZu3(qw0Y4uBVB^7{>w+VB zJ`+?f|IrLS(@oREr$12D5m?gI6z zj_)b@I7o$&`Yzujw=zdxb6D-Yu;`_Bi=Bpkzo6HGRz%J`-vt~a?8cb@ZUFZ$`S(Zh ze$0H*vo9M|FT_gvxF3!-~j?TTOwJgx7kk+7|yf?6$UOUt3#e5DzK2Y9P7 zL0UmVi}YIP><6<5zyh96X~H1T_GQM-oVYKiDu$c z`yUs&qYh%8Zu)`;hhV8M!^$c91bHTCYz81kuaqhYgFYZqE%6qCOYP25!IIQ~e@ySnN zcG#VO*SygI{=OA|hQ|XYB}v9w&fdOY?cwI<^cRq?me4##I{zwQJS2SK}67=3P-=hI-GcefC%tce8SDinl@9^kk9;!GEqjNnjzfWd^C4jxsbn zPh-l$(2Z6u>lP|viu(V9dnZjFncn*9Q zvg?C1{4g9%WYS#c_8FJFC_{D^7ziS8?K65C0kiWrdpZVG|6B>!4E6OcbRmRmUQ=6s zP)}AZd+n?dNM{6Y29p$p{R$*=fiHkB&-jjn&(Ub<%~76dE{0~NKK|_WKZ|~Rz@pWp zi^Etz|G)UgO_8GqZgsmIL^%J(GHDA3QTPq-gQ1|@K7JbI5=F8y-R5ffG|oZH%hZ1? z5@LU&Q^yvJvw}nhkKKvDilrh@&#QyB`3#?KPfuO{ZD{)eq0V?Y@)aW#fU|4W?e0pi z3f+LhvdYDxT`$RQ6Wjr2ntJ&qw zpawGxf8^e zxhBxQuD`=JF1jTGd;Jvz3&5QIZfrnLTB8(iDTQ+CSMMpk0J1F7^lkW*djSiTVm2rfiAK_#`y;5QON+-d+g57b8;Spg_9O=Qh=L- za@rn3?#3p^^+XB^C;I0~q~`oKfYk2B;>tvc%}X$Oj7Z@#Q?2i4|7UV4kk2Na%P^kj z86%K0`04K%Di^si0Lrk$02gg9TxxEliLuUG6@6}b&L2ctD2*~Sniiu@Rii2x8#VU~ zxWkS1X8nprm?)D1^NY;JQ`}CA;iE}-r#63kVr}LY*;$BnAq?tK+mJbi;3!k=gJJ(rohe}b zA?Tyh3KUC%hkWF<%;ZM@l4^t==>mT#*46Si5O5{~H!o)@Kk3vau(9@2)G~?*JfB}e zzpU-n@O(0S#l}^FCyFi(O184~O_*)$ zgvT-Xgmmb@?BJ=`>UJ91|0RS!d!5~7w`?U6sgnD*YXJ;G45?2Bmma+Q%)Ts(<|7D+ zE}Rrkj5rno$07q9T0kiG0HIhW7ikL8$-Z0EDf7`CtdWy=f96C!wu{S9J~gsuh;tbQ zmXGVZ2fBo76~mG(POBfAr$AdE^uN(Keq_>R+T~;Ak4% z>Wr(l`@=A&Bh~D+8pm*w#Zhs^Oe&Y6P4OAHR(hp{R{jRN(CGOl&Jht2!sEF&T0azg zRP*P9JO8QU8o0II()|!JM3W|l{?5$s6B0CVzS25xAYeJAlS_=5 zLV+XXnYa^qS81H8g_BZJ--@GjqzhA#_`zsqD^Gm!LQ+Hq>+?ai8i*cVUy?X`MaT!dYLk}ysrd+IP4R%b1~@4l>g`;`1!GE~m6s9`9b;-PhJ|abI|I5a zn@=4^9P+~@%*~cUzdmRnRWquDI^ioSZ z`JTREi8vRxx*-+F#5KJQUrGQ&CL~PUK*75nne^CR%=iS)OE&EXHy5JtPSUBYk!Qz4 zsQXea`A;pz#>?muH6#-alE&#_>AYHfb5(EiFE;}A=>bDHQ6!*ejO^u33f9qER|t#j zN-NM8@fLWeH(zAgMI)rr#`S`7>pK4#iHfz%#tvY^PKUEsh&Bf>FCH#_Xq{|eykbhE zdU$nPFy9)u1G;|U6xgo<41vurKsTtxUPPF(yAEvWd%v<`T2W5MM#TW{db^koao+!2~}0u^FJ;U$#hH{{*&))Xt7(n zvDYH6sNHm~lwnFZZTqiU%vVQw)cWQ_^mBRwiho|n!Eost-3gVR1tZ<~t~{7i!?*~f ztFwQHj(}wYz&jVc%|}pO>Lmq#0ODqnFBTKFpMDHT;GCbrE87re&1`yR;;g7?j&ayl z;R6&h#({s{f%3+8{BH642QO2j+3Lt#JozYULXTFd zr)HyV74!gtb-_NEPto+|3Cx9X&wk;qG$6WLZy$TtyQRVAq4v&*&gmrXe0A}Vb?(H; zLG&L$z>>%*>4U43H{95_+g1B;zqj$|3FbX93JEmo8wPP?_5P@%7FD=wyEJkNbo}N{ z_77=Yem&6Q{2gATDXCF->9l!t8r^fmqPiK*?6VJ$|43AT4wu3`FQq{Y9a7EjQ-RT? z0018xqdq3}&d!n7DoeY6loHJUb`oLi0uPa>u>W7=zyEhHy%o*XTiXyc;SX+eJt*Ms zvy`G_^(UjijrHB2OISV74yo``Oa`S_G;rZ4Nan)#R~g6B&G;Y7pwm1P?-_Q+whw%f z0eV@`i0(OvP^tJmOAO(-X~T1AXx$V9nh zrU|E>)^ku(xZWVtonBR$##Bh(>ih~4ckHNVpYeoVOq?(WGy(nC_#wJDk<{C?q)A542RX?Pnt-xCeZM-FjVI-s7rXFTTvJ};OSZY?+AzDMWw zCJ4+^Y}ZGc1>kUJ`@VDpl~Cka4&33nS!z)wNV$+Pe-NL^B0x1_{lLYwq~%D73`iE zV~(1{b(Yk}Q!*lW<1?@1#s0-*JaZwvi@DaZ;UjQ4V3*6Hh=xjoPIDp?_?q(iayxsUFH`K4 zk>?_j$K3``J?QNN6F0w7cJ!lRIKWF8norzIH;0FJOdIf}Os zFk(Ot#TXonVq;ZPx`+{*CUakBy*VaGBo`+Cy6*_#Cz0@2Ys{eXzFpC~qd{r{@)pj= zZcnSd*!(k8(Vzj)l(JB%ExU;P@%eVm)oSC>7l@dr@ltSfR9kO4jgI%7LaN*{7hKS& z0n;0TUJ~u$Yjm42JM4$peNZLhv;Epah3<{0J|{D^zD9mTJq1GBH6+&Gp@^uNRuiQS zz6J^xefbN7dS8_i9L-Ax0bTG(1O|@ge|PVv5@@n?njj|)QKq9mvfBPGba)a09-~@P z5ux>2&~YjG5jxSFEQ`bXic%~ENMAa}>ubHatJ$rIC26cwW`BfF?~E}TJlshIvgZ_~ z4ca}e)Uw|!D*kuGhXGnm^I*o8iRmOo%ZDV{-#BWcEjBBe4gIHVO7ptP8gNjbr|wUN(L2BHI|HHhy02=EUC|Kk+r~ zA_3tJ`LC=N@jyi1Y8}dNG~(+z;<0xqBeB5XSWjz07Y3?vAm_5bHDS zBmPY1Xxj}tbdwd51KqdlI!jf@G>DiOi82%{1>LBl}+vx*D9zUtgC4>WVe6LEjItn&&x8DJ9nQ$ZhtxoEM?*6bqe>Vp~$n z0c8nDUF%rXB0qgh5bg9{R(WE$U2GAV$(=Fjp=WG6GwJXi>#2DC(7b77c)VW|MoQ^wm zUo;DM=7R%2jL-c`x!9vZHdWESD;O;eK$dvG?qM4K~Vy2F<6iYm+dB}7b{6h*QfqB?7Pu87)1~LE$+q{ftWz%Z_^^>19ID8eEeTWn zUD(z7mkx$>wI1v@YpCtf%auBog?cg}ya99|nR;`y&V*nQr*tAsO%B{ar2djCL(a$u z+;R(>r<3+Nw?LSt0$zaa3U01c7*J0+%%|1UV*IDWQI{<-8p-W0KxW zZ7ggdGk^uHJ+?l3ygsKbJTV)J#Jwtdx6E>I{$e+$m?!B6y=|y+r?bCOtic?v-&fY^ zb9A0cU~bfOO-FA0I`N3RuVkl%&LIgkFnX&{rm7LT)zVhC>BaDSTdl{sF zY=)8$oLFSDt6yF2PN7N4OGI~L$C9;E7RZ3;+TF6gDwT*lmbU-3WoWU@ZyLy#5?riw zzt7TcDAwRrDGf4nsh>QDCqfQz>5{m77`i!^=v7=m<@dS{^xCEqaz8_}ev@p1FHRlW z+(qW5;IVrYXDJA0<%G?ZO|Z4^k5aZ78ets}sdFxY9CFm7M!!JMC&!UAEArU#RW{Ms zi+$p5Y{Y}K4q+S(>9ul-H$O}C>}PvtFS2;Ia2(GMCr9i?JqX3NkrI|~V+JCm;**S} zOctPA%TS|{dA-~yEpU>50cLM&C;;X8=$w#S4vVtQXB9+&FnmE1C$AySC+16;X%d}> zg!BrGnow>$k-Ir^xc9veKtn~VK*kL<;I-!Z+>YKo>a5dApJ{mEm+g_?LEIO<)e0?v^pka?>@lRY8BqQ&w3wCTh^Q~KIEpna5(7N)(pjT zKA9lReG`>5C$IiXsPj1?06M48I&e4GM!kiozroAr{J`$-+y|fgO_qe!Skzm_4BR6y zz0};}d9<>J(W5$Kf?f2PojMmPh={dzhzJNrV7KkTV7>Q!V!h;7LuTbEkmhbUozRB& z*_&7`FK*|~e)a5o`ZQxPSGXjyNg)uD+C>ldynZuj8^|EU8ZPc7hjoXc9?4b23Be z=7Ea{n!@Edq3w8-X)9Kgn44{{cnwA1Ig!5E$)zQ3 zsDl8GU)f|(kwJ8G<<<9q{o5CVUAh$vPH8Ov!{wT4gWX^fob}v$pgABlb(&-!*_0D1 z620IREpqT1k2s{YfAbPs6KP`Gyay+6tU}{dZM+x3$8p{iZTKSCnFgj3%d!WtKWrwA z=cr^dW0~I|$Y?v1SZK(x)W}{-rQ^3A?L(X>-2+**kkbx zLnK+RzG;qn>mc-dBSK1;^K8dhp5-JIuC1VB-J^x+K~qlSl#)CNk_t0Hq{nY5tgx|i zq&anXvOS3VagR6jr9B*QBqz`ii84&llVb9(E69KOc|~AES~zM{2Oo^8U5`;X-R&(J zZOyj(9Ev2u(%RlzYmo;MIR#KgJdgql>WfGNGR-!z`Ps*vj!5crt^EpolIlrRd>3_b zO1K~F{Y2H`8dwKn+qMhuAn+m8vlNeiaNZJ^aha0T;f-g98%@qW5D&ks)a3}q{*5z1 zx%2*1Yw>5KxSX<`h*OKhmdH^-!e}EC-Wsu?i3oFRhG0PX+lM`GbT}U$;e~>W?fB}# z@_6qybF_)A#{4Mz`#Rrz-&%S(WCU+&w0f=yN0pD+gm5TIy0ZyGj`&iK^*s7wG+rKY)Hx(Uz2rSHOYu}6zB)|@ z`?rxSR>WPdCBW##C&2qhr;AaA2gDZfub8;@2j{F7PhO{zs2dh5zI^f3c(oSY3N6#9 za`L-Nz7K{%d}Vc(nM28T6u#&o5eX7z2fbnpD}V)|Pj#_2a~vo^6xp~-mHbN%wTSEk zu)T9C1(~aadBL&Yvjny`DdK%YNR+2FlbP-g&ymOjr!_=zY6Q<}yPfKTph~e%pbHE> z{bCO-54e;R#o9AAO5@zv?MnT}gjJoI&V?-LPd+x#v5?eEGU*M2qNSaqDB6M_ekN z`C_>NQ^*Fycjp_qqO9HULd#x89wIrz!9B_Ea=S?R^fI-zwneQzDN=a0*@#=j!*L}c z4h8tei$Y|jHg;MVrBS79(yHugs{T=b5@=J%eV|=12J)6P%Eu_5ODRKs$1Qak`kJ`w zQ{812Zn7*X`3l>+LMD;zL!l!NLUCp^!~tcZbtB{ZJZP(pktL2zy`52E)v-8IqUu{B zQ&FNuj#^Nj#GaB5s4L*rSJ-R9-5ax|w1kU8!W}1qN7Dwag ztMK*K48vM|H{{g;#DWa%$K6>Ak{-7lqS7W({WeaGf$nv$*k&r-Hbx8kZ0k7H z>4ir`jsr{=i}k7kk?^(^n+)?$5TJ4QV6pEGIb9#@*~42GsFx^K?<}><4!Qou2+dB7 zdfUkirE0l^?{~*K;UE_qbg!lFnr_Vt+^$40S!pCQr6w-_I(iNX&?}W14T3CLEXqNZbHfjs|_h9Yj=^m=U&53XE~)!&7P%r zfd(EI=HwGWj0+z$-AE`P%$|MT(k3w3)*l)Q81eHZZ_pTw%F47 z>C*<&LV+YtWqI}6rf894u*A{Bq{Cj{{o$ZMno3-F;fjVu0P9&?x=k3IYb@!|9~vS- zTm($AR4uDp;oT%n>*aK)Js8Mnz-4^L2mW)NTxVjalJjW95h?~l-rpN^-j<9@9nWQx z^6|Y06BT>7Km8f1YSQH%vN&=QDdmB9Kky4`O)Au>xL zuEMNcoa{5lP}4Hk<9*+@PgaeO8e<1x3^MAn9(?Kph3|!VL9Zgi5XXGl&vX4wmEL83 zED<>Fn#*|!wP|>`S=${nSkX~6`{DFSaOpIQm(N#-iOZEeM1I3SN1dYGunRD=@H^`7 zU)J1mW>xtXS@3DzS}S=z18wA>f)XW%vL>4T(ZpqSA_5V|+O5tn6&l9p1h}%MZ&NWy zNb+Z^yFPD$-NUWUPxkdOTgYHD#;K!tgHVIMvh98gK!y{qo8V)0lFBJ-VwGduJOn$kWClPtxzK8EJ^B;-+F_kTv zvxlR-VeqH;_-C5tV0(nn;R}wQSIdm)s%{MuGg6b?lfj}u0isMgSEu^pNi@+WT=HyS zvB&-Hw})p)6O-@;33L2#w5QZLzs+;q#Wf;G76Id0CHBCdnc`#e>%r{Ii{*tC?wB<5 zL35D7r!LCm)v@1D&a)J&%1eP|Lik+U5=JPX_0HZB;XN0;B>&VhaM#v+&*8joX($N1 zbx9*Ju~W4i!Rx&D>*nE*Kakd=KZut#s?K5m5@CBLy~U$yBluUM^+WEdqFi(}FX zfs`>K1_fbe%^zsNrn>@3Tt=0=W7sCdrifefHmC;9*)L4;NEq7=#9Q~1sk2{LpiE$y zd*a1IM40{I!6OOBq^Nt~a<;Ecwy{p9_D$(0q44<4$sa%mDcr~- z_ma0prs3t?W!oY3^dC^s0|X53Foj?--Cl1clMb$UCw_MMR+L54JAge3GS|XlFD{1_ zz9K~PX2(o*Ke4(X@WZ6i`CuKMyQA69Keuh%{Y0XCI93Y5R9DD8Usb-cc+u;iztuDd zQw24wZyNFwYzgac_f19XJ!f;s^&V^+_t5imo^<>kly;urv*; zXSyc8Xw2;^v6FR@0%h5*J__PL2YuyFd|=GvJ;*Zgyc}eP7PaatAzdmF-eM6m`DB&a z%`0MLj_>hg3hf&-Lpt3?xyyjn@Rq<0Ps2pHJNU(9=xd>Izg}Xjk0&ts%3i!Ch6J`` zVQ2m;oY6Cfob`#%w;-kT%E1t}k$bC!k(qreWYKI^Fk$T_D2i8ZEwrb3%z0a3gJYT=yY)G8E;{va@ zY@@&h)%?&_BH_tYg%)l9i7B#@`&K09@<6hO?ni%b6B^g;x);nwY5@Xy3zc+JH;m!< zHEW%-T;_#zqtW(+#e7a|oBEk`_tRrKI{H1xu`*uU=HbQt?kRGa7+j#6!gi;>WM+Q1 zo3+@c?4psRB5Q0spNq=!F`^Y4ByrvIw4`9V(Lr~XHr5jA@KSh-NLRinz(X z#OznCUN^{04Z|q6P+y=Xf1u*P5RC-Zj~T>gg?+DHK>+1o(|!cyJOpC8W6|ohUe$Kd zeKUqhT-=9?l1+kA$k<~d>p#!as4`!Bbfh9wx#8vRn6T{KBxrRarEI$Q1Z z5G0uW>yXN;U0;Zn+`BvKV;Hnq@VeF10l%PdaBR`pJaAqpcHzBX{neh}OWz4sqY^Nh z3Q}w=p=sg}oqLCG`)RaxHN4$weg|6A1-_wq?&dg8Zj<4NV+&`^%v+n*%%BrTF;4Wo zYW+`eo(%NsO5PGd&PtBpU00?MziiR3r7B%9Zr$5pX2c}l?a79lve?0okq*tVq>Md4 zhG!+~9z90(T!|8KQ4A7vj>xz5^DbYoH?$NT=_V|qUXJ6p$awwIwC0sEWL`NJ>c|bH z&^iY092=EYT%33_T!vJ$Y>+AIYQQfq5cC9aSGkc>z-aC96LMKLj**MA1%{(wt>9@B z!E*$pnVE}AxNyNrd3E0)^JTjqu!J0QQ2!1j#|DNjE1ZX52Fjdw-h~iL#e`P51tM(+ z)aS73jtd7pAri!JS})i;A6xpIL2O{2rjZ-c zo;C_C`trwsnm{{$9;msT=4faA79Wopm?$CdO!k6K>r&p!4aiSaXx1ppULc5 zJX47^OZNB#*&Dn`0gWcMPc2VooDo@GJF)}6%Aixnid=VLuK#fQfEY3SZ;WE_J?jT>L>YXWHx4u3%%McwJk9<{C?P& z66bwCrDFNjvnIa2lEc*4=ul)NQ4-xN&L*hS+|%?$)l` zi64t~*nIuSsCfoEyt&Bx-mr_x_y{p%%TlsO83Xd{m9b=&;+*%B0HJUtfvfD8-%8}? zAyCl5B(Hd!I(9KFG~f7QOH|9iUSZ#0k_xuaDZR)@g$3BZ+CjE@Z5FubqLNuL%T(XH z98cn4!xZfypaz8ay=d^g`gfK*;x3kRt0*w{({J6wt)dwTqwQV7$ty|VXb2Ka8<3eF z2GL(TMIJaO^He#vh3M~*q_(>k@ND5Qz`uZn?;!s2AKT}OAY|8(BH_;ArB6W*&748bkVbSh-5*86%7ut8lC$3^pQa7aDhp9S1)_a7tpWKpGB@DO&p z9G3V`Uc!D(y|BXLVu!~;YDDc0y7VTBDVeNCOybH-V=w;mFrF{rrW1u!$`j|z6Jy97hw#wqsZHB<%t3ZDf42kN=?jHX*eUA|<-P~O=r9#KYMxMRyCGP(--#`Q~TE>s^{fhmvqUfdwch#YN}b_& zt8?>pqoS50^)8$+IlCP&ebJzNfTjEe66Y<1U=%oUiUv#)&ew^# z*o(eGx(4HFdlZh)R`ZM)2BOw`V_yZw{TR_QeW#s@^?3D z51{7HQSgY1Ulnz?v-bz z&e0>g2rsBgVC*D!+KJr}Sn|jE7*t)(yGAZipU_>!iLJD9ZH+FretS)ilHNp#-r{#? zOEY=61Yhf1=dgK9 zx^+Ad;}pwD{#=Itesi>udo(wl)n3({`4?dudp4)T3!G!b+5H@&6;r)WAWk0b(>NxO z@Oiez&^7t-Gz~cvxC%D)^6wbx(~8*m_T5AurV{#J9K0oy6!J5VemBm3KVISkH1BGI zpdjNArQQslEb<@Xk=??nC(hTU4L+#v`+GkX|K1ry{0ggTNbnJY+$}RvQ)S>Q3Hm#0 zBEs4(JkkU4?$01HNBL?G0eiEx!!vPkFEFzqN68#Ilxq)}me9xX^CQ1k9a%zR>yWwP z@mjxP=$46KPSxQt>M4)E6GbXEqCQ(Fn_N6+>*$swV)C-sJ}=*RS2ps4Nu4@*)Qm&U znImgKwLlu2`^b{4;GtxeyAxE!%WYizQ9o@qT@s4Bk0;vqktr`_~^Wpis?AA z-`zcXYNn{OzgGiiik?5EhQdGk-IPqDeR$7&~5HIY>6vS=MR4v z!c_2%BWo|eW8h4Sf`zj?K~NWNsHHBKgy|NY6az_$we|z^)yX-nkWhQG1fRxc@?4+I zClcI|^wL&wdavIuPBI9R=iMBu_b04Q-KN^z4GF7NkN=%KqKi7UsXhKY`@Y~wuMa0! zTvvC3dn$f$?}#qChK~pk_`(n|Z#8k8)_yS-jeVv$?(e@~A8*sB5~!Tw_j5>n2}$Q= z%WFPqbsomMK(@i8i_`*^3AtHCYNar$cOD zkGS=H73Om0ZD8(tx%~moA2Aidy!2j2OL`2dlvZX*Z252u28r4FiSFgB5?IRb+L#J!i`^5^JVk6w?xByRLyN^$z`*J2}oN#w<=cIC|)J@tC3$pC7_X zj*Aw4X6u#UCsvEz_T#A=UECpfqb-r%3$C()0}-ArQq=yP#qA~S}n!Jfim5}a9{A>3*686>hWns%V z_A#Xynd#>Y|IO~yVj_*WvCXd#SHI(w4~f5Xz@7TOaZqXBf3k+Kqz2xFyTOdbU3n*k z?|D{En(U%Js-^WSkt3MyXY|^`p-g^fy*@+cX`l0%sxSQDWz-Y4o>zGsL8=f*g)`X(%a@uBEmO4{U+swecA{t#lv&URww3}_oHo*^0)7G2-?jQIH0qGfLY{=-qbYGm5?=h z6i1QS_94|0MZX-Ab&94CRQ+yLCXIY@8~eGG(fgUpAUL=ll)wAHLrAEFt3J zKc5Z5X|$hXQvAJRz@BXAxOsi)No)y4(=KQxXZ<)&_EOK|;KuD>KihZH1!jft+x$1` zTOU+nRIRN7BU5@RCScEM&@ubnZJ-lzTX#<9VpgB8I!7GMn=u-KZwNac zAWEA>QN4g>@A-pLd^sM~3u%z<9(OZ+DWpd?OCaZ-d0t!_(I5!_`Bet8dtkjk{7#BnIz;4+Z@*Mh~G?!yQhswJ`I@Gug-D0I;+9_aW z7~JEt=fY-zB<-|S_(zMgIo-TG8O3IMRCSG{(dDP{kzG-2?( zwi(z1L+19$t3C{x0_AkDnRFVB+mNy#`g2> zx8z4y$IBfhrgo$pN<60PF5L)ViV^zynXW0L=2TE*Pv7O7 zoXG-%mY##T`xbgsGo^N!>KSOkz}GcBny^lz=;2#JH2hVuLJ65etjO1>uRde;OY2XZ zp5L8shETDBk7kUszgF-V_*%y)*<5}m8nXCi9ClpgRN3Nto$W!0MG4Jy!>aNvSjWf* zGO6uq>oidp2XQElc0bV?s*=RIFwc|4*2G`!@+By=U9CIfsT@Sg{yCD;_wd~>KkcJx zdV4Iz=78Nd&HX9Vg=3ia5%*lAap)#ma!G_`#gAKE8AOhj{wE49eBC2P_4ow-yr){U zMmlrV`uhvc9&fKvN0U}{-)PpsGe9GgW=z_RX;+F;R$CrShyNfkIeiFveHqxhrWovu zAmF43*za18+WjlPJii|OcFjv-dka`Qx8o8SBDp_6Qh1%*>#NWpQwf+iV)K1uo^KYz zH&ytCQUo9H3C_iO`Bn0TrEgQzRB7j21V0ZR6~lSF7)YSol%N=mu5Sb4gAar)9H}dz zUuCu(m|hLEP|Y&g+J&*P88&M3O4j_*pS?Q>KL4z)+0|2Y@vaG@JnRWDlpXy+vv`i( zAp^~|w^^GPri&2A7PsS_G~!RUWUkEs{&{`Us`YXzfdzN|eijysg0}0TZ!2Dv2lDb> zM6c0nU-JFBJ0yrgPOIMgf_LOmKX$*i=1v5+u|=n3=7%Zn=$hpDeLO>!Y}cMw7&#u& z0_A~;?|bO&-Gtc9BCq*$zaqfi|H@rbrtYY z7ve!06(NpIwl9FC40Dl$oB5g9_en#o2tfrpP0?K8643t(T@Gh|FeEfMxnv6kEyxs+?{E%V{DAsWw&2P zXuKb&tI~4H{5_nZj4CaZf%*;yjFs*{Sj*RIC-h{CnY^9A4-sS%3s{p-#@SV*p>YhC zZcc47PQl-rB;sVQx1h)+Cn1if5I&MOlkS&>C^Xmb3eRpo=l_{+U}S+2I$Z-5!`OOY zbl>kV9IjkCH-}Kx|1Flke0A?Zd4!%)I9m_;WMJavts3usPqtRB{<(8ss0(R^*OpI; zW$E(C=IW0f)&FAeEu*S@+jd{+ln&{VPATb%&Dxye5?cSkqbZc!Jqw#cPr;1v>d@MDtv}ycb(`Zag^3Eu zw>Km%Uf`gd%(hw*OT;`;(zaSCa{+%Elj?`I&T`a%BC9mWFE6~*&G8;$A}r(!&ztjR zM*)QI^pptz2Q=xFC?cnp9NYO8DlnZxZl+NaL6GtzM)Y!IsHcP^c1%5EY}%&(O`sNf zqy0t-m8c(Dz*q#@N{GwK(y&XmXjnNqcB7+VuTzD|Qp^6`dlhicy>|4Z#aBn4?{(1@ zMh-+_D0PwZ>Q!Y9?@g-tJSi~l*D<&aI+X4UDaikGOAC4UsStN6@N@F&1V{#gsaCIh z^P6ME)FIZgA?T|I^U8a#r5V-|B)tNkM0fX9zZ!MBIs8@wRtEb<`?oy;)5HC z&6Zln&^PlA*3gYnkW{Lchv`EDfH_Mj@`8r;Q{;-eL zY4LvN5@r0P-lFmEbx8!ZDogqG^$uaYWY?!@nkT8hXc^F44)HP}$&9Uq@)YyzUj52` zGMqd^*oTVryb*5~eNGYu95BzK@I#42U6|;xc=^W-p0GBvJXcO-sR75s8rx6#NN>+_ zZ>D2JsDIPQj?`>aOzGFYvno?{_}IOTW7n={(F@>Mpw5VW5!$xKLgiNt?7N%HdW zbUrSffwa6hq=e>B3Tu_GTAXbYe~AIsMy=|G!4Uw;ha9=*@+h)&cj?1#WFE zNXtHV7ofk(95DagdsmTl-RN*JwW?<+?tNgY87yF5I6zoGTa9a7rtY$pu4s?uM_8)5 zsIZKxblQDYmT-?L?g&y?msuPk)1x0$2RLHcKXl1iwJK^?=;-NP>a8g7v?`A0ZJcz^ zN%8TMs5a4NJFc)B<8U)yHRCL4N3n2}sV>sxi3n5JGko(o+uke;@49?@&^VjBVSDno zF{M9_#`%ETtXPuEzLRpcu z89}Nn0Y3ixbfGj|8ZpKbOerEm>rppV;uj=Z2E4b4^Ef_Ze_EA)0*q&!M*eGY09J;C zWVFtM!P9sL6<&Nzl_(57mYg1x;#>R?3}7Bdc|+xYhjgCZ(JnHG?@9U)!yFs`t2y|kq9*4RVexsR-d|bcN*Vc4HPGJ;{Nzx zm8@GSQocngD=YhYy0FJm!0@ZpFoFF9ou)z7<7`#kiuLp~cG1BUb=29mVv}}ZUhjQs z0Tb+p{34p5^_Q};mPq|2`C`Hbai#;z)m`hOIeMx(^G$o4sQ&NYvn(;G*cQo`7lT9E z6{G1fulHyxZRYFarP2I(j%lES$Qb$Q36ep&X39Sw^98(r|32(=r#5&f0;_p?V<@ei zfO|zdnO;tY)mSLJ;x#ip{fCz}(0dl|{adE33C71+D{@3t!4G%pO^#P;W4TwFfh-Y@ z>)2$;+qI~$g~prs3n}lXb`zJ$U@`@A%00)v#KZsB;|CAN7PuJyJU+Yzs@MN{PXGU( z>+t6mD(#}}=zWt4sZODPxaUl6j_yhZqX+(=7Qnvz?)7lTQ11{6Y1Wq8H<{8G(V=42 zD*6Op&ft$C1q>vKy5)&}dS;Rxs=mo+xwZn*=o}q0X)p)ij|9wffSBMwkEwSX2dSeFiiMBk9pBj1vqWpVwiDPE|CN!eTT9ceZ zdbs1P|CsPU-x&qG^K>YyA4AB2UbOMje|zC?A?l8&P@1u$9k1$r+T)7@zo>t|X^|-S zIC0K-cv-3X2Xi`i7D;bRPH{BnstnzAaHy`Ooi4U@75@wbzj9gxu~BWk#Q+&-FVDX{ z8dyDEa#sY+2RiVTbl_W|yF<4*4FVINhi|AqI! zGan`J*DPRRNCoW=n+KRQOZ(rW$3{A4P1*N^)S{=od~PpRAJ*?Kx+na5FwP}%g+addiCyY^pKNE)vy< zxcR)6FPWCxbQ8HuhK4N?e*B!3kI&-s9@?peYA*`Am3WD9`PX70Q^2*JFw+%kr1g=k zS1W#%AHF&o%KZ6`akG{waYy0176+XM%)?!Y#zz>qg0ypq0z2(~+(KRleL$j2i}@{A2v^&B1J1iQ?Lh1CkLaDf;c_N(8NsC8E;qR$^c?B6?+FX^WB-#Y8LaFg*CFa1 zl+xzOtk~}5-ihk}3*LblT179nlEG)=yzLO!=PLiGNVB-yG+g}c!#xe~K0{^I*$hlm zwM27n4t~(p`q(RE*nR&FdJFSmizAk)u9jWg4PWxWkK56xq8#^`3NzPsk-d5al;&P}TtE|iJMT&{yZ)jt#8mR0Z!Z|8+n2iAE_X>70AAcuID7VOGRK~p8`eX(VUn}axuxeJj zAE-d7mMk#N8=XTf^NZnuuuJosAI5ae?KV)9=3O$%N{}@v_k{HnAR$-baqxc(U{}wF zJq^0GS-&}OfdDyY1FQ!VW}epVzjK+D|B7Q__S7%6qHT!>1Zxch?^&gs?dYpo$@)$f z{ZJV=@$6oZ|4U?A;6=-@wfXbnlp4Nj$~{F5cvHDCDjPpKE4m^?@`!lVyDI-?E3oK` zw4QP}YRXx@a$yKG!;D(nkcK3+S|x8m23{epb(OJ3CCS;0u^hcc;3P zH|UnB6Gp`HE8MIWs19BnBY9-3>JnEi@D#Mov+^?{3KKG|2Aj3DS(VA6DvHFe42ez( z)1=Pd4~#{K5_i|tiFFp;dW)dxHB~M~S(}S2$yfk^fMs}y`b+AvtHirb2EYJ~j*=L-t zY$s1jAZu9R^k?YM$hWZeoQt51C*DOkmD-xFbo*?Mt5cqA^moi@ZKmC3rpm;Ro!=7s z<9F;k6OD7dFTZ#Oo@M?b*^Pc_J&03pNROD!$MF8m)=FnlEX6F34h=an6P|(eukXiK zF#i{bBKg+dzVd`LPoXcGAHA@09`r;&0 z%O%3hQcM!QrLqKo{h+#D&$G&BiB!tDUT20v_I3CQQ?(Hk6QiS$uFeE9BhB;eAM{m+ z(TwLKx*-Zw?4)Gj;R=RUZ#jt2NM$N{e;KpQX@P>5IBh|SD3PAZN{Bk*_w8xL@rFB) z|AaHSA&;cb@vhqogR!#TD3rOwjIpk(3>la-cmggL5~+oRx*6mz$7-a#rV6D&L5(ld zRyBa{^{c7ptGUzu==VA){B|7~1#~TuusCAN7aBH4Zw{b2!tTZ?)#FbB&Uf{;C9WpA zgX0om3?K|pahVT4aR8=DA>iN#`Gbhan^4*m6f3uOuU4gXm3`Q=H;8-+{nHfz2VR1LT)tc-l#P?q4{AOvgttV9Kz|Y3JS%eBAtoO(ZLe zil$VdS1VC;A?tTuwfQ^*k(h1$ZSER9ydL9ulpfdMu_fKPG1Amy$sIgSxLul2zb&3* zHEjH_^7ZXUcD#3wuS8@1hSydL1@);0(5@df%b?ey(XVUwnvIP0WMxTrH&P@Kh0zsvL++S9=~=N za~R5iHg3wLEBJ&nvK&bZldg~5<+2T80>{iTDf~Gnx7f%rl3)aSOBL13@uyQiX6JSf zrG5=!OBEKV_&CkI9pXgSYIX+Sfg%jUhl|r>LDK~9<sH=LWv}@<^euhvR1*5>^oZ z!jDqJhBw!*9>xl~tD9vfN|paKuHu@%j*Df00;d9^2@sEsVB=6?LAwNe#^x}TGQD<% zikoG{B?Hn-PWJu9lJl2MC{oI0ZN=v?t^KvkgK<1en&<&q{+PJK5<2?tMK>NAHw8IRAGeZM9A8h5kL24 zYgcFeS6pUuPPdl352jdW1CdU;B+iKBC!)s4W%Tfr>gX}^`AAgEPIT>2eMUCdETy{( zisbmV#Yt68WrAt2vISjM0$zc#!uPtn8j&cW3=9H~G`9_jL^y(r*bMi(oal2CZ9l-wJss$luZ*qBl^HtQUdYD_krG1jly^1FwL!HIl?0i?z{Ri9696NY8ov&0X z^kWc(Vor}x<2X zt2q;N5j39@AJ&D5qrV(2=vKF%$z@SYKGo={u^jZPD8#6F(Uc1sAwVNKTPupw;U&JT zw8nVYuhAkoGC;|3u|sy$9akU>$awy?l40@ zZf_)u-#lt|y<7no)DjCM5N7i6#-H*htyyUi)t>a20UlAS`~DM~l)}HSCJjOPQ8Xmw z=rle`k`k-nN#)*7)Ed+;I=T{iRzTcH=0Lf z3!DrNri7QOWI0}EM?pE}5jg&!;nr~4jA5s(1{bgZ5-g)H3QdSw9jp2120fRy&`Pit z6`2C>+ZWpR@2Z}h2!%A~D?(^xShJdsS)o#@6D1Oe^QM_Sicnbgm6(h*cKw?~1dC%Y zGyGlY^T*fH5h%O~0Jh&2tf0YrDjhP-k<)kKym+3T%CWVQ09p5?{-|4-T<`7Dop|E& zcZ6r!vJK>C*P^-Cr-pw?XzOW*(GhqE5!JzaZP_fwI4tsI+H%Efk(SWLX4Q%fT z6IJu4i6ihUNdFIDM9Ac|5hQoubF@qvpElz_|IkWeCrfgQJKug0w!j7SF>G=jWv3|O zFb*n_j*^Sq&?lBiKIx7K_1xRjH#*j%3+1)0zPGM7S;7Wl3>JMuYMT?K9c-`<_7EK3 zgHG>UY55UdUD;n9AZVr56dh%5d1yv%cl)av2hd#TLkW9`J@Z?i3NW+*C@g{(e| z<1qyZNc;SUfP7aNhVn`6v0iDY_55@+;j9dzI}^Bu$xqLbB%%p^OdEZ48R+P?Ep$w~ z`N%z4Z$(8lVAFDYJdE5L;9F85>+9?s{JpFK;b;k!Bh z$Zo#g^5t8!c_rJzk$a<)U6zmtw z+<5FeB(b8%&3L(|M{34?by~dOwVx7cjGM^xJz0>482tVCVyA^O_gNrDr-{b(RM(wN z1tlid5~VPz5XmQn=?lxjKN584SgP&vu?7^p!kCiY-_d8^JTIcN1$A^jU9LzupwVzE z&Q!5Z&+?4gp6{A$*In&|66$^#S2%QlBra^%zkY$+%t5UV@yHTsj4)zCBNxjd6UL=} zheKJsYts{U&KrF1pw;B)<$FHwvn@iI(d49DP8%ldMI&7lc#|tF9|JoXbJU=OfF6@D zk$lFNE6$(%FFw@!Un~OoAV{&`-q4e3jGg!E+fL!MJ)oH!Z+%)k%@^OKc&Ea|mxA8h zYO9GhaPp>bO)zTs)xg0_D3U`(ka~zpj(l8Mg@o{m`E7?MwSM(B$7Ax#g3XzBZ(>g_ z4)m|DbGtBLi*2Kzs9EX!T$3JlcZ52yJ*l3vE&d5Ef&;T55PQ=<`}Kkg`V`-;%k=4M z^1ujE^gkmUoNgDnUA3 z7WE4J-M=MY-bb3FmSuo)pA2UOv#Nas$q~e|E{KcQV*L9&N1)#myxYy$T0h7S%D@Ax zFmZT`!bR?#O_Q^yRk_%S%BIC)qXSAe!v?-e7SBh(++_3qIP&lRMfMA;jP=V^XMXdV zVNC>V{j=s-VEo8{@GZdClf`@y1LGj;gNuMFhOkta2Fko-uog3Ga`e?c`%z)mT_}RK zH6hNP#O29-9AxR`HXzoPBb@Xet@V zUH_#9(k+kCSNmL6?<-!G=?EEi5sT;LA#TM{U2Tl8m)~;RnrZhyTPBu;<-BpLo4%7p zU3?HNK1R%Kwb821ydbMq3kj5ogGZCC-a+3CB(A|{jcQ&>ej4^5y&p-8Rw`C_o@m^f zuf3>=!6*Q+d^Y@Bqed{e%YA#kxSy}^?dCYHAG-%F4nkT_I8p{eI$PRwb-`$V9P?Sa zHXzBH9iG1rsbXtb9~#Q6^I6$H{O$QdsW1SjD>Xy0^@ZyAelv5SWxr>3FqzZ>rmK@$ znLE_}jyjMg>qfwizr5bJ@^~Fl#paIP=}X<$7Z5~i9&ozZ2epQ$!5{4Y+$Jm&4CV~4 zz8|UFHo!o+d?)6Kkn~DhZi2{j{~^f8(l7cOnN%zJdmVDtLcyKR zL+J;S)7y~Kt(!>x^&f~hS?FDbxVZg3MjDvmj^yCvfZCVY{57t-`CnLM<)NVGQs*xc z$;KvK_@fX{QI?Y)SvstGYecJ(LUkoL8X;JwN_X;YRig&fVkqn14g`MIWT;(0Jq?v^ zQuF!cTBdYXw$u*Gm5q=hSIXO!$F<5%iL71tB8vBTkh!+P>Dz48 zZdDjcf%noukiBSP^UAAj!DpC(K~;|kt_LlLXUv?Cf~bR>X>G$|2ldn84Y742vg zYV)iaNiPTjT)=!XO3G)RprzvR7u9c*3$PVk{A+^q^hI^}cYS@SJW#~u9P$HEsi};Z z)bRF$MX9i+<&1JDQ19%sECkY(EgddNafrkN?#>hqzix&=V}L%VV#M2hzf=416IYhT zt9KZ(EDYvm$biVw+CjW>%6y}yQlC|uAjU1-=3-X5dAOrSeWa4ro1I^jYsPp>$ zz0%xo*K9I*^i=T=Z*NCO5+Cl}3yy8_bBtRNGolUM*53-;qVTgf(YCx!H+!AiPL-b} zl`k!G(p9FK^Ih)?+U>G_@CYo^aN@~(*u}yq3+DH2O=P_*YoDxU41CXacwo5R8-jb4 zUi0qdqKhm+>8$?cAD`m*M`H^$^vy34_RcUi%oiht^o&0Gt7?3=pQ&mY$(rm3A5uhW zP1j}B!eqRGp-trNuc8$hyx*-NW(*iE!3v4wBFAk3p} zKx4E^*C{vdq2ZyBWa#VXg8tmGK1AuMcbqpCFA-Dtbn{2}j?+f%LMqPJ4F7B0&;#O; zw^^Vx-p^djbk-Dif^4cRzV_gQvmHT-T{QFfVf8e&k1LooQ2g6`C@ws>z?4k)&@`8P zpyjP?gK%D0=ixKNLqy|$tfbULOAws_Wrl05-$`RpA-;pT)qQd2^~t=AzoWX0h|giY zO2K{HN}o=ZU$Ri01Cdu>q@2zwp_F7=o~Q|#G{l%^z|B8gPDp8_sw&=lwfeP#n3&S1 zbPnOd3&a;p3A!s`a%^Q!4HHem`dffkjVoLcZhYKBIV%$p3GA1~@|iY`!X@OrbS>cATIpU>4|UyglVA4jVsR+D_xM8uBu%>lMDIEY0Xi z#VAvreg4!RC$MbXnDS7>Y23UXOl6MVR9?|CwPmh6QSNd7OiMvyDu4JT{~$DS`0-of z?@7R<659udnj6(SVxNok;w^o9=_;Brl(w96>344gw-p(ICkY+5#{=78KkR8i$=HMa z_p?uruEGl(RuZH##C(mlcgKkqZnKGZLwDzwkq|RwEz#;l$Mqq93`vNl-*O2$iBxl0 z^jG1gHU1eUH4{?Ucmc{aC2xM@`a#Q`mv8-s=fSi56F=y4WYTJLicE$+PHS~WWYs1| zS5>qV)X?6IVcczTSFu&oaU(9d7;BFm?#6&tzPALB>$94&33TVbP#PAa3080CS$FKf z%H1HY2JhONXZ(CAposLujr!=-vxH(vbg!(^e;I)(Tq=d& zAF~4x6=lq3Q=ZIhO99q%w1hs&AN!n-@YC4zy*LkDa|hz@UL9P)g-$YwB>_fE*hGUR z8W}H81%Ph*`kNN(?XGf$ajDc3&HZxYR!Zm2aO<(9^5zbsj!PrYU{2NSP1I9V-`heu)5cSu+!bG^1C)r9trH!@q@uhtoFq||qxxJ?Z{;=*!(WYcl>&OpjvAsKwx{S% zo9s@CR(g@k7q_2fu62ul)EPAX%3yx_1xaGMV#CvcUOeFPRn~Lp#b=*Xx7WOBX&CR! z2SX6JE1lF|M7E4g{_c}}dGeQU{XP)p!K>b2y{Du7nPbyw@~fR|CoGJ&W~H-oTinL| z@ap7ZOWYeA?ALyw1*F&ym*l}KAnenX0o@WTdAxjeDiA&UWxw zl~vT*uraIYXU!eg+oy?cvMw_<;#^dsK{Xe$T4gFME*+YB2k?Dbj?}G;f5(3+?za9R;B5NYK({N`yISMc%C2~7R%>BAzY%_yeYWZkwh)ys zLk)>XA$G63Xv0wuqKul26A*gPQa209PCyNlomt&9qqbY(V}D$6Lac6AxFcR{1&-Im z+;ru|QvE9p`$%fx*H)^J0pDx(@|)9iMc?u0a~oY+q%8d>DG4L-^9|mBWe(<&y!|!Q zE6rW{ck~6CHLb%;YDM#87T=gTRXhr>^Zn%-H&D4wpuwLX^?;s0%cYh$IxL~ZZRfNnhWTR-Sao|4GV zaR0lT?tc-aA4-xt?6f!rk5)_lFCyqH&Jg0p9j4t-c#xuL9$1Od>xS~jANda^yKH<5 zRc2G(1qC|Yfq>!k1FMCvRPh!P>NO_qpSnoL6>K)gMf{+pK1U;L1~w>E_#@KlY+|!P z4|guQYAp`4z5{jQEL0)^e`gdbjazp?7^6CU((|rfUd#$#3UNvDbXx|MXpD6K=IW%` z3Rowxy}+_qt1d`bd{w{h**wAbuT|7>LFMpVT^9`eGakrH0}KBSWf)X1J5t3%)RlP~#$o-~psM^HxWyHvL+H3^H|kR8G$-twKF$9msG zU5^l#;Jv#^#bX}omPW?+N|=k2L12!M1Y#=W^QC)lOO8>=QZGTcjq@GFb1r&O@AITT zKlrvB0+d0X2ydB3~*)I+c1WWo|f4^!`0P8K8t-rm;{- z?vH%=Y}8!%N=%;lQs8VOW55z9x}b!vt1BN~&zE{yIH20;hl0fQtr+Q)OlEK*6p3`& zvSP70Slh}8w9o2<=G#vne|}J~5h7*b>}?hD*sNc3y{%FT)d+hR{bsrnrVB%6)asFu zpY4sf(T%1iXDv3yX4JElGOpB<5ZGd$3!&cU9*P5IzqQUZ15_#V023&4ZjcU_K^SQA z53k}&l?ViJt*+^N0`b&KD`>t}h2CgoHh(RC4iRG2BvH7L0axm^bm*@G(J@_1_sLg9$nK55a?|kLTBme?9#_&;RQ>e7`CH`-WSayWV;)Q&KSXCVTJZ z(I=1u;w$Evt=BQ1rTynm=fP$5CKZecFnzJUDtShX|Ev5RJ#pj*qMbiJ{o*yXPvI*O zD6m36PS9$kp}c-0;Kv+R8mw8el|c`E`cwbkz?r5cywggRoy~18#9dU=FUe;xck%Vn zuxHY$^ETCEMpI5fp3Q&XD57Zin_7SSbncN9wg>*K4mjMLzxEsWRtUhse|El-KdD?F z{Lonf^$gd0#Q%#sf)~*@e@l(q7;1O^=dR;NBhdKyjMWeecWE5_=hMi(#-(v1O%e}? zAHg@Ae+4=Nnld2{{%1HpJRD{y(*V_>u?T#Hl7T?1x9GLpbyvAN=PC~tcjn;Rqh_%S zV}ijXhBUY=9IP;v$!}K)T#Q}dQU}0X>aSnfVqsy8k7*Ztq2F7IpnY(s&0lSbl9`0`nIsmHyn3$fGC_?5MpyQUfUeI5VFYWaa&Xd;UmaDS(4c|S}Kd%n%y;j^ol6eJlVb`;wc z_NHQOpjK%xxp=)NynFgSjlKA(ZiOsJ$M0^qhx`u$>2jVI=!K%Glkq-Hab9M7nZdQO zQ8(~s(}7`NBujMTY!+6&2Pk1t>RG8qD)g|&FCwcnrMX=a5ZwN%aJqEr%DrmhpmY86 z?#>mSb#)x|!|eSJR)VxXkDu6!is3mzvd>I9Nh#YeUhgk01Ny-l*sy-+>fb2;l&>+c zad)w!G*NPN)))$UBwmVps}*#8taX)sRBqBf5ntO)>2c@^8*2dP#fZ#*`CT%5V%TU; zO$NN4;54Thq1SK*joWQiqub>dK7(zH&;fwE4(7P%rTZM^Pt0DY3pfN5zr&c>{Q0;9 z^osaFn?H*Q!e`Jrg>oCqvDm(W5C6lfk~RFKbPAIUCib)ELbou3+g0IWZ1vf7%6O2n8kbE!=xYCMaL6^|e?FSmu3#GA zni_EQ1HT{v0WZ~Oud!9D{hWC_Gh#Xn<>plHyKwM*`pO3%I4J75qm~TXUHu-Pe*;$I z#fXM-A3C^g#+IgLuOru%YL+SOrfe%_&2g8yAEII@nx!#`{miTg=R+6wR)f=YKJ%!} z)Jpz73Hak61Y_5yo|#2HfHz(N=M}}Z{w=rWlt+(jXBB0ob+iKkoRH;$&P2i~Vmy|A zr)joB70UqyRl8|N zoLQ7i0#4^jT$+ckxDTasrdhnskxqUZ%?#Srk{J|&G&bl-Qe&%(X2q9EMe@IB^wSe( ziI9N*T5JmB22pGVoQE}Is37{}wy{+4ePe(o*lVd@Kp3R!_Z8aVs1cUGd(Zu#5|((= zwUUM?!?Z=b0V7p(l#5g4dl|OX##fP0M;v4XcK!R8=exqSwfMSjy5(A2XM9|yw~AJ= zg({=TtlDk^N88*O1eaq&AeZ{6lHZ|v5G{7}-C{e_W-wVM=z2^4>Ut-of&&`1b8!%? zK)`fb;Pn36pLZBJXZa^y?0O@_Zty((?Qnii-9lY)GZDv=TVbhhm_0ItL(RwQzG?tw zl<#`DkKA4K)&x-__nody6UCTsz2!-vzVh?X0PwVRz89j(jTjegfzC`6iWNINGI`Z_yycLanDrCjNYkVPydJhxa9<}s z?l&E0Gg@SlK`ATlm_&y?wX+?*Xrd&4$6`~N3j&NIA6GH}4p1lNH6bD%3o%~<_e{-R z893*O4y!^j#g5JW2Z1I+0r2900RM-|z3Vfqp&~h|DL~^C+l}Qe`{9OWV{SjmDpf=u z@z`sVO6R!JGh>(lSrjlk&tGwGc3DMXHStqRsPw=2!8(Q4>jMO}?#rmSvP08S^21MLKbj21#I6HI#QBCWj(@z~F0*8oj5 z-;psRam^?uU??z9GFqJ%fW(vYe+DTvDq(fBOBoia^YH&Y8}#eV|5r9h>cjua26<}+ z{^Dc+SNQQkc)E#d^O+^QHM$xD7^eK%_6#>C95OFL;?uyxCzD_)e+AUp6~e9ghN4wk z1f9=`eXj8_FY`pMrhga-j!l%Jou%^?Bd2uUN~?d)FdeG6kWJ@wzw@8$ji`~rL*%*i zzNc+KXM8gg__z$?IbwSE{r1rKV1Z;OaPb;B46W4fv|*Dw^?moB0ZfA=@zf2J^t>x& z)i?;Q`c_J^(LKHL)@-=p<)w8={Sy;EkJqu+KvS9)RI<@yTd6Aq)7W!ko52l~cu*5)y^v*j zmUz+jG**DwZ(wB>xiss&QeIR07`v9Z;VaZ}Xg9`Y{He3?!P@+2h`MaTg~()tU@> zi*aCZVix2}JDLO4VJJlqH>|h0c!=))WYiq=(+IMpSk{clH(Y&q!fpJP(>XlC&iJ5X zZI|I4iV)&sYqAei22({pxwuBNi6>{Tz3*?GIvJC>ObBZ4f*y6oB)YEq`fjAjfFLV= z{sLv7x8XTfKA%?@K^bT_-{jPU;+k3M_lWo&x2+Jcnl4SB3=|MB^6qdl^Zi0cx6Ra^ z0RdOqvK%UOv-{t1#zcrg-xObrjUs87d{5VX@%0=$h)oIvkiVWc zWele~y}rlMuYAbR485qr7CQ?Yhv{uKIYQiUqeHwq9?o(bCpHFNVMpKU6C1M;$3k}f z-Bp^((;>HOkGbp~dY_+F^Vk9(sNg-2?o}<4=*M5}w3SRWW=J4=i`_#*X;EkSkYVm9 zXRSLPaK;Lz3>`aipf?Z-S%L9a8o!;N@&}^Mr>=kYLGa5hkmS@8c1PFg8z9|h7vs*~ zB8tqMC{Cc#iYwo2)*WPa;M;BDGV#g#p-cOd@x|kjo9ijn@PPcA>-f#15{J51hAeQ~oh#dO5B;ly)Npj}$O} zU7zs8|7X!scWk`&OzIAv6_pTs%aI%8&XLJ*eO$TrXDiy~G_q+!+(zRAHLJlUIEF;u zi2)1rNBy-IHGqo4hR&tZj6hJM}EdXhU~X^?&#kU!+NPLE{&RUSy3>t&lX=UVD}qt zIHPmXLNq|%sbXSb&f0bJQ_Ui0w$D=)(;V|{)82#*Egpkuors`WaMtMlHD>1EiI-Y| z7m7et2r8o13G5&xTYy<9`Kh?h7k0z?d^X##okUI>>n>#Q36-3sDa7s(ko3w63sHJ< zEctZ4IA5@^JC+M2NHTJTcawzKf>*(>+3(bW3nc=<`~q!b=Vv=zmxzh z53rvN*cSif7hq_hd336n+Vr4;iKe%g+Srz7*|quU0q zE^3lZ0#(es4SIgy%*qMwz@p=mJzr7l8N7XVUaO%DnonUon@5%sP&~XoPe^*-=K#v6 zFYjp{>#>uLDHg=M}1 zvT@?FMUTUbJEa6|;?&nI4|o*S)xX>)^sfaAoMBY=Gr?A7r+bNBX~Tt;V4!YJ$;kL= zagt&v)7a@tDGk&>|El`9=9LQijUg-j#n+))Obupg5BKays4jjNre*S;IYBp^EnU2s z*Hd+CVvTXMxV(%!YT`w&@#9#nC(HIUN=0VEsO)D(n3>ga(s`}ww;ZS?8cMM6o;(q2 zY04Gmo2q;N|3(6h;Qn_Kh=A@N66grdPrjWvX|8&X5IdFIWSlKXK6S;_kxnuH)-m<4^SFS zTHd0PfskMUhaK5a#KTANKp5#6TyNAFB%$pqH0@NknyJdWCWoi91zF)g`05G9(NNnw zSZjw`i^zFtSNspKn*X-p=74a^O%xfO$8c~+O2)$OG!7imBsUNG0GhW9H!JxAF7<)C zRznY;Qe+jaGO$>-0`1zzYY8-;AAK*^4%f9SH1zWP^Sv?gTkasAM#|IZyAbsvS&{bf zo)fQ;n;6s~y;hoQUQVN#pRNIs!`$5}iNhHRLqOteiJMU{uXx?Z`q6nZ{-C>?6>h%6 zY1B12dl?y|fL@p>UMQ9Y!-qM79EI((A;@jn43Nn9n6zOoquE^XCwl58Xg-03Q$N{m z>cy)5HC01F?Fe`ED1yE?Ia-C2wF=5{WWqvUuCS-qN)|lpQs{C3UVW^y3Ae#;7{CYR}JV7fW3BUmjoM3dT?ygq`^0L z#+Lns(G7;zr#!Tmz+3GsF-G`$g%sHz725}Nq1-?nm$!$seE(*R4>UQJ@FD#PCm?~6sYKeCS3_d(F9J(CNrxS*5YT0%|lGF z9~tt&4PETM$HIWajY~zB0ch;dfzg_@*#IvK&hqW-}(DYxZx0<;Bln*Kqyw%So z0_QuOEsxLJU%cP6O6%Ls8h}_*vf}oEX7$c%PtERyUYenvrPYXmn2Y!2VH+Kz23#Q1 zw~{v;|FpSls6S~LJkG!5XVUXMy7t37WQov}8R+a-gB88*zH>Ymylr1(^wNawm&FqB zrUxS7%GYkpi6k^E;KLP{6JZwBl|@+}rGhEQ#OFcx_IcE(V=U98}4)vv3Vki=(g+AIgMz|)mWJV8upNPT?+H{XZnjF1yKbQ=-IRu$7xo(bNV`l$)$SL(e=)G> zY%Y(b;ETe<=au?2Y1e0x)Bd(X%Z6#XC|WItH*|LuZ};Eg?0qBRj&*L%1;)48OT?yW zY=NJZo+H#UchqqFC$o~UzQogfcL`*XdfT4}1*Cj)NSRHRL3gueFVszVKYm3ge6N8S z5t|S1BsY&C|@$owD9#eKYqdoyDPWtHd ziy?Qh7ViAXRkyz$xbm47#Gx3Kx7>Ka7t^H3_@jgRS-ir`ALo;V8*VO4yZ0qZfikdbh$=JtrFBzj_0b_q9;iTutYBehiRt-bg+0kkwv_h5AYbbRL1ig8=3z<@+1(h6n4D=K zUYObAqs!y#C-cNV8BI1PE#pqOw3*t;2b|HaWj01d4Gy9)Nd%p?v&ZUwuBxuAecT&FCkJ0(^c%1gh+A@;B!T!8^ol0(toKrCwFOzwe zSi%+{pPw2D!iOl}Uc8o8Tm5h?hF6=?>QdltTGq=?JSCl8VKq`g^v$R;L_Ce5!u;aR zeypll^(J~%LM2U_eq<_H=4~ENm2Yw=nXxC z2^qEo=&-TsB?o4G#~V>4u50C>m0~DO^JBdP2TQe5UR(2!S4dB|0~$6zE#4&Xis)np zr%#G%6-xPalDdwBgxN?EP6C6}r#533r}^+Atdl^ayqCgIs!Jrtr8wzasI14gfq)M5 zFQ6%zXSF zQcwz1vtJBj)dGPT;?Si?7nBqklg}ndp~l4BnxXUFk8Jws{5#1MGQM-HtNhn}+n?)u zrLqNbJ}M!DLwhKm_h09lTCwRlzRQ+JgXoC5S%!#2hGGMG37e)%@1XVK@F?KUX=!fK zX}yg*AIcm%>N5A`%Sz1kzjKG9Wnz3eQQLe+HD4LQkZu+F)F^E7udfcGf$G7h6(-&T z$dw2q?k6g$_1Q!>;RCPZ-&~MZy~j*rhfNrbt%-T<&H@~V<30-4TQ$13^%Q%b4hwlS zo71G73)=waU4awO*BFMx)7Ufms=dcS_24YsJBBovf}kn{SmtbVk|G=ZH);hydV~by zAtIi~i#WDZHG4x_S~XQMy>B?sm1Es)W^z@k4!_LDFp+bz zbT~}ou|*GgrL*8?Dv_^ED}F5tUwt)QUWZLNojn;jTFuv}u;g06=kc3EC;-W2n?RC0 z>R^X&m%@+YRIJI2Dr!!2bnGXG^$X|xmhX4Os3dN~hsN82SB3LNCaVlZr-|6G{1*A0 zUKt;>7RFY3A5{23=P3j3Zv*|HRAqi=`<*%m!r}B?{RJ2MCX7!TFkpE9gS@x=s1sVqtbq`O6=yGtphrF$Wuba#hzch@ryuj{^_=U;fo>xXkV z9Gr;9n#Y`T-}i0%Z8;i=`>Va_Vrvl64m7ar?slqC%o}wKy&DVlR4L&Lx+^+!3yC1~ zZM2B$vx&Jo{R|49Vzh>Mz|?`8!5G#o;=*CPB`XIJk{3y+m4?$OA`0rQ_@6% ztTshUb2<5TnLl5#?kNqa!piFzjgb&*MgyM!i^0s+m2+EjPD)A3mk~5^3^sFo`P=X3 z5h1LSZ_(Y=E&~XEcD$|5#*Q4+C|iCmZ2LDE(I%{r|9<>%b3PMEfP&Pd8DZS)b+JmR z9rFe*>H&%`l1~_NG6@byekj0k;f#&9;PtHuCz;{VBkTx*W+Zr4;-rqR8_Q^shyvpJ zFmaBE|J_~XxS~Q7jQrL7<5+>B*N(q;+y_G4TR+o;w{M6EExFDVeMRo79N=7E%b*pq zKKi+YD8jL154%-jW;;qCKV1x@%u&rSbyL;c&oXJ}$tMOra$>v95!|>&u#@6doA3h* zED13tIyKu)@bZD8NtX3j+BfHu(jurtknJKmGOz{DmnX{MFT)VkTuC{-*;Z27DzV zV1LS4f4GkX$AmN;*7H?@hV`c1(cx&O*m182b^S2UK?2AB>N)PAdAcVH;-@teK8K@v z+!KoizHn1_EFxov+dx`@m&4^AQW=j^O$rno=`b9=(nePgu@O-93#)sJFAxWCB2Rwd)AF)I%|C^D_Ic~8;uL0G>wLrXGS@f%M$^1a-j6*&ld+h zFU@?uzS9mj$+6*~9BLGS7ZF|mEnP~pL%w7d0oYMqVTdFWc5DIE5wNu+&udQq`DIUOLNoHZ2=xH50j>5n&-g6Jz00c zF`D}HfhayWSxC4hP?C7RM>e|8M@2KvQcAg_yFYNa-Yh7t@)P3%R59RR|4b;j8*@pq z7pd@R4eo+W@&70^_L_{eJ)4^H;59`k_b-*o&5DC85p+uT$?dnso$()T`~J7pO8k)5 zqa!V8k?2+8;?V#YnsH}4@WFvWoymX)#2^Ga~^3Jgs@u?}byy-xRu$)^!W4MDm8B+uU0u3&52do1P; zp<*~yp5`P$AEsiqUqEPa0QOmdIHyH+=+MuRJfZ^h-w@*~n8Y5PdZ6`2R)Ios_2ZS$ z?!&tbdTAcV6yU7K5~`Y|gr{-nIjJFTFS8+mI~Y(K@bmYji{)q*C2RA;@Va;0{M&z8 z4qF12KsIYiJutzL{70qXN^OXOk&cEEmaaZkWi?ISet=*CGsa?M5ir(`gUtN@lp4YR z{d^IiG~JEo2cvh%JsI#BhO{6gf<#HKGyR~8HTcy4?HX(nIt&U6(P0<|=Nd5n$H1Qb zAN2uobK;`(x0|zwj#+!yo#=qJ%x583zuDV=l1cDCGZX&5+72KJ`u8otpMM54`TyVk zKIll|exnM!-`^e9r0=L-EX;X#%@R!)_xw6GJY?xEXee0pw&KA|{9z zl4`ioFe92-a=aK+10(PH0xx2X{$r~UrRVMY-$$8=48f+5MN{SoYCRQ=2+;czNLeH_ z8BB!#um0jOm_63hIt6`L-??t$WS&+$PhGlG4Z3#f*4KlZmTn1h5Nq7dtGsHaadkPb#O3>u|@>?ah>Fdo|bq8>3JlT05+$6P}y5wgl z@i^9fH2v}6Gv5FES3~-Qm3awSgaxPFF)#Q&xj&w-sQ2Nd8Pgd%*adY|(Zi}=Y_e67 z%@gJ=*YpZe5&v^J0*TNdkee{U*F3ajm;Y*c2B73xzXBjF)kmJP59#;qU8*{OvfcZx zxWvJwwEFqVV4u~09vv*03p~5w%~RO@?_1ROk0&k56d4YVF0t^LM=v+rqudixuY!g} zZdIhBY82A0=8WscTk68S?bVGI_q(1&iH4ovsUPnzG|!iLUXcsC9wvinqmlJY4d>bJ z4LxWqMgm8@LNZ@a4$yBvH^(3%rtn+sW*{3$o@ux!pLzl0X`Ns`J{A7r_WFo+vi7JD zj7D{NLVkx`WzRhdzQv=eVE~%Uz^T4u{v6S}hKwc+=*8m30HdKYXTOfRUAK1n_l{9= zO0wyp-%AD}(HvaDJECe~3C`dzl9?f%~ z*KnFGny17*W1U_q5_qyafpbFM^k{YX@M_O{qvSjuh+*>dg%cch^$q`R*OdT6K@OFE zm9s^9XwcUCPUIJq#mbYj9L(^qXWa9;$ z4Np~wgVuDI1q>JKJW>4xj%}@p#84p_kH__aS!cSZ4@jq11!0kpZm-(rjuo49TN}HJ z^_6(E4Z_y6kOo|jwLgq%2E9G4S1VOil_sH!Q!f@P&HgXt4FbNI^;q+DXJ=( z^`z+Nuz+afVF5&2?03Zzfy^w7xP&d!@r^}1~JiS_-3Ho zpHtVUXaBA`AGtZo)M3+flUMQ|Bv<}E82 z90uA_c=k4NTkQi*J|iLJvd5i-x7MDx`7_%A4Xq--ZWWkRJL*>aXw-9hq4Q?us4Yxv z)=xYT|Bg=jvq#=PW73x|nRxAG?ONFHLOhzLYSWtHp3hG9SxMfd;q!jEb{ejwU9*i6 z46i$zIk>+x9r(v_@5=vi@1MGL>Q1keN+09Hm-SsCGMDA{k0I11aZ%2%d|oY}MfKyp7#O#ql5S*u4nAP4+Ku zuiFb>sGkw0(S8G|1NbaoYI^qiZRnkBdV-mGom0`mxu9?RR}*~^x5$M=)4o(uR%zCw^Q?WwovDe7i%~>=t)WmU)#j3OarjK z(GZpgN3}OI_CYxo>Swp6O}Cfd-NdC@KJ`DpI20Z^o%g;g*xdpXf9jGnJ-f5rz38Wo zZ=oV#X@*#Ho{Z@Q)k)*rLh9?Av|!>+X3HTVuRUS?nvZ(G!_0VfY5-;ldtCq?O208I z!3NYNT5F)5l>t9!i>*FDWkHCgO^uUoPVan^L>3L6JS~ork;0_@gV)Ejzra8c;H5?c z(*0i*tg25#l0(pH(Gzp#)IV1^si6=#B{|^_m1uH3GOwHkli`y~U&#A9&a-gx!78x* zY<^zz45^9pqcW{Kd$?N~)X5h!FPx`r4mZ66s<6(nqWQe}D5e+s8YNPqfE3ew#2r>) zeUtfA5PHJ~fh?(XbYi5~=S3@H-yth@u3gcG9A_#+3)Yu+_KhaPpV(o}{ae(5RU)!O zO+TD*fGg{8@yM-xk)u76!;7_1Itpn;84T28loEE=-_OuXa=(=k+ZfD>Zn)Z2Y)9@) za)m0e4bah_5-9OL>};pTKF0Szf415;`)FsX)=lJ3$XV>=?e}!IXGTlbUwL zU0Gn$@z&$wPOaJ0FuKgw7Z|3$|OC#ZV(_-eBCMaZWgV5E5;M{c*2+;B|fM{u^H*RZwvt-H) z(mpuV8!B*g57?%7_`}jMThUb9bpj9l>f-vT({>NM@w}LMTZBly6?VF|>!Hw9Dt)5; z`Tjj&uj~9JS3woe-h`o?@-C2s!l);(*VNu)AKqzmJ_+e7#d024?4y?yN%_B1JliF? zL62Fuy^)~m{}u<;vl-R*!K#b|cJGe&C2?cppH3lg-sXr+o)v1U*ZG@RR`o&+^Jpvv z-JT`w>RpD5L!~<+Y7qzKM;RW6`E%Gbezq=Y%1LFjYbL+Gr{DjB3>Y7jt5Ywey?(pAuXCHUdX zYsh0Y)pH6Gz~KgTzXr2AH8YmxZN0kVsfoBEkvo3ep#>sK{Y2K~a?!u_5VUBqD%V_EHQ zo2o5a-Z%435RFELeVKm)reM8$;4w3zBF%f)=S^ok@&a%cO^vIE#v&W_R!^ z9EXF0F$z5-5m?Xz*rWGZ9DyGd4g#I*0NP=)x+H@_IJ}4C9K=*uOW|k$+3;vAD|VT& z$7Jav2d)mBO_ygZ0cbf)2p)=kA>dAA6SNlUmRF1SS59`?QB?Z&thkVy{Q>xV*czFJ zK)_H&M%N?k1%UkM=u7Ln3SD?m#!AY$OJ~1U6(?Y&m{&%?zIq?`H3#HiLf~^%&3 z$0p5KJ##BJZWh-q`+XtCd<3++i0!$XDk`zd^e((-axt##KZU48T|lnPc;4_Dt9zRt zVFD1qt-0VeYzd7^Q?C^yboo464Ml73V3iKRifHkyn5jRj=L7iixDzDB#CVRaAAPue z1YJoz2iF+6BgHpCT`~vvA6+MKi2SJ1$WhET^oFb>Chh1?`)tfDrz#Ssh2?#0|NiCx z9XUUN4lilfR5V6gTCa)ccvQc*sUPcAHRSP}^_T=3ueZ~>H>s#%@V#zMhX#hez407M zLNo(;7=Cc-lhU;JYFrr(|ul7*4JTuKWTf)@x`7nFZw~^fW+4CAgN7Pe;k?_ ziC;^+5kZ{iH(%)Tg~buFA%vTb5l6lzf!lPv_Snr$!6XvKCQi^hRs}5qui9KeDjM&u z$%;uoLN?y@!-l0W*PmjJ1KZ>p2=;!oL@(lbX8eoMyYFkn0vO?6m9a9EQQE?70CpXC zVss4MSW-3})qgG=4MBVfmyePindmXO4N^aU*qLgpG8K#mF~R4)_6ITX{xE6jFGm(q z%lga~(=iO%@Y)h&*!8LsR*%j5@ics+I%854@?PqmI0qFPdTN?3-Me&m*m!AZ<=*la zSEEv`4f#)qIS~KOX@s~cAG)24X69>}Lp^Q+amyjCQ6{vHKmg7Y$C08klw*H#A>=Y} zmpR;Z@7Z0FbRhbVLq@pZO4mthomFg!=YgzwwJhHy={K@4%p~OwoYF8n5aBe*TsL?g+`8XLNJqFt!-xHE~j(rvdtX;=l@|RG0=A= z7T;Awu#3(xiOvs7V3pX$ri76XOP=oTd`DJ}2Rfe4m2NPdA1LU+O3l39zrI)uA2$|E z;?9Z#OwE@D_?(DDSu_b-ZY4Y;H)!aX1_ zlU0S}7#;bg*JmZ}RT1W&RWiBw#u{o=Y%DDGb2todOgx?j-y@b4VlVDhttI%qKRQ7= z$%swbkbCCA+g%q<)3{j)x4d#1MH`Aqei(|Re>940_WeL7*-y%DMnHG?sXc79!HgV-GzA2!nwQcG84J8acw8_6 z))+-AEOEhA4=8*OJ3e8Couu1;3mzgJMtJV7*xg)>59ocPkBnmsVOwwmNYO@;TAF~X zbzEfXqSv*4l#fx>$=EGuhbE{7|5*) zTJa5%lGdxsKYrWWu($XWRwjqN`v_U?c7fk-jgrS@K>zy9aj}%ou%EKX@gh$|HKr5= zJap1`b0rm%P3CiI( zWrQ_ZOfI{2@%bJvD$w^4f25zylvSvn2Ev*qz5R^{34J7VxXxGh-VDp(*FOTdpPXN) zFRIr>q(4yG9_@A?w!roa(lW9CbzB2z?O^W2b-*%!`lP|IxAOzgR*dPrV74uD(?n8S zeDM76JJ1zaCkbSDR>=b)=sji%dI=md&fDcNk@Yxjtb$*K5*>yWyrsBe5$t_=7PsXu z58Ux}12CQ<`MsIqaSpPMqupFyJcDeUc7kFV7v~;l^Q;Ih}MJXpNbk?y+b;3GDh* z>JslrZ}H~II;e2b8ds(ZN=S$G=0Jm99L|1R-rp8O$f&O?M+)Z%rC52V8IET3)i`0Y z93=!XRoN)f9(D3YA#vbN$eAxnPL2Hm>hm5JY39m{T@h`T>`4>U2;9cR>*madIhr-7 zZZiZc(DO^?VLOuM zqKh^*Q&+8u^am1mSy4}P%MZA?-1>BN{@fw{jpudqUZ6p}J`tmlE2AW4*=L+gc3u5R z+4QprsHT2u46>o0sivdK#rOASxwS5mYxfhZyoj`UJAN`k`Fe;Qrh28zK+WIQD3PMe zpsj6(C1b255jb3* z^H-Psq~J%s?}6;;cGrqujK*H}wlI`|s4UX!`hcu4FaXXEo@ujx!U^fFG-(Do#p+J7 z)IFg5RNbun)I-_-HBh%WkVeQ%+KMls__brhyF)7SUQ^o?q4C=%t4H{mm*R4$spcY) znDBVc%arp^YhjbyleDOf%HaDQ(tBK%c!rx3;et0wur5yf z^w?i7f|f74n$6p5{5~<_G7T&vf`9EBE%NS7+`v7=041Kn4B0)qrO5K_?r@v$b*krn zBXddyu|~zgROgy|Ld!q01esy30w(-Q($@+pV~@_)0?1>fP)v@@lP1MXyM%b%0X8x3 z7N2>eESJVN=^#ef9&6NRlomdg{X9x-&(%C${Q@gDkQv03Ph(=m0h>T6P3mR;IGd)a$R)c=KeZ*?XY zBOscVh(}@j7mP&~>+S{)x=CLB@f^ip!-Tmzx}Hmw>%cGXiNBgJZ-1ru#_ak$rO#BV zHg;6Hl}uTy?EKxQ59oOVR1>M}%VFliDrryWx@-5#BcR;F)JLl~uD7mNAv(uoJhTyO z!fkMRKJQbU-Ni(2kgmjUSPyEd=*KEHmcwRMdiFa%4w+}peZ1C+Wwv02%8iWI#|$hY0#R z)xX|n4?Dr!xSdMk{cG;CX^&Fp^=(-21MeGCUg>UZqnHwQ9pxlnobtkM{jVvE&v#7? z`tA|5wWZ*u@5I`pVV%10bQdU_)e?}7`qE|n@jDbU3OOZsG#0?8A(y1`6(_@3>?m|= z#$~I(k6=+g0#7q5XKRdOp)!aw84FS}gG%Om+v(lq`~4M7-SXT>Fz~)=Oe6|ZR(GV$ zN={NgJez;xedEewGd}*q*2XmCHnHSD@{E6CTwkVT1o89m%;xT*{Up(Ldw@@jJz;+a zf-*q9PJl_(L_Q+i0mM0^e;wha9_OCg?|7gIOn5@{pVVA$NC< z(yjdWN9V>bM5TYVP%0DiG?f@Ny+b1Fc515vL?Y*#I=1ePBPzWIl9q#+pC}A~giVM4 z9m1$-^JTu~m>Tv7IWHpWUxewl^rQJ4C6UWU9Lm*teO}hxEWu_oIO;o#4^O>stLE(D zOD+g|tS&{?Km)PLACT?zcc=Kr--}wl-0RO;|K$-%_M|4fg!Qj+&?oZE zd3s3spe70W0wA%xN+L4q7r=KYRy+(YNk%t{>om3c(c3o zs&6}W9dkA20p2_?dt0?1cn#Zn$#(-KU0obzZ))vu5e`Sb?20F!KaUeC7J9PUsrkXU zIcwr{gUjGeYD)F{IE80iQVho>+%~+fc6VZ>G>>^LLVfZLI<~KFoJ|O`?;lOjzuz3= z(3W6_7N0!SFVZdBh6PN4rjV6172BK`XuiLFr(8kyrFn!i7G62E-9zPep%KMofX!Dj z6h~}{c#*wI9MygkQINY2vEcRY{Ym9o=`S?_oKNo#V=kt}uZ7)>-VyJKMd-5HHhKNN zV#s~3Kik99?=wx%l?(Xrng4xgkOKvULdv9|=hc&8z1@Lnll=vLAPDZkLx#&j6m+c; zr(3Gn*S#5cuYVyVeg0IJursIv)Uawl+v|~6ctQ7)9S^iK{c#9F*NuSTUyoevtAYvv z{nHtFZ(lK+ebLG#Q0;2?Dl0|75a0iPBa59~2$Y0}10{d!V9@WPrb6AZdR!se1hUL1hV=GXGHGR?7yZD|C?C&PMAEEs0LNs~7+z2kEMQ1NFxj6Z9rgzeIxviWsS zN;73Bk$fI*I8)aotLC{RNYD9(_)Isn+}S(2GwnN_&h@5z?g&>ZhuZ`(=H5rJX6CBu zi`>ef5KXfQ!HhhMY|ya9_r}%*C+w1be(AZg2tPeTBY)P6?m_xwW>4#Oxf{4(XUjgQ zB?G9!d-3a!S>W6ChYe;Ktcj{5|F#Yb>CN!{5TB<}y(MC0TIMCF;JY}p*ihqo ze{KIz-vS}1OKlethz^?WIJU~U@;i5Ya?oAFiH4$5L&%r^@zkDxDthOy2x)5xyMyWB z*X7NlP4Li});p=NkLv7YE`>;S(o};goEpfjD`m3-m$qy~NG150M6|FBFB3&m{v^?V zD$M9(lARJFZ7vZab>c*j)b-=b){PY@ZE}R#BRG%N0`WW&2fW*)-dm0pCQemjH)l#FA%lzi zbP@cA)il{je2i-YfeWvaQ-f4|*knN`yKN9VfhTRRSw9$Me55?v!$o%V^~z<6y-GwP zwAmL+d}7voz+{Cg1C;GnKV4>7@pB$Z~g|G8&qxUZ;I9oOwy-PXdv`b;Hrq z`bhqY?N?Ec>`zFD2NGBPyuVZm8M$!hmXS8Z2A z&%uyWTj~7*&#MH@$s{y##&n`^uD>4BRn^&`%DJRqQr>Sd>5SVF2GmX!OQ2H0p?=+N z#qgBJ`eP|EXL_gYhxsTFBZqx@FWlhfGNX=~hzMEBOb(}v2g*`DOYJe9a-N@6OL~Ct zqpU%g_cL0zqcB=Wab)h9++J@0XW&P!j|*gOoP5gHmw!VZ0Ym^sc28PCx1ktac`nqW zyg4ftH!ad@T0fmRLcc3EY*Y|O@dPGVEmJ>I)To|NK1l^2yCOMBFHg`aHyidu_Y9|P z%9oqf`~;6<8(IB(@gnvde!7NeW8 z{Fc}cenW=w`IkS{v&K5jGiuZCmo#d<{@ZSD$ph^|5)t@z1JlGQIri)ncMW@+i&=7& z{r2&$IV`Y48KJoz8i$4rL!I_gEa7#X*&H)WK}|9NBsOK zd!f|wNmYb&v~NRP2dCOvOo`)HWEv6YT+CrNXWw=TK;9~pzD*jb64a@2KfS*>R^&JR zb|#uxUBBH^ctL;=va~T-4!g0?j)3#2+Bw;-?FBZ5==CcZ#2?^JoK# zD7j#9RKt}uu0j$|)a9Hc2pl1f&WQv>E+|9hVllA3?s(h#9sKm>%DZE(kqiz%oH-z( z!+OO9KyNj5)gPx;1H*eDoR%&N(-+1!CiihsqJ0$j@*VV@^$opm>`%P0c`85lDPuhI zJRW=uTBDWkT>(37m-VYJ(Nz%=b5w*b(oK}dZBjvmh|fo%JjF;T2#k%^Pt&Dk zW`LWpqq8jH)ldGwCkY@bfRFao1CM7vF+g%7=INjdIr$sFI!c^7$2C$%_5~~=$TT5jv}%)P zE=3?|M}l>L7i3OAlZ)BQYma>?=~4DsB4jy}_BzGR0aZ*Xx%#$HU0T9*g+#96xE_sYodvLD#32@gXEpjg0eY#pa7`tvMx_{TAKeBBxoq8DshvIg#~Mc(j&p});xTk zGrY+J54e^=EKZuPCQytzZ2|DCct>QJS2bPM2f%*VJflN=z6!m4z0NnO$II^Yei< zpx@2eKeade@p{I6xb_IS+VD{#pci*pG%a

R8XXV_B@s_4FUAJ!8jo=RYV;^b`PliLB4BBQVf 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 UuO7U8hb{u=7s4t0V>5T^-vStEcK`qY literal 0 HcmV?d00001 diff --git a/ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/bslFullLogo.png b/ISDC2022_Workshops/Resources/Images/UsersGuide/Contact/bslFullLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..18e6f2a82368d0cac5a4858fa160790843367598 GIT binary patch literal 28927 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 literal 0 HcmV?d00001 diff --git a/ISDC2022_Workshops/Resources/Images/icon.svg b/ISDC2022_Workshops/Resources/Images/icon.svg new file mode 100644 index 0000000..e87a48c --- /dev/null +++ b/ISDC2022_Workshops/Resources/Images/icon.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/ISDC2022_Workshops/UsersGuide/Contact.mo b/ISDC2022_Workshops/UsersGuide/Contact.mo new file mode 100644 index 0000000..11fdb41 --- /dev/null +++ b/ISDC2022_Workshops/UsersGuide/Contact.mo @@ -0,0 +1,57 @@ +within ISDC2022_Workshops.UsersGuide; + +final class Contact "Contact Information" + annotation(Documentation(info = " +

This information is part of the ISDC 2022 Workshops package.

+
+
+
+
+

This page contains the contact information for the package's main author.

+

Main Author

+

\"bslFullLogo.png\"

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Name +Guido Wolf Reichert
Address 

+

+Schauenburgerstr. 116 +
+24118 Kiel  +
+Germany 

+
Phone+49 431 90898902
Fax+49 431 90898903
E-Mailgwr@bsl-support.de
Webhttps://www.bsl-support.de
+
+
+
+
+"), Diagram(coordinateSystem(extent = {{-150, -90}, {150, 90}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5})), Icon(coordinateSystem(preserveAspectRatio = false, extent = {{-100, -100}, {100, 100}}, initialScale = 0.1, grid = {10, 10}), graphics = {Rectangle(visible = true, lineColor = {56, 56, 56}, fillColor = {230, 230, 230}, fillPattern = FillPattern.Solid, extent = {{-100, -72}, {100, 70}}), Polygon(visible = true, lineColor = {56, 56, 56}, fillColor = {230, 230, 230}, fillPattern = FillPattern.Solid, points = {{-100, -72}, {100, -72}, {0, 20}, {-100, -72}}), Polygon(visible = true, lineColor = {64, 64, 64}, fillColor = {244, 244, 244}, fillPattern = FillPattern.Solid, points = {{-100, 70}, {100, 70}, {0, -20}, {-100, 70}})})); +end Contact; diff --git a/ISDC2022_Workshops/UsersGuide/Licence.mo b/ISDC2022_Workshops/UsersGuide/Licence.mo new file mode 100644 index 0000000..1552161 --- /dev/null +++ b/ISDC2022_Workshops/UsersGuide/Licence.mo @@ -0,0 +1,10 @@ +within ISDC2022_Workshops.UsersGuide; + +final class Licence "European Union Public Licence v. 1.2 (EUPL-1.2)" + extends BusinessSimulation.Icons.Info; + annotation(Diagram(coordinateSystem(extent = {{-100, -100}, {100, 100}}, preserveAspectRatio = true, initialScale = 0.1, grid = {10, 10}), graphics = {Text(visible = true, extent = {{-44.9, -12}, {44.9, 12}}, textString = "LICENCE → DOCUMENTATION ", fontName = "Lato Black")}), Icon(coordinateSystem(extent = {{-100, -100}, {100, 100}}, preserveAspectRatio = true, initialScale = 0.1, grid = {10, 10})), Documentation(info = " +

EUROPEAN UNION PUBLIC LICENCE v. 1.2

+

 

+
EUPL © the European Union 2007, 2016

This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined
below) which is provided under the terms of this Licence. Any use of the Work,
other than as authorised under this Licence is prohibited (to the extent such
use is covered by a right of the copyright holder of the Work).

The Work is provided under the terms of this Licence when the Licensor (as
defined below) has placed the following notice immediately following the
copyright notice for the Work:

Licensed under the EUPL

or has expressed by any other means his willingness to license under the EUPL.

1. Definitions

In this Licence, the following terms have the following meaning:

- ‘The Licence’: this Licence.

- ‘The Original Work’: the work or software distributed or communicated by the
Licensor under this Licence, available as Source Code and also as Executable
Code as the case may be.

- ‘Derivative Works’: the works or software that could be created by the
Licensee, based upon the Original Work or modifications thereof. This Licence
does not define the extent of modification or dependence on the Original Work
required in order to classify a work as a Derivative Work; this extent is
determined by copyright law applicable in the country mentioned in Article 15.

- ‘The Work’: the Original Work or its Derivative Works.

- ‘The Source Code’: the human-readable form of the Work which is the most
convenient for people to study and modify.

- ‘The Executable Code’: any code which has generally been compiled and which is
meant to be interpreted by a computer as a program.

- ‘The Licensor’: the natural or legal person that distributes or communicates
the Work under the Licence.

- ‘Contributor(s)’: any natural or legal person who modifies the Work under the
Licence, or otherwise contributes to the creation of a Derivative Work.

- ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of
the Work under the terms of the Licence.

- ‘Distribution’ or ‘Communication’: any act of selling, giving, lending,
renting, distributing, communicating, transmitting, or otherwise making
available, online or offline, copies of the Work or providing access to its
essential functionalities at the disposal of any other natural or legal
person.

2. Scope of the rights granted by the Licence

The Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
sublicensable licence to do the following, for the duration of copyright vested
in the Original Work:

- use the Work in any circumstance and for all usage,
- reproduce the Work,
- modify the Work, and make Derivative Works based upon the Work,
- communicate to the public, including the right to make available or display
the Work or copies thereof to the public and perform publicly, as the case may
be, the Work,
- distribute the Work or copies thereof,
- lend and rent the Work or copies thereof,
- sublicense rights in the Work or copies thereof.

Those rights can be exercised on any media, supports and formats, whether now
known or later invented, as far as the applicable law permits so.

In the countries where moral rights apply, the Licensor waives his right to
exercise his moral right to the extent allowed by law in order to make effective
the licence of the economic rights here above listed.

The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to
any patents held by the Licensor, to the extent necessary to make use of the
rights granted on the Work under this Licence.

3. Communication of the Source Code

The Licensor may provide the Work either in its Source Code form, or as
Executable Code. If the Work is provided as Executable Code, the Licensor
provides in addition a machine-readable copy of the Source Code of the Work
along with each copy of the Work that the Licensor distributes or indicates, in
a notice following the copyright notice attached to the Work, a repository where
the Source Code is easily and freely accessible for as long as the Licensor
continues to distribute or communicate the Work.

4. Limitations on copyright

Nothing in this Licence is intended to deprive the Licensee of the benefits from
any exception or limitation to the exclusive rights of the rights owners in the
Work, of the exhaustion of those rights or of other applicable limitations
thereto.

5. Obligations of the Licensee

The grant of the rights mentioned above is subject to some restrictions and
obligations imposed on the Licensee. Those obligations are the following:

Attribution right: The Licensee shall keep intact all copyright, patent or
trademarks notices and all notices that refer to the Licence and to the
disclaimer of warranties. The Licensee must include a copy of such notices and a
copy of the Licence with every copy of the Work he/she distributes or
communicates. The Licensee must cause any Derivative Work to carry prominent
notices stating that the Work has been modified and the date of modification.

Copyleft clause: If the Licensee distributes or communicates copies of the
Original Works or Derivative Works, this Distribution or Communication will be
done under the terms of this Licence or of a later version of this Licence
unless the Original Work is expressly distributed only under this version of the
Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee
(becoming Licensor) cannot offer or impose any additional terms or conditions on
the Work or Derivative Work that alter or restrict the terms of the Licence.

Compatibility clause: If the Licensee Distributes or Communicates Derivative
Works or copies thereof based upon both the Work and another work licensed under
a Compatible Licence, this Distribution or Communication can be done under the
terms of this Compatible Licence. For the sake of this clause, ‘Compatible
Licence’ refers to the licences listed in the appendix attached to this Licence.
Should the Licensee's obligations under the Compatible Licence conflict with
his/her obligations under this Licence, the obligations of the Compatible
Licence shall prevail.

Provision of Source Code: When distributing or communicating copies of the Work,
the Licensee will provide a machine-readable copy of the Source Code or indicate
a repository where this Source will be easily and freely available for as long
as the Licensee continues to distribute or communicate the Work.

Legal Protection: This Licence does not grant permission to use the trade names,
trademarks, service marks, or names of the Licensor, except as required for
reasonable and customary use in describing the origin of the Work and
reproducing the content of the copyright notice.

6. Chain of Authorship

The original Licensor warrants that the copyright in the Original Work granted
hereunder is owned by him/her or licensed to him/her and that he/she has the
power and authority to grant the Licence.

Each Contributor warrants that the copyright in the modifications he/she brings
to the Work are owned by him/her or licensed to him/her and that he/she has the
power and authority to grant the Licence.

Each time You accept the Licence, the original Licensor and subsequent
Contributors grant You a licence to their contributions to the Work, under the
terms of this Licence.

7. Disclaimer of Warranty

The Work is a work in progress, which is continuously improved by numerous
Contributors. It is not a finished work and may therefore contain defects or
‘bugs’ inherent to this type of development.

For the above reason, the Work is provided under the Licence on an ‘as is’ basis
and without warranties of any kind concerning the Work, including without
limitation merchantability, fitness for a particular purpose, absence of defects
or errors, accuracy, non-infringement of intellectual property rights other than
copyright as stated in Article 6 of this Licence.

This disclaimer of warranty is an essential part of the Licence and a condition
for the grant of any rights to the Work.

8. Disclaimer of Liability

Except in the cases of wilful misconduct or damages directly caused to natural
persons, the Licensor will in no event be liable for any direct or indirect,
material or moral, damages of any kind, arising out of the Licence or of the use
of the Work, including without limitation, damages for loss of goodwill, work
stoppage, computer failure or malfunction, loss of data or any commercial
damage, even if the Licensor has been advised of the possibility of such damage.
However, the Licensor will be liable under statutory product liability laws as
far such laws apply to the Work.

9. Additional agreements

While distributing the Work, You may choose to conclude an additional agreement,
defining obligations or services consistent with this Licence. However, if
accepting obligations, You may act only on your own behalf and on your sole
responsibility, not on behalf of the original Licensor or any other Contributor,
and only if You agree to indemnify, defend, and hold each Contributor harmless
for any liability incurred by, or claims asserted against such Contributor by
the fact You have accepted any warranty or additional liability.

10. Acceptance of the Licence

The provisions of this Licence can be accepted by clicking on an icon ‘I agree’
placed under the bottom of a window displaying the text of this Licence or by
affirming consent in any other similar way, in accordance with the rules of
applicable law. Clicking on that icon indicates your clear and irrevocable
acceptance of this Licence and all of its terms and conditions.

Similarly, you irrevocably accept this Licence and all of its terms and
conditions by exercising any rights granted to You by Article 2 of this Licence,
such as the use of the Work, the creation by You of a Derivative Work or the
Distribution or Communication by You of the Work or copies thereof.

11. Information to the public

In case of any Distribution or Communication of the Work by means of electronic
communication by You (for example, by offering to download the Work from a
remote location) the distribution channel or media (for example, a website) must
at least provide to the public the information requested by the applicable law
regarding the Licensor, the Licence and the way it may be accessible, concluded,
stored and reproduced by the Licensee.

12. Termination of the Licence

The Licence and the rights granted hereunder will terminate automatically upon
any breach by the Licensee of the terms of the Licence.

Such a termination will not terminate the licences of any person who has
received the Work from the Licensee under the Licence, provided such persons
remain in full compliance with the Licence.

13. Miscellaneous

Without prejudice of Article 9 above, the Licence represents the complete
agreement between the Parties as to the Work.

If any provision of the Licence is invalid or unenforceable under applicable
law, this will not affect the validity or enforceability of the Licence as a
whole. Such provision will be construed or reformed so as necessary to make it
valid and enforceable.

The European Commission may publish other linguistic versions or new versions of
this Licence or updated versions of the Appendix, so far this is required and
reasonable, without reducing the scope of the rights granted by the Licence. New
versions of the Licence will be published with a unique version number.

All linguistic versions of this Licence, approved by the European Commission,
have identical value. Parties can take advantage of the linguistic version of
their choice.

14. Jurisdiction

Without prejudice to specific agreement between parties,

- any litigation resulting from the interpretation of this License, arising
between the European Union institutions, bodies, offices or agencies, as a
Licensor, and any Licensee, will be subject to the jurisdiction of the Court
of Justice of the European Union, as laid down in article 272 of the Treaty on
the Functioning of the European Union,

- any litigation arising between other parties and resulting from the
interpretation of this License, will be subject to the exclusive jurisdiction
of the competent court where the Licensor resides or conducts its primary
business.

15. Applicable Law

Without prejudice to specific agreement between parties,

- this Licence shall be governed by the law of the European Union Member State
where the Licensor has his seat, resides or has his registered office,

- this licence shall be governed by Belgian law if the Licensor has no seat,
residence or registered office inside a European Union Member State.

Appendix

‘Compatible Licences’ according to Article 5 EUPL are:

- GNU General Public License (GPL) v. 2, v. 3
- GNU Affero General Public License (AGPL) v. 3
- Open Software License (OSL) v. 2.1, v. 3.0
- Eclipse Public License (EPL) v. 1.0
- CeCILL v. 2.0, v. 2.1
- Mozilla Public Licence (MPL) v. 2
- GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3
- Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for
works other than software
- European Union Public Licence (EUPL) v. 1.1, v. 1.2
- Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong
Reciprocity (LiLiQ-R+).

The European Commission may update this Appendix to later versions of the above
licences without producing a new version of the EUPL, as long as they provide
the rights granted in Article 2 of this Licence and protect the covered Source
Code from exclusive appropriation.

All other changes or additions to this Appendix require the production of a new
EUPL version.
+")); +end Licence; diff --git a/ISDC2022_Workshops/UsersGuide/package.mo b/ISDC2022_Workshops/UsersGuide/package.mo new file mode 100644 index 0000000..7a3f2ef --- /dev/null +++ b/ISDC2022_Workshops/UsersGuide/package.mo @@ -0,0 +1,12 @@ +within ISDC2022_Workshops; + +package UsersGuide "User's guide to the support material for the ISDC 2022 paper on hierarchical modeling" + extends BusinessSimulation.Icons.Info; + annotation(Documentation(info = " +

This information is part of the ISDC2022 Workshops package.

+

This package contains the license (aka licence) and contact information.

+
+
+

Copyright © 2022 Guido Wolf Reichert
Licensed under the
EUPL-1.2 or later

+"), Diagram(coordinateSystem(extent = {{-148.5, -105}, {148.5, 105}}, preserveAspectRatio = true, initialScale = 0.1, grid = {5, 5}))); +end UsersGuide; diff --git a/ISDC2022_Workshops/UsersGuide/package.order b/ISDC2022_Workshops/UsersGuide/package.order new file mode 100644 index 0000000..9a49b31 --- /dev/null +++ b/ISDC2022_Workshops/UsersGuide/package.order @@ -0,0 +1,2 @@ +Licence +Contact diff --git a/ISDC2022_Workshops/package.mo b/ISDC2022_Workshops/package.mo new file mode 100644 index 0000000..0f104c4 --- /dev/null +++ b/ISDC2022_Workshops/package.mo @@ -0,0 +1,20 @@ +package ISDC2022_Workshops "Support material for workshops #231 and #232 at the International System Dynamics Conference 2022 in Frankfurt, Germany" + extends BusinessSimulation.Icons.Package; + annotation(Documentation(info = " +

This information is part of the ISDC 2022 Workshops package.

+

This package contains material for workshops #231 and #232 at the 40th International System Dynamics Conference (ISDC 2022) in Frankfurt, Germany.

+
+
+

Corresponding Author

+

+ +\"ContactInformation.png\" +

+
+
+

Copyright © 2022 Guido Wolf Reichert
Licensed unter the European Union Public Licence (EUPL), Version 1.2 or later (the \"License\")

+

You may not use this work except in compliance with the License. You may obtain a copy of the License at:
https://eur-lex.europa.eu/eli/dec_impl/2017/863/oj (the English text for EUPL-1.2 is included in the UsersGuide)

+

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. See the License for the specific language governing permissions and limitations under the License.

+

Modelica© is a registered trademark of the Modelica Association.

+"), Icon(coordinateSystem(extent = {{-100, -100}, {100, 100}}, preserveAspectRatio = true, initialScale = 0.1, grid = {10, 10}), graphics = {Text(visible = true, origin = {0, 20}, textColor = {255, 255, 255}, extent = {{-87.106, -30}, {87.106, 30}}, textString = "ISDC", fontName = "Lato Black", textStyle = {TextStyle.Bold}), Text(visible = true, origin = {0, -40}, textColor = {255, 255, 255}, extent = {{-87.106, -15}, {87.106, 15}}, textString = "2022", fontName = "Lato Black", textStyle = {TextStyle.Bold})})); +end ISDC2022_Workshops; diff --git a/ISDC2022_Workshops/package.order b/ISDC2022_Workshops/package.order new file mode 100644 index 0000000..4a17756 --- /dev/null +++ b/ISDC2022_Workshops/package.order @@ -0,0 +1,2 @@ +UsersGuide +Examples diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..4153cd3 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,287 @@ + EUROPEAN UNION PUBLIC LICENCE v. 1.2 + EUPL © the European Union 2007, 2016 + +This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined +below) which is provided under the terms of this Licence. Any use of the Work, +other than as authorised under this Licence is prohibited (to the extent such +use is covered by a right of the copyright holder of the Work). + +The Work is provided under the terms of this Licence when the Licensor (as +defined below) has placed the following notice immediately following the +copyright notice for the Work: + + Licensed under the EUPL + +or has expressed by any other means his willingness to license under the EUPL. + +1. Definitions + +In this Licence, the following terms have the following meaning: + +- ‘The Licence’: this Licence. + +- ‘The Original Work’: the work or software distributed or communicated by the + Licensor under this Licence, available as Source Code and also as Executable + Code as the case may be. + +- ‘Derivative Works’: the works or software that could be created by the + Licensee, based upon the Original Work or modifications thereof. This Licence + does not define the extent of modification or dependence on the Original Work + required in order to classify a work as a Derivative Work; this extent is + determined by copyright law applicable in the country mentioned in Article 15. + +- ‘The Work’: the Original Work or its Derivative Works. + +- ‘The Source Code’: the human-readable form of the Work which is the most + convenient for people to study and modify. + +- ‘The Executable Code’: any code which has generally been compiled and which is + meant to be interpreted by a computer as a program. + +- ‘The Licensor’: the natural or legal person that distributes or communicates + the Work under the Licence. + +- ‘Contributor(s)’: any natural or legal person who modifies the Work under the + Licence, or otherwise contributes to the creation of a Derivative Work. + +- ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of + the Work under the terms of the Licence. + +- ‘Distribution’ or ‘Communication’: any act of selling, giving, lending, + renting, distributing, communicating, transmitting, or otherwise making + available, online or offline, copies of the Work or providing access to its + essential functionalities at the disposal of any other natural or legal + person. + +2. Scope of the rights granted by the Licence + +The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +sublicensable licence to do the following, for the duration of copyright vested +in the Original Work: + +- use the Work in any circumstance and for all usage, +- reproduce the Work, +- modify the Work, and make Derivative Works based upon the Work, +- communicate to the public, including the right to make available or display + the Work or copies thereof to the public and perform publicly, as the case may + be, the Work, +- distribute the Work or copies thereof, +- lend and rent the Work or copies thereof, +- sublicense rights in the Work or copies thereof. + +Those rights can be exercised on any media, supports and formats, whether now +known or later invented, as far as the applicable law permits so. + +In the countries where moral rights apply, the Licensor waives his right to +exercise his moral right to the extent allowed by law in order to make effective +the licence of the economic rights here above listed. + +The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to +any patents held by the Licensor, to the extent necessary to make use of the +rights granted on the Work under this Licence. + +3. Communication of the Source Code + +The Licensor may provide the Work either in its Source Code form, or as +Executable Code. If the Work is provided as Executable Code, the Licensor +provides in addition a machine-readable copy of the Source Code of the Work +along with each copy of the Work that the Licensor distributes or indicates, in +a notice following the copyright notice attached to the Work, a repository where +the Source Code is easily and freely accessible for as long as the Licensor +continues to distribute or communicate the Work. + +4. Limitations on copyright + +Nothing in this Licence is intended to deprive the Licensee of the benefits from +any exception or limitation to the exclusive rights of the rights owners in the +Work, of the exhaustion of those rights or of other applicable limitations +thereto. + +5. Obligations of the Licensee + +The grant of the rights mentioned above is subject to some restrictions and +obligations imposed on the Licensee. Those obligations are the following: + +Attribution right: The Licensee shall keep intact all copyright, patent or +trademarks notices and all notices that refer to the Licence and to the +disclaimer of warranties. The Licensee must include a copy of such notices and a +copy of the Licence with every copy of the Work he/she distributes or +communicates. The Licensee must cause any Derivative Work to carry prominent +notices stating that the Work has been modified and the date of modification. + +Copyleft clause: If the Licensee distributes or communicates copies of the +Original Works or Derivative Works, this Distribution or Communication will be +done under the terms of this Licence or of a later version of this Licence +unless the Original Work is expressly distributed only under this version of the +Licence — for example by communicating ‘EUPL v. 1.2 only’. The Licensee +(becoming Licensor) cannot offer or impose any additional terms or conditions on +the Work or Derivative Work that alter or restrict the terms of the Licence. + +Compatibility clause: If the Licensee Distributes or Communicates Derivative +Works or copies thereof based upon both the Work and another work licensed under +a Compatible Licence, this Distribution or Communication can be done under the +terms of this Compatible Licence. For the sake of this clause, ‘Compatible +Licence’ refers to the licences listed in the appendix attached to this Licence. +Should the Licensee's obligations under the Compatible Licence conflict with +his/her obligations under this Licence, the obligations of the Compatible +Licence shall prevail. + +Provision of Source Code: When distributing or communicating copies of the Work, +the Licensee will provide a machine-readable copy of the Source Code or indicate +a repository where this Source will be easily and freely available for as long +as the Licensee continues to distribute or communicate the Work. + +Legal Protection: This Licence does not grant permission to use the trade names, +trademarks, service marks, or names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the copyright notice. + +6. Chain of Authorship + +The original Licensor warrants that the copyright in the Original Work granted +hereunder is owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each Contributor warrants that the copyright in the modifications he/she brings +to the Work are owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each time You accept the Licence, the original Licensor and subsequent +Contributors grant You a licence to their contributions to the Work, under the +terms of this Licence. + +7. Disclaimer of Warranty + +The Work is a work in progress, which is continuously improved by numerous +Contributors. It is not a finished work and may therefore contain defects or +‘bugs’ inherent to this type of development. + +For the above reason, the Work is provided under the Licence on an ‘as is’ basis +and without warranties of any kind concerning the Work, including without +limitation merchantability, fitness for a particular purpose, absence of defects +or errors, accuracy, non-infringement of intellectual property rights other than +copyright as stated in Article 6 of this Licence. + +This disclaimer of warranty is an essential part of the Licence and a condition +for the grant of any rights to the Work. + +8. Disclaimer of Liability + +Except in the cases of wilful misconduct or damages directly caused to natural +persons, the Licensor will in no event be liable for any direct or indirect, +material or moral, damages of any kind, arising out of the Licence or of the use +of the Work, including without limitation, damages for loss of goodwill, work +stoppage, computer failure or malfunction, loss of data or any commercial +damage, even if the Licensor has been advised of the possibility of such damage. +However, the Licensor will be liable under statutory product liability laws as +far such laws apply to the Work. + +9. Additional agreements + +While distributing the Work, You may choose to conclude an additional agreement, +defining obligations or services consistent with this Licence. However, if +accepting obligations, You may act only on your own behalf and on your sole +responsibility, not on behalf of the original Licensor or any other Contributor, +and only if You agree to indemnify, defend, and hold each Contributor harmless +for any liability incurred by, or claims asserted against such Contributor by +the fact You have accepted any warranty or additional liability. + +10. Acceptance of the Licence + +The provisions of this Licence can be accepted by clicking on an icon ‘I agree’ +placed under the bottom of a window displaying the text of this Licence or by +affirming consent in any other similar way, in accordance with the rules of +applicable law. Clicking on that icon indicates your clear and irrevocable +acceptance of this Licence and all of its terms and conditions. + +Similarly, you irrevocably accept this Licence and all of its terms and +conditions by exercising any rights granted to You by Article 2 of this Licence, +such as the use of the Work, the creation by You of a Derivative Work or the +Distribution or Communication by You of the Work or copies thereof. + +11. Information to the public + +In case of any Distribution or Communication of the Work by means of electronic +communication by You (for example, by offering to download the Work from a +remote location) the distribution channel or media (for example, a website) must +at least provide to the public the information requested by the applicable law +regarding the Licensor, the Licence and the way it may be accessible, concluded, +stored and reproduced by the Licensee. + +12. Termination of the Licence + +The Licence and the rights granted hereunder will terminate automatically upon +any breach by the Licensee of the terms of the Licence. + +Such a termination will not terminate the licences of any person who has +received the Work from the Licensee under the Licence, provided such persons +remain in full compliance with the Licence. + +13. Miscellaneous + +Without prejudice of Article 9 above, the Licence represents the complete +agreement between the Parties as to the Work. + +If any provision of the Licence is invalid or unenforceable under applicable +law, this will not affect the validity or enforceability of the Licence as a +whole. Such provision will be construed or reformed so as necessary to make it +valid and enforceable. + +The European Commission may publish other linguistic versions or new versions of +this Licence or updated versions of the Appendix, so far this is required and +reasonable, without reducing the scope of the rights granted by the Licence. New +versions of the Licence will be published with a unique version number. + +All linguistic versions of this Licence, approved by the European Commission, +have identical value. Parties can take advantage of the linguistic version of +their choice. + +14. Jurisdiction + +Without prejudice to specific agreement between parties, + +- any litigation resulting from the interpretation of this License, arising + between the European Union institutions, bodies, offices or agencies, as a + Licensor, and any Licensee, will be subject to the jurisdiction of the Court + of Justice of the European Union, as laid down in article 272 of the Treaty on + the Functioning of the European Union, + +- any litigation arising between other parties and resulting from the + interpretation of this License, will be subject to the exclusive jurisdiction + of the competent court where the Licensor resides or conducts its primary + business. + +15. Applicable Law + +Without prejudice to specific agreement between parties, + +- this Licence shall be governed by the law of the European Union Member State + where the Licensor has his seat, resides or has his registered office, + +- this licence shall be governed by Belgian law if the Licensor has no seat, + residence or registered office inside a European Union Member State. + +Appendix + +‘Compatible Licences’ according to Article 5 EUPL are: + +- GNU General Public License (GPL) v. 2, v. 3 +- GNU Affero General Public License (AGPL) v. 3 +- Open Software License (OSL) v. 2.1, v. 3.0 +- Eclipse Public License (EPL) v. 1.0 +- CeCILL v. 2.0, v. 2.1 +- Mozilla Public Licence (MPL) v. 2 +- GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3 +- Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for + works other than software +- European Union Public Licence (EUPL) v. 1.1, v. 1.2 +- Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong + Reciprocity (LiLiQ-R+). + +The European Commission may update this Appendix to later versions of the above +licences without producing a new version of the EUPL, as long as they provide +the rights granted in Article 2 of this Licence and protect the covered Source +Code from exclusive appropriation. + +All other changes or additions to this Appendix require the production of a new +EUPL version. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d7652a4 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +

+ +# ISDC 2022 Workshops +Support material for workshops __#231__ (2022-07-22T08:30+02:00) and __#232__ (2022-07-22T10:30+02:00) at the International System Dynamics Conference 2022 in Frankfurt, Germany. + +## License +Copyright © 2022 Guido Wolf Reichert +Licensed under the European Union Public Licence (EUPL), Version 1.2 or later (the "License") + +You may not use this work except in compliance with the License. You may obtain a copy of the License at:
+[https://eur-lex.europa.eu/eli/dec_impl/2017/863/oj](https://eur-lex.europa.eu/eli/dec_impl/2017/863/oj) + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. See the License for the specific language governing permissions and limitations under the License. + + +__Modelica©__ is a registered trademark of the Modelica Association.
+__Wolfram System Modeler™__ is a trademark of Wolfram Research, Inc.
+__Wolfram Mathematica and Mathematica™__ are registered trademarks of Wolfram Research, Inc. + +## Contribution +You may report bugs and other issues or simply make suggestions for future enhancements by using the Issues button. + +## Corresponding Author +

ContactInformation.png \ No newline at end of file